diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-11-27 10:18:21 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-11-27 10:18:21 +0000 |
commit | 94cbd77e7480b1ecc9f997b672eedd8095403474 (patch) | |
tree | bf04f47b9aae931a59c27dbd2de82d08f0df7a67 /move/make_live | |
parent | fdf406ef8f89d9fd4832e3409e071ae6fafb87c3 (diff) | |
download | drakx-94cbd77e7480b1ecc9f997b672eedd8095403474.tar drakx-94cbd77e7480b1ecc9f997b672eedd8095403474.tar.gz drakx-94cbd77e7480b1ecc9f997b672eedd8095403474.tar.bz2 drakx-94cbd77e7480b1ecc9f997b672eedd8095403474.tar.xz drakx-94cbd77e7480b1ecc9f997b672eedd8095403474.zip |
woops
Diffstat (limited to 'move/make_live')
-rwxr-xr-x | move/make_live | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/move/make_live b/move/make_live index f4435a50a..7f6cd8988 100755 --- a/move/make_live +++ b/move/make_live @@ -132,7 +132,7 @@ unlink "$::prefix/usr/sbin/$_" foreach qw(drakautoinst drakboot drakfloppy drakg #- remove services we start ourselves from chkconfig system substInFile { s|chkconfig:|chkconfig-disabled:|; -} "/etc/rc.d/init.d/$_" foreach qw(xfs dm devfsd syslog); +} "$::prefix/etc/rc.d/init.d/$_" foreach qw(xfs dm devfsd syslog); #- we're not using sysv init, we need to replace these -output("/sbin/$_", "#!/bin/sh\nhalt_reboot"), chmod(0755, "/sbin/$_") foreach qw(halt reboot); +output("$::prefix/sbin/$_", "#!/bin/sh\nhalt_reboot"), chmod(0755, "/sbin/$_") foreach qw(halt reboot); |