Hello community,

here is the log from the commit of package syslogd for openSUSE:Factory checked 
in at 2011-10-24 12:37:57
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/syslogd (Old)
 and      /work/SRC/openSUSE:Factory/.syslogd.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "syslogd", Maintainer is "wer...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:Factory/syslogd/syslogd.changes  2011-09-23 
12:47:17.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.syslogd.new/syslogd.changes     2011-10-24 
14:02:40.000000000 +0200
@@ -1,0 +2,11 @@
+Mon Oct 24 08:29:15 UTC 2011 - wer...@suse.de
+
+- Wrap touch command with correct umask (bnc#725875) 
+
+-------------------------------------------------------------------
+Fri Oct 21 09:15:14 UTC 2011 - wer...@suse.de
+
+- Help the bash by using TMPDIR=/run to avoid trouble with the
+  temporary files used for here-documents (bnc#724610) 
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ syslog-service-generator ++++++
--- /var/tmp/diff_new_pack.W3fWcM/_old  2011-10-24 14:02:42.000000000 +0200
+++ /var/tmp/diff_new_pack.W3fWcM/_new  2011-10-24 14:02:42.000000000 +0200
@@ -18,6 +18,9 @@
 #
 
 umask 0022
+TMPDIR=/run
+
+export TMPDIR
 
 : ${SBINDIR:=/sbin}
 : ${RUN_PATH:=/run/systemd}
@@ -54,6 +57,17 @@
 fi
 
 #
+# Simple helper for correct permissions of the socket
+#
+touch ()
+{
+    local mask=$(umask)
+    umask 0066
+    /bin/touch ${1+"$@"}
+    umask $mask
+}
+
+#
 # Default is no network and start klogd
 #
 network=
@@ -91,7 +105,7 @@
        done < $config
     fi
     /bin/mkdir -p -m 0755 ${socksdir#/var}
-    /bin/touch -m 0600 ${socks#/var}
+    touch ${socks#/var}
     params="$SYSLOG_NG_PARAMS"
     ;;
 rsyslogd)
@@ -129,7 +143,7 @@
        done < $config
     fi
     /bin/mkdir -p -m 0755 ${socksdir#/var}
-    /bin/touch -m 0600 ${socks#/var}
+    touch ${socks#/var}
     compat=${RSYSLOGD_COMPAT_VERSION:-${RSYSLOGD_NATIVE_VERSION}}
     params="-c ${compat:-3} -f $config $RSYSLOGD_PARAMS"
     ;;
@@ -145,7 +159,7 @@
        done < ${config}
     fi
     /bin/mkdir -p -m 0755 ${socksdir#/var}
-    /bin/touch -m 0600 ${socks#/var}
+    touch ${socks#/var}
     params="$SYSLOGD_PARAMS"
 esac
 


-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to