diff options
author | Tom Gundersen <teg@jklm.no> | 2011-06-08 01:11:37 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2011-06-08 01:11:37 +0200 |
commit | 663f5e917994b674d4fbe184ff262f94da11256e (patch) | |
tree | 72fafb4d759960bb2b729910b6a84498ceca18ba /rc.multi | |
parent | 3ac781f2f188b4e9c698aba7ede6154a64ffc679 (diff) | |
parent | 32047175759770ac0b37a1fede68a13e2b4d4fdd (diff) |
Merge branch 'snowman'
Conflicts:
rc.multi
rc.single
Trivial conflict, and fixed a bug introduced when I imported the patches in the first place (oops).
Signed-off-by: Tom Gundersen <teg@jklm.no>
Diffstat (limited to 'rc.multi')
-rwxr-xr-x | rc.multi | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -27,9 +27,11 @@ fi run_hook multi_end if [[ -f /run/bootlogd.pid ]]; then - /bin/touch /var/log/boot + touch /var/log/boot kill $(< /run/bootlogd.pid) - /bin/rm -f /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/\^\[(\[151|%)G//g' /var/log/boot fi # vim: set ts=2 sw=2 noet: |