diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2011-10-14 08:57:46 +0200 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2011-10-14 08:57:46 +0200 |
commit | 3756ee3885dddaff09f28e93ad16f663b5b2d178 (patch) | |
tree | 6fc4447f8bc0e1469fe62b137f9fa9308a886837 | |
parent | 678026cc5f3e2f4062977649d6d942eacd8d7883 (diff) | |
download | acritoxinstaller-3756ee3885dddaff09f28e93ad16f663b5b2d178.zip acritoxinstaller-3756ee3885dddaff09f28e93ad16f663b5b2d178.tar.gz |
live-media-path fix
-rw-r--r-- | backend/modules/init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/modules/init b/backend/modules/init index 073698e..01f9de3 100644 --- a/backend/modules/init +++ b/backend/modules/init @@ -5,7 +5,7 @@ function init_installer() [ -f /etc/default/distro ] && . /etc/default/distro export FLL_DISTRO_MODE FLL_DISTRO_NAME FLL_LIVE_USER mkdir -p /live/filesystem - LOOPDEV="$(losetup --all | awk -F: '/\/live\/image\/live/&&/filesystem/{print $1}')" + LOOPDEV="$(losetup --all | awk -F: '/\/live\/image\//&&/filesystem/{print $1}')" if [ -e /live/gfxoverlay.active ]; then mkdir -p /live/filesystem.main gfx="$(cat /live/gfxoverlay.active)" |