diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2017-02-12 08:42:30 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-02-12 08:42:30 +0100 |
commit | 3cd5af2f103f7adb410ed25f6af2e4adbc422c8a (patch) | |
tree | 933e8f8e049512711dba2d49e719b4977845d78f /scripts | |
parent | d684432f301d99c82871b0f856e57fb9b497c904 (diff) | |
download | imagefish-3cd5af2f103f7adb410ed25f6af2e4adbc422c8a.tar.gz |
fix usage test
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/config-berlin.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/config-berlin.sh b/scripts/config-berlin.sh index 755882b..9d0ae2e 100755 --- a/scripts/config-berlin.sh +++ b/scripts/config-berlin.sh @@ -1,7 +1,7 @@ #!/bin/sh image="$1" passwd="$2" -if test "$image" = "" -o "$passwd" = ""; then +if test "$image" = ""; then echo "usage: $0 <image> <root-password>" exit 1 fi |