summaryrefslogtreecommitdiffstats
path: root/move
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2003-11-21 22:43:18 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2003-11-21 22:43:18 +0000
commitc768768e3734c6e825c343e7b01a95970a13acd6 (patch)
tree74c2d37f24e425e3f714610b45632a8d2e70cdfc /move
parent1c852901b124332c59277c13d315ea89eb59cc46 (diff)
downloaddrakx-backup-do-not-use-c768768e3734c6e825c343e7b01a95970a13acd6.tar
drakx-backup-do-not-use-c768768e3734c6e825c343e7b01a95970a13acd6.tar.gz
drakx-backup-do-not-use-c768768e3734c6e825c343e7b01a95970a13acd6.tar.bz2
drakx-backup-do-not-use-c768768e3734c6e825c343e7b01a95970a13acd6.tar.xz
drakx-backup-do-not-use-c768768e3734c6e825c343e7b01a95970a13acd6.zip
persistent services
Diffstat (limited to 'move')
-rw-r--r--move/data/keyfiles1
-rw-r--r--move/move.pm30
2 files changed, 19 insertions, 12 deletions
diff --git a/move/data/keyfiles b/move/data/keyfiles
index ca3e639c4..3cc76a5f4 100644
--- a/move/data/keyfiles
+++ b/move/data/keyfiles
@@ -19,3 +19,4 @@
/etc/X11/XF86Config-4.old
/etc/X11/XF86Config.old
/etc/X11/X
+/etc/rc.d/rc.local
diff --git a/move/move.pm b/move/move.pm
index ac2142a8e..1516d8798 100644
--- a/move/move.pm
+++ b/move/move.pm
@@ -88,7 +88,7 @@ sub init {
#- ro things
symlinkf_short("/image/etc/$_", "/etc/$_")
foreach qw(alternatives man.config services shells pam.d security inputrc ld.so.conf
- DIR_COLORS bashrc profile rc.d init.d devfsd.conf gtk-2.0 pango fonts modules.devfs
+ DIR_COLORS bashrc profile init.d devfsd.conf gtk-2.0 pango fonts modules.devfs
dynamic hotplug gnome-vfs-2.0 gnome-vfs-mime-magic gtk gconf menu menu-methods nsswitch.conf default login.defs
skel ld.so.cache openoffice xinetd.d xinetd.conf syslog.conf sysctl.conf sysconfig/networking/ifcfg-lo
ifplugd);
@@ -342,6 +342,10 @@ unplug it, remove write protection, and then plug it again.")),
key_installfiles('full');
}
+sub enable_service {
+ run_program::run('/sbin/chkconfig', '--level', 5, $_[0], 'on');
+}
+
sub install2::configMove {
my $o = $::o;
@@ -368,14 +372,14 @@ sub install2::configMove {
require install_steps_interactive;
if (cat_('/proc/mounts') !~ /nfs/) {
install_steps_interactive::configureNetwork($o);
- #- seems that applications have trouble with the loopback interface
- #- after successful network configuration if we don't do that
- run_program::run('/sbin/service', 'network', 'restart');
+ enable_service('network');
}
install_steps_interactive::summaryBefore($o);
modules::load_category('multimedia/sound');
- run_program::raw({ detach => 1 }, 'service', 'sound', 'start');
+ enable_service('sound');
+
+ enable_service('syslog');
$o->{useSupermount} = 1;
fs::set_removable_mntpoints($o->{all_hds});
@@ -472,24 +476,26 @@ sub install2::startMove {
install_TrueFS_in_home($o);
- run_program::run('/sbin/service', 'syslog', 'start');
- run_program::run('killall', 'minilogd'); #- get rid of minilogd
- run_program::run('/sbin/service', 'syslog', 'restart'); #- otherwise minilogd will strike back
-
my $username = $o->{users}[0]{name};
output('/var/run/console.lock', $username);
output("/var/run/console/$username", 1);
run_program::run('pam_console_apply');
+ touch '/var/run/utmp';
+ run_program::run('runlevel_set', '5');
+ member($_, qw(xfs dm devfsd)) or run_program::run($_, 'start') foreach glob('/etc/rc.d/rc5.d/*');
+ run_program::run('killall', 'minilogd');
+ run_program::run('/sbin/service', 'syslog', 'restart'); #- otherwise minilogd will strike back
+
+ #- allow user customisation of startup through /etc/rc.d/rc.local
+ run_program::run('/etc/rc.d/rc.local');
+
if (cat_('/proc/mounts') =~ m|\s/home\s|) {
output '/var/lib/machine_ident', machine_ident();
run_program::run('/usr/bin/etc-monitorer.pl', uniq map { dirname($_) } chomp_(`find /etc -type f`));
run_program::raw({ detach => 1 }, '/usr/bin/dnotify', '-MCRD', '/etc', '-r', '-e', '/usr/bin/etc-monitorer.pl', '{}') or die "dnotify not found!";
}
- #- allow user customisation of startup through /etc/rc.d/rc.local
- run_program::run('/etc/rc.d/rc.local');
-
if (fork()) {
sleep 1;
log::l("DrakX waves bye-bye");