diff options
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); |