diff --git a/config/redbear-full.toml b/config/redbear-full.toml index d5da843011..3e4675d1f7 100644 --- a/config/redbear-full.toml +++ b/config/redbear-full.toml @@ -477,7 +477,7 @@ requires_weak = [ [service] cmd = "inputd" args = ["-A", "2"] -type = "oneshot" +type = "oneshot_async" """ [[files]] @@ -490,8 +490,8 @@ requires_weak = [ ] [service] -cmd = "getty" -args = ["2"] +cmd = "sh" +args = ["-c", "sleep 0.2; exec getty 2"] type = "oneshot_async" """ diff --git a/config/redbear-mini.toml b/config/redbear-mini.toml index 0c511aacbc..af6a211ff5 100644 --- a/config/redbear-mini.toml +++ b/config/redbear-mini.toml @@ -504,7 +504,7 @@ requires_weak = ["00_base.target"] [service] cmd = "inputd" args = ["-A", "2"] -type = "oneshot" +type = "oneshot_async" """ [[files]] @@ -516,8 +516,8 @@ default_dependencies = false requires_weak = ["29_activate_console.service"] [service] -cmd = "getty" -args = ["2"] +cmd = "sh" +args = ["-c", "sleep 0.2; exec getty 2"] type = "oneshot_async" """