aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2012-06-29 16:14:58 +0200
committerTom Gundersen <teg@jklm.no>2012-06-29 23:00:34 +0200
commit267d36a1c80a69342d9dda264b4b60f656ea20cf (patch)
tree284f7192c8765d15535ec0098f5f322bd2f17421
parentb2c9096cf0be6d655550ae880da8735ef048fc10 (diff)
downloadinitscripts-267d36a1c80a69342d9dda264b4b60f656ea20cf.tar.xz
Remove sed from bootlog_stop()
bootlogd from our sysvinit package now removes all escape codes directly so this (incomplete) sed call is no longer needed. Signed-off-by: Florian Pritz <bluewind@xinu.at> Signed-off-by: Tom Gundersen <teg@jklm.no>
-rw-r--r--functions2
1 files changed, 0 insertions, 2 deletions
diff --git a/functions b/functions
index 000cd60..16f8d8f 100644
--- a/functions
+++ b/functions
@@ -588,8 +588,6 @@ bootlogd_stop() {
touch /var/log/boot
kill $(< /run/bootlogd.pid)
rm -f /run/bootlogd.pid
- sed -i -r -e 's/\^\[\[[0-9]?;?[0-9]?[0-9]?;?[0-9]?[0-9]?[ms]//g' \
- -e 's/\^\[(\[1?[0-9][0-9]|%)G//g' -e 's/\^\[\[0;1//g' /var/log/boot
}
###############################