diff options
author | Bill Nottingham <notting@redhat.com> | 2007-10-26 17:50:12 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2007-10-26 17:50:12 +0000 |
commit | f503ac37caaf29cf114f1931408c2dcc2a1bc31b (patch) | |
tree | 138d77a5f1e8a232565df2d19f51c9383f2791a5 /liveinst/liveinst.sh | |
parent | 484a617ad31b9c140c777bfcf5ffecb7c53ad01b (diff) | |
download | anaconda-f503ac37caaf29cf114f1931408c2dcc2a1bc31b.tar.gz anaconda-f503ac37caaf29cf114f1931408c2dcc2a1bc31b.tar.xz anaconda-f503ac37caaf29cf114f1931408c2dcc2a1bc31b.zip |
* liveinst/liveinst.sh: Use the right path for the lock file (#354571)
Diffstat (limited to 'liveinst/liveinst.sh')
-rw-r--r-- | liveinst/liveinst.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/liveinst/liveinst.sh b/liveinst/liveinst.sh index 609654138..2f732715d 100644 --- a/liveinst/liveinst.sh +++ b/liveinst/liveinst.sh @@ -37,7 +37,7 @@ if [ -x /usr/sbin/setenforce -a -e /selinux/enforce ]; then /usr/sbin/setenforce 0 fi -if [ -x /usr/bin/hal-lock -a -e /var/run/subsys/haldaemon ]; then +if [ -x /usr/bin/hal-lock -a -e /var/lock/subsys/haldaemon ]; then /usr/bin/hal-lock --interface org.freedesktop.Hal.Device.Storage --exclusive --run "$ANACONDA" else $ANACONDA |