diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2019-01-26 11:35:39 +0000 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2019-01-26 13:09:04 +0000 |
commit | 499b3393612fae11dde411b656da92d3fbead90e (patch) | |
tree | f2d8fb288714eb99eae79a260e362ca2492fae6d | |
parent | c250a912fbea001a3f47fbd4463e482c830ad421 (diff) | |
download | draklive-install-499b3393612fae11dde411b656da92d3fbead90e.tar draklive-install-499b3393612fae11dde411b656da92d3fbead90e.tar.gz draklive-install-499b3393612fae11dde411b656da92d3fbead90e.tar.bz2 draklive-install-499b3393612fae11dde411b656da92d3fbead90e.tar.xz draklive-install-499b3393612fae11dde411b656da92d3fbead90e.zip |
Signal to the dracut shutdown script that the Live medium should be ejected.
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | draklive-install | 2 |
2 files changed, 4 insertions, 0 deletions
@@ -1,3 +1,5 @@ +- signal to the dracut shutdown script that the Live medium should be ejected + 2.19 - remove unused locales and drivers from source if not persistent (this significantly reduces the time taken to install) diff --git a/draklive-install b/draklive-install index 59e39be..7d36666 100755 --- a/draklive-install +++ b/draklive-install @@ -386,6 +386,8 @@ sub finish_installation { my ($fstab) = @_; #- remove the extra authorisation draklive added run_program::rooted($::prefix, 'sed', '-i', '/for draklive-install/d', '/etc/pam.d/polkit-1'); + #- signal to the dracut shutdown script that the Live medium should be ejected + system('touch', '/run/mgalive/installed'); sync_logs(); #- cleanly umount here, it will avoid fs journals to be corrupted after a hackish reboot #- but leave swap space, to avoid out-of-memory error on machines with little memory |