diff options
-rw-r--r-- | NEWS | 3 | ||||
-rwxr-xr-x | draklive-install | 4 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,6 @@ +- run scripts from /etc/draklive-install.d/run.d after install if cleanups + are needed in the chrooted tree + 1.25 - really fix installation from a dir which is not / diff --git a/draklive-install b/draklive-install index c6870a1..ab4cfca 100755 --- a/draklive-install +++ b/draklive-install @@ -287,6 +287,10 @@ sub complete_install { system('chroot', $::prefix, 'rpm', '-e', 'draklive-install'); } + foreach (glob('/etc/draklive-install.d/run.d/*')) { + run_program::rooted($::prefix, $_); + } + #- copy sysconfig files for first boot cp_f(glob('/etc/draklive-install.d/sysconfig/*'), $::prefix . '/etc/sysconfig'); |