diff options
author | Sven Gothel <[email protected]> | 2021-07-02 19:11:05 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2021-07-02 19:11:05 +0200 |
commit | 40cbeb164b01117277cf8c9441312be66b42dc77 (patch) | |
tree | 3ce4f9241cf29216c488850878bbfb245d4982a9 /stage2 | |
parent | 1a4c483da2ab1dc0d429950c394752ed2ac29ef4 (diff) |
stage2: Add 'chvt 1' (stage4: no need for sudo on chvt @ boot)
Diffstat (limited to 'stage2')
-rwxr-xr-x | stage2/01-sys-tweaks/files/rc.local | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/stage2/01-sys-tweaks/files/rc.local b/stage2/01-sys-tweaks/files/rc.local index 7d39ed7..b10e1b3 100755 --- a/stage2/01-sys-tweaks/files/rc.local +++ b/stage2/01-sys-tweaks/files/rc.local @@ -17,4 +17,6 @@ if [ "$_IP" ]; then printf "My IP address is %s\n" "$_IP" fi +/usr/bin/chvt 1 + exit 0 |