diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-11-25 13:06:37 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-11-25 13:06:37 +0000 |
commit | 9412376d0e8bd594586ed36c4e36b9ff77088bf2 (patch) | |
tree | 88ebc3a93b269d5e117522c2c1121391e94e1421 /move | |
parent | 91cc91c1f95484f281f21bbb4243e3ccfa7e3386 (diff) | |
download | drakx-backup-do-not-use-9412376d0e8bd594586ed36c4e36b9ff77088bf2.tar drakx-backup-do-not-use-9412376d0e8bd594586ed36c4e36b9ff77088bf2.tar.gz drakx-backup-do-not-use-9412376d0e8bd594586ed36c4e36b9ff77088bf2.tar.bz2 drakx-backup-do-not-use-9412376d0e8bd594586ed36c4e36b9ff77088bf2.tar.xz drakx-backup-do-not-use-9412376d0e8bd594586ed36c4e36b9ff77088bf2.zip |
in mode 2, also pre fix /etc/rc.d/rc5.d links
Diffstat (limited to 'move')
-rw-r--r-- | move/move.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/move/move.pm b/move/move.pm index c3e32735a..62606e251 100644 --- a/move/move.pm +++ b/move/move.pm @@ -492,7 +492,8 @@ sub install2::startMove { 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::run('/usr/bin/etc-monitorer.pl', uniq map { dirname($_) } (chomp_(`find /etc -type f`), + grep { readlink !~ m|^/| } chomp_(`find /etc -type l`))); run_program::raw({ detach => 1 }, '/usr/bin/dnotify', '-MCRD', '/etc', '-r', '-e', '/usr/bin/etc-monitorer.pl', '{}') or die "dnotify not found!"; } |