aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2012-06-13 03:47:31 +0000
committerTom Gundersen <teg@jklm.no>2012-06-23 14:04:57 +0200
commit32a67cdc01639a2080c93f2a0d71859f196b6c7d (patch)
tree1ff3c54a89053584094703e4b4ad92145517fc0b
parent0a6787be2a197b4f23302e7d0a3db4ff189578ae (diff)
downloadinitscripts-32a67cdc01639a2080c93f2a0d71859f196b6c7d.tar.xz
Remove trailing colon from output
Signed-off-by: Allan McRae <allan@archlinux.org> [tomegun: do the same for startup too] Signed-off-by: Tom Gundersen <teg@jklm.no>
-rwxr-xr-xrc.shutdown2
-rwxr-xr-xrc.sysinit2
2 files changed, 2 insertions, 2 deletions
diff --git a/rc.shutdown b/rc.shutdown
index c708b92..d10b2da 100755
--- a/rc.shutdown
+++ b/rc.shutdown
@@ -55,7 +55,7 @@ run_hook shutdown_postumount
# Kill non-root encrypted partition mappings
if [[ -f /etc/crypttab ]] && type -p cryptsetup >/dev/null; then
- stat_busy "Deactivating encrypted volumes:"
+ stat_busy "Deactivating encrypted volumes"
# Maybe someone has LVM on an encrypted block device
# executing an extra vgchange is errorless
[[ $USELVM = [Yy][Ee][Ss] ]] && vgchange --sysinit -a n &>/dev/null
diff --git a/rc.sysinit b/rc.sysinit
index a0bbaa6..b2ee6c3 100755
--- a/rc.sysinit
+++ b/rc.sysinit
@@ -90,7 +90,7 @@ activate_vgs
# Set up non-root encrypted partition mappings
if [[ -f /etc/crypttab ]] && type -p cryptsetup >/dev/null; then
- stat_busy "Unlocking encrypted volumes:"
+ stat_busy "Unlocking encrypted volumes"
crypto_unlocked=0
read_crypttab do_unlock && stat_done || stat_fail
# Maybe someone has LVM on an encrypted block device