Accepting request 39346 from Base:System

Copy from Base:System/glibc based on submit request 39346 from user prusnak

OBS-URL: https://build.opensuse.org/request/show/39346
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/glibc?expand=0&rev=19
This commit is contained in:
OBS User autobuild 2010-05-05 19:21:50 +00:00 committed by Git OBS Bridge
parent 96652d2c3d
commit bab6f932e0
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue May 4 05:47:41 UTC 2010 - aj@suse.de
- Handle /var/run on tmpfs
-------------------------------------------------------------------
Mon Apr 26 22:09:40 CEST 2010 - pbaudis@suse.cz

View File

@ -64,7 +64,7 @@ Obsoletes: glibc-32bit
Provides: rtld(GNU_HASH)
AutoReqProv: on
Version: 2.11.1
Release: 3
Release: 4
Url: http://www.gnu.org/software/libc/libc.html
PreReq: filesystem
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -1017,7 +1017,7 @@ exit 0
%config /etc/init.d/nscd
/usr/sbin/nscd
/usr/sbin/rcnscd
%dir %attr(0755,root,root) /var/run/nscd
%dir %attr(0755,root,root) %ghost /var/run/nscd
%attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/nscd.pid
%attr(0666,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/socket
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/passwd

View File

@ -66,6 +66,8 @@ rc_reset
case "$1" in
start)
echo -n "Starting Name Service Cache Daemon"
# /var/run might be on tmpfs
[ -d /var/run/nscd ] || mkdir /var/run/nscd
/sbin/startproc -p $NSCD_PID $NSCD_BIN
rc_status -v
;;