diff options
author | Harald Hoyer <harald@redhat.com> | 2013-08-12 13:08:17 +0200 |
---|---|---|
committer | Harald Hoyer <harald@redhat.com> | 2013-08-12 13:08:17 +0200 |
commit | e8b9702c0a7837c901addbdc964eccfc71e7a3df (patch) | |
tree | 3b6b351880a5e7452aa715079c36e6565f975c16 | |
parent | 109283a8830f7b9c1d4bb6b4852f1bff0d36bf30 (diff) | |
download | dracut-e8b9702c0a7837c901addbdc964eccfc71e7a3df.tar.gz dracut-e8b9702c0a7837c901addbdc964eccfc71e7a3df.tar.bz2 dracut-e8b9702c0a7837c901addbdc964eccfc71e7a3df.zip |
systemd/dracut-initqueue.sh: added missing "then"
-rwxr-xr-x | modules.d/98systemd/dracut-initqueue.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules.d/98systemd/dracut-initqueue.sh b/modules.d/98systemd/dracut-initqueue.sh index 893ebc47..d7ebf2b2 100755 --- a/modules.d/98systemd/dracut-initqueue.sh +++ b/modules.d/98systemd/dracut-initqueue.sh @@ -62,7 +62,7 @@ while :; do fi main_loop=$(($main_loop+1)) - if [ $main_loop -gt $RDRETRY ]; + if [ $main_loop -gt $RDRETRY ]; then if ! [ -d /sysroot/etc/fstab ] || ! [ -e /sysroot/sbin/init ] ; then action_on_fail "Could not boot." && break fi |