diff options
-rwxr-xr-x | scripts/vyatta-show-version | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-show-version b/scripts/vyatta-show-version index f609930..f8f291a 100755 --- a/scripts/vyatta-show-version +++ b/scripts/vyatta-show-version @@ -154,7 +154,7 @@ my %options = ( print(&echo_file($versionfile)); print(&echo_file($buildfile)); -my $booted = `grep '^unionfs.*/filesystem.squashfs' /proc/mounts`; +my $booted = `grep -e '^unionfs.*/filesystem.squashfs' -e '^aufs.*/filesystem.squashfs' /proc/mounts`; if (defined($booted) && $booted ne "") { $booted="livecd"; } else { |