Drop trailing dot char in FAI build log message (for easier c/p), further cosmetic...
authorMichael Prokop <mika@grml.org>
Sat, 12 Sep 2009 00:11:06 +0000 (02:11 +0200)
committerMichael Prokop <mika@grml.org>
Sat, 12 Sep 2009 00:40:31 +0000 (02:40 +0200)
debian/changelog
grml-live

index baf5031..762c09c 100644 (file)
@@ -14,8 +14,9 @@ grml-live (0.9.23) unstable; urgency=low
     Thanks to Ulrich Dangel.
   * Use blocksize of 256 when running mksquashfs-lzma binary.
   * Update documentation regarding recent lzma development.
+  * Some minor cosmetic corrections in grml-live's output.
 
- -- Michael Prokop <mika@grml.org>  Sat, 12 Sep 2009 01:11:29 +0200
+ -- Michael Prokop <mika@grml.org>  Sat, 12 Sep 2009 02:09:55 +0200
 
 grml-live (0.9.22) unstable; urgency=low
 
index 6422888..0a8fb3a 100755 (executable)
--- a/grml-live
+++ b/grml-live
@@ -561,8 +561,8 @@ else
          einfo "Finished execution of stage 'fai dirinstall'"
       fi
 
-      einfo "Find FAI build logs at $(readlink -f /var/log/fai/$HOSTNAME/last)."
-      log   "Find FAI build logs at $(readlink -f /var/log/fai/$HOSTNAME/last)."
+      einfo "Find FAI build logs at $(readlink -f /var/log/fai/$HOSTNAME/last)"
+      log   "Find FAI build logs at $(readlink -f /var/log/fai/$HOSTNAME/last)"
       eend 0
    fi
 fi # BUILD_DIRTY?
@@ -906,8 +906,8 @@ else
    # make sure to drop the -nolzma option if it's not available:
    if echo "$SQUASHFS_OPTIONS" | grep -q -- "-nolzma" ; then
       if ! $SQUASHFS_BINARY --help 2>&1 | grep -q -- '-nolzma' ; then
-         log   "$SQUASHFS_BINARY does NOT support the nolzma option, dropping it and using default mode."
-         ewarn "$SQUASHFS_BINARY does NOT support the nolzma option, dropping it and using default mode."
+         log   "The $SQUASHFS_BINARY binary does NOT support the nolzma option, dropping it and using default mode."
+         ewarn "The $SQUASHFS_BINARY binary does NOT support the nolzma option, dropping it and using default mode."
          SQUASHFS_OPTIONS="$(echo $SQUASHFS_OPTIONS | sed 's/-nolzma//g')"
          eend 0
       fi
@@ -916,8 +916,8 @@ else
    # make sure to drop the -lzma option if it's not available:
    if echo "$SQUASHFS_OPTIONS" | grep -q -- "-lzma" ; then
       if ! $SQUASHFS_BINARY --help 2>&1 | grep -q -- '-lzma' ; then
-         log   "$SQUASHFS_BINARY does NOT support the lzma option, dropping it and using default mode."
-         ewarn "$SQUASHFS_BINARY does NOT support the lzma option, dropping it and using default mode."
+         log   "The $SQUASHFS_BINARY binary does NOT support the lzma option, dropping it and using default mode."
+         ewarn "The $SQUASHFS_BINARY binary does NOT support the lzma option, dropping it and using default mode."
          SQUASHFS_OPTIONS="$(echo $SQUASHFS_OPTIONS | sed 's/-lzma//g')"
          eend 0
       fi