forked from pool/glibc
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:
parent
cff896bf5c
commit
6112838f52
@ -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
|
Mon Apr 26 22:09:40 CEST 2010 - pbaudis@suse.cz
|
||||||
|
|
||||||
|
@ -64,7 +64,7 @@ Obsoletes: glibc-32bit
|
|||||||
Provides: rtld(GNU_HASH)
|
Provides: rtld(GNU_HASH)
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 2.11.1
|
Version: 2.11.1
|
||||||
Release: 3
|
Release: 4
|
||||||
Url: http://www.gnu.org/software/libc/libc.html
|
Url: http://www.gnu.org/software/libc/libc.html
|
||||||
PreReq: filesystem
|
PreReq: filesystem
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -1017,7 +1017,7 @@ exit 0
|
|||||||
%config /etc/init.d/nscd
|
%config /etc/init.d/nscd
|
||||||
/usr/sbin/nscd
|
/usr/sbin/nscd
|
||||||
/usr/sbin/rcnscd
|
/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(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(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
|
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/passwd
|
||||||
|
@ -66,6 +66,8 @@ rc_reset
|
|||||||
case "$1" in
|
case "$1" in
|
||||||
start)
|
start)
|
||||||
echo -n "Starting Name Service Cache Daemon"
|
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
|
/sbin/startproc -p $NSCD_PID $NSCD_BIN
|
||||||
rc_status -v
|
rc_status -v
|
||||||
;;
|
;;
|
||||||
|
Loading…
Reference in New Issue
Block a user