diff options
author | tv <tv@nomic.retiolum> | 2013-11-14 10:40:32 +0100 |
---|---|---|
committer | tv <tv@nomic.retiolum> | 2013-11-14 10:40:32 +0100 |
commit | 168f5927f4a7b69b23f7d90e5a2dd36c6fe78a01 (patch) | |
tree | 8107720e7fcf2e43f68ee8e08fae4e419f9c8a01 /ship/src | |
parent | b536f99e6f1790df174879cc82045d71db42a099 (diff) |
ship: move all "bailing out" msgs to die
Diffstat (limited to 'ship/src')
-rwxr-xr-x | ship/src/remaster_arch_iso | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ship/src/remaster_arch_iso b/ship/src/remaster_arch_iso index d089f872..66d5bc05 100755 --- a/ship/src/remaster_arch_iso +++ b/ship/src/remaster_arch_iso @@ -13,7 +13,7 @@ rootdir=$bdir/root outdir=$bdir/out auto_url=euer.krebsco.de/autoinstall info "bdir is at $bdir" -[ ! -e "$isofile" ] && die "$isofile does not exist,bailing out" +[ ! -e "$isofile" ] && die "$isofile does not exist." esudo "$@" @@ -27,7 +27,7 @@ info "mounting isofile ($isofile)" if is_root;then mount -t iso9660 -o loop,ro $isofile $isomnt else - die 'we are not root enough to mount the iso. Bailing Out' + die 'we are not root enough to mount the iso.' fi defer "info 'unmounting $isomnt';umount $isomnt" |