1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

amazon-image.nix: Remove redundant log message

(cherry picked from commit c4b5ed5db74cde94b19d519a8d875e3f7df48a76)
This commit is contained in:
Eelco Dolstra 2017-01-03 17:31:51 +01:00
parent b297af42d2
commit d496f23df0
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE

View file

@ -94,7 +94,6 @@ let cfg = config.ec2; in
elif [ "$fsType" = ext3 ]; then elif [ "$fsType" = ext3 ]; then
mp="/disk$diskNr" mp="/disk$diskNr"
diskNr=$((diskNr + 1)) diskNr=$((diskNr + 1))
echo "mounting $device on $mp..."
if mountFS "$device" "$mp" "" ext3; then if mountFS "$device" "$mp" "" ext3; then
if [ -z "$diskForUnionfs" ]; then diskForUnionfs="$mp"; fi if [ -z "$diskForUnionfs" ]; then diskForUnionfs="$mp"; fi
fi fi