Bug 349571 - SELinux fixes for bootmisc
- delete the contents of the $RC_LIBEXECDIR/console directory but not the directory itself. - direct error output from the chmod call for /tmp to /dev/null.
This commit is contained in:
parent
647df8cfe7
commit
92b6262ac7
@ -25,7 +25,7 @@ cleanup_tmp_dir()
|
|||||||
mkdir -p "$dir" || return $?
|
mkdir -p "$dir" || return $?
|
||||||
fi
|
fi
|
||||||
dir_writeable "$dir" || return 1
|
dir_writeable "$dir" || return 1
|
||||||
chmod a+rwt "$dir"
|
chmod a+rwt "$dir" 2> /dev/null
|
||||||
cd "$dir"
|
cd "$dir"
|
||||||
if yesno $wipe_tmp; then
|
if yesno $wipe_tmp; then
|
||||||
ebegin "Wiping $dir directory"
|
ebegin "Wiping $dir directory"
|
||||||
@ -77,7 +77,7 @@ mkutmp()
|
|||||||
start()
|
start()
|
||||||
{
|
{
|
||||||
# Remove any added console dirs
|
# Remove any added console dirs
|
||||||
rm -rf "$RC_LIBEXECDIR"/console
|
rm -rf "$RC_LIBEXECDIR"/console/*
|
||||||
|
|
||||||
local logw=false runw=false extra=
|
local logw=false runw=false extra=
|
||||||
# Ensure that our basic dirs exist
|
# Ensure that our basic dirs exist
|
||||||
|
Loading…
Reference in New Issue
Block a user