diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/vyatta-first-login-passwd.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-first-login-passwd.sh b/scripts/vyatta-first-login-passwd.sh index 3c7a0995..1db6e7ca 100755 --- a/scripts/vyatta-first-login-passwd.sh +++ b/scripts/vyatta-first-login-passwd.sh @@ -13,7 +13,7 @@ if [ -e /opt/vyatta/etc/.nofirstpasswd ]; then fi # don't run on livecd installer will do the check -if grep -q -e '^unionfs.*/filesystem.squashfs' /proc/mounts; then +if egrep -q -e '^(union|overlay)fs.*/filesystem\.squashfs' /proc/mounts; then exit 0 fi |