diff options
author | Bill Nottingham <notting@redhat.com> | 2001-08-07 06:52:49 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2001-08-07 06:52:49 +0000 |
commit | 2ab3e3874f5e7eaf57d3f6fea8d7abf10b9fcf34 (patch) | |
tree | e33b6fe6152f479d9a83405da681a0918716865f | |
parent | 644a0180b7e35b3286616517ca589c9bd5608c81 (diff) | |
download | initscripts-2ab3e3874f5e7eaf57d3f6fea8d7abf10b9fcf34.tar initscripts-2ab3e3874f5e7eaf57d3f6fea8d7abf10b9fcf34.tar.gz initscripts-2ab3e3874f5e7eaf57d3f6fea8d7abf10b9fcf34.tar.bz2 initscripts-2ab3e3874f5e7eaf57d3f6fea8d7abf10b9fcf34.tar.xz initscripts-2ab3e3874f5e7eaf57d3f6fea8d7abf10b9fcf34.zip |
run kbdconfig when /.unconfigre'd (#43941)
-rwxr-xr-x | rc.d/rc.sysinit | 3 | ||||
-rw-r--r-- | sys-unconfig.8 | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 6006907d..393aa79f 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -582,6 +582,9 @@ if [ -f /.unconfigured ]; then if [ -x /usr/sbin/timeconfig ]; then /usr/sbin/timeconfig fi + if [ -x /usr/sbin/kbdconfig ]; then + /usr/sbin/kbdconfig + fi if [ -x /usr/sbin/authconfig ]; then /usr/sbin/authconfig --nostart fi diff --git a/sys-unconfig.8 b/sys-unconfig.8 index 1db1c85e..4651d634 100644 --- a/sys-unconfig.8 +++ b/sys-unconfig.8 @@ -8,7 +8,7 @@ sys-unconfig \- shell script to reconfigure the system upon next boot in a new enviroment. Upon executing sys-unconfig will halt your system, and run the following configuration programs at boot: passwd (to change the root password), netconfig, timeconfig, -authconfig, and ntsysv. +kbdconfig, authconfig, and ntsysv. .SH FILES .PD 0 @@ -22,6 +22,7 @@ the programs mentioned above. .BR passwd (1), .BR netconfig (8), .BR timeconfig (8), +.BR kbdconfig (8), .BR authconfig (8), .BR ntsysv(8) |