diff options
author | Roger Leigh <rleigh@debian.org> | 2009-04-10 14:33:23 +0100 |
---|---|---|
committer | Roger Leigh <rleigh@debian.org> | 2009-05-03 17:35:34 +0100 |
commit | f8b431d73a3621f4b0f07491f00557cc75744aaf (patch) | |
tree | 325fd99f15ddd1805c222194a584b1634d9ed885 | |
parent | 3edb93e2d274138841d54e7ff03407777bfb8be0 (diff) | |
download | schroot-f8b431d73a3621f4b0f07491f00557cc75744aaf.tar.gz |
[setup.d] Remove W: message prefix
To be added by run_parts and logged to stderr
-rwxr-xr-x | etc/setup.d/05lvm | 2 | ||||
-rwxr-xr-x | etc/setup.d/20copyfiles | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/etc/setup.d/05lvm b/etc/setup.d/05lvm index 34a7ac9e..9a7883ec 100755 --- a/etc/setup.d/05lvm +++ b/etc/setup.d/05lvm @@ -65,7 +65,7 @@ if [ "$CHROOT_TYPE" = "lvm-snapshot" ]; then # The block device no longer exists, or was never created, # for example on lvcreate failure. if [ "$AUTH_VERBOSITY" = "verbose" ]; then - echo "W: $CHROOT_LVM_SNAPSHOT_DEVICE does not exist" + echo "$CHROOT_LVM_SNAPSHOT_DEVICE does not exist" fi fi diff --git a/etc/setup.d/20copyfiles b/etc/setup.d/20copyfiles index b52a7ec7..cd7df776 100755 --- a/etc/setup.d/20copyfiles +++ b/etc/setup.d/20copyfiles @@ -61,7 +61,7 @@ copy_file() fi else - echo "W: Not copying nonexistent file: $file" + echo "Not copying nonexistent file: $file" fi } @@ -73,7 +73,7 @@ if [ $1 = "setup-start" ] || [ $1 = "setup-recover" ]; then if echo "$file" | grep -q '^/'; then copy_file "$file" "${CHROOT_PATH}$file" else - echo "W: Not copying file with relative path: $file" + echo "Not copying file with relative path: $file" fi done < "$COPYFILES" else |