0e17ea22c1
The following commit removes the requirement for patches to be placed in 1000, 2000, or 3000 ID blocks depending on their upstream status. Instead upstream status is documented in the header of the patch with some semi-standard notation as described in template.patch. The patches are re-numbered and defined and applied in the same order. Verified that before and after the patch that the source tree does not change. The patch definition is resorted to match the patch application order.
22 lines
629 B
Diff
22 lines
629 B
Diff
Short description: Provide options to nscd startup.
|
|
Author(s): Fedora glibc team <glibc@lists.fedoraproject.org>
|
|
Origin: PATCH
|
|
Upstream status: not-needed
|
|
|
|
Fedora-specific nscd startup configuration file.
|
|
|
|
diff --git a/nscd/nscd.service b/nscd/nscd.service
|
|
index b7428a3..19ba185 100644
|
|
--- a/nscd/nscd.service
|
|
+++ b/nscd/nscd.service
|
|
@@ -5,7 +5,8 @@ Description=Name Service Cache Daemon
|
|
|
|
[Service]
|
|
Type=forking
|
|
-ExecStart=/usr/sbin/nscd
|
|
+EnvironmentFile=-/etc/sysconfig/nscd
|
|
+ExecStart=/usr/sbin/nscd $NSCD_OPTIONS
|
|
ExecStop=/usr/sbin/nscd --shutdown
|
|
ExecReload=/usr/sbin/nscd -i passwd
|
|
ExecReload=/usr/sbin/nscd -i group
|