diff options
author | William Hubbs <williamh@gentoo.org> | 2010-11-26 14:54:30 -0600 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2010-11-26 14:54:30 -0600 |
commit | 82b265016aadb8827b19319561f5c4cbd2807ff5 (patch) | |
tree | 2fb58d542b1f5ae6b3ba3cb533d2a69e62b34bdc /init.d/bootmisc.in | |
parent | bdfab242b7fd0bbd82eb0c8b5db197f8ad9a4b7d (diff) |
send error output from chattr command to /dev/null
This is for bug #346659.
Diffstat (limited to 'init.d/bootmisc.in')
-rw-r--r-- | init.d/bootmisc.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init.d/bootmisc.in b/init.d/bootmisc.in index 9a3b1fa1..3cead5e6 100644 --- a/init.d/bootmisc.in +++ b/init.d/bootmisc.in @@ -39,7 +39,7 @@ cleanup_tmp_dir() # each user gets a private directory with immutable # bit set; remove the immutable bit before trying to # remove it. - [ -d /tmp/.private ] && chattr -R -a /tmp/.private + [ -d /tmp/.private ] && chattr -R -a /tmp/.private 2> /dev/null find $startopts ! -name . \ ! -path "./lost+found" \ |