diff options
author | Jeremy Katz <katzj@redhat.com> | 2004-06-21 22:42:06 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2004-06-21 22:42:06 +0000 |
commit | 1b04a982132ff0f374af290d299b69db671f0a23 (patch) | |
tree | 8444f3cae9a0b16dc5b6f8e076bc4ae7e7b3a9a9 | |
parent | 00845b86592135af1407da860d127b27dcdb1500 (diff) | |
download | anaconda-1b04a982132ff0f374af290d299b69db671f0a23.tar.gz anaconda-1b04a982132ff0f374af290d299b69db671f0a23.tar.xz anaconda-1b04a982132ff0f374af290d299b69db671f0a23.zip |
* remove obsolete option from sshd_config for s390*
* add /sbin/{poweroff,halt,shutdown} symlinks (#116414)
-rwxr-xr-x | scripts/mk-images | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/mk-images b/scripts/mk-images index 96d337ba1..073bf7386 100755 --- a/scripts/mk-images +++ b/scripts/mk-images @@ -441,7 +441,6 @@ PrintMotd yes XAuthLocation /sbin/xauth KeepAlive yes SyslogFacility AUTHPRIV -RhostsAuthentication no RSAAuthentication yes PasswordAuthentication yes PermitEmptyPasswords yes @@ -634,6 +633,9 @@ EOF install -s -m 755 $LOADERBINDIR/$LOADERBIN $MBD_DIR/sbin/loader if [ "$BUILDARCH" != "s390" -a "$BUILDARCH" != "s390x" ]; then install -s -m 755 $LOADERBINDIR/init $MBD_DIR/sbin + ln -s ./init $MBD_DIR/sbin/shutdown + ln -s ./init $MBD_DIR/sbin/halt + ln -s ./init $MBD_DIR/sbin/poweroff else install -s -m 755 $LOADERBINDIR/shutdown $MBD_DIR/sbin/shutdown install -m 755 $IMGPATH/usr/lib/anaconda-runtime/loader/linuxrc.s390 $MBD_DIR/sbin/init |