From: Harald Hoyer Date: Wed, 20 Jul 2011 15:24:33 +0000 (+0200) Subject: dracut-logger: create logfile with 0600 permissions X-Git-Tag: 012~71 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e45ffb5d1fddf751f50bc268846d81659120be62;p=thirdparty%2Fdracut.git dracut-logger: create logfile with 0600 permissions --- diff --git a/dracut-logger b/dracut-logger index 3bcce8387..a5a3ee9c4 100755 --- a/dracut-logger +++ b/dracut-logger @@ -106,6 +106,7 @@ __DRACUT_LOGGER__=1 # @warning Function sets global variables @var maxloglvl and @syslogfacility. # See file doc comment for details. dlog_init() { + local __oldumask # Skip initialization if it's already done. [ -n "$maxloglvl" ] && return 0 @@ -118,7 +119,10 @@ dlog_init() { if [ -z "$fileloglvl" ]; then [ -w "$logfile" ] && fileloglvl=4 || fileloglvl=0 elif [ $fileloglvl -gt 0 ]; then + __oldumask=$(umask) + umask 0377 ! [ -e "$logfile" ] && >"$logfile" + umask $__oldumask if [ -w "$logfile" -a -f "$logfile" ]; then # Mark new run in the log file echo >>"$logfile"