Changes of Revision 52
[-] | Changed | icinga-mod_gearman.spec |
x 1
2 3 %files worker 4 %defattr(-,root,root) 5 -%config(noreplace) %{_sysconfdir}/mod_gearman_worker.conf 6 +%dir %{_sysconfdir}/%{pkgname} 7 +%config(noreplace) %{_sysconfdir}/%{pkgname}/mod_gearman_worker.conf 8 %config %{_sysconfdir}/logrotate.d/mod_gearman_worker 9 %{_sysconfdir}/init.d/mod_gearman_worker 10 %{_sbindir}/rcmod_gearman_worker 11
12 13 %files server 14 %defattr(-,root,root) 15 -%config(noreplace) %{_sysconfdir}/mod_gearman_neb.conf 16 +%dir %{_sysconfdir}/%{pkgname} 17 +%config(noreplace) %{_sysconfdir}/%{pkgname}/mod_gearman_neb.conf 18 %dir %{_libdir}/mod_gearman 19 %{_libdir}/mod_gearman/mod_gearman.o 20 %{_bindir}/gearman_top 21 |
||
[+] | Changed | mod_gearman-worker-suse.init ^ |
@@ -39,7 +39,7 @@ # Note: Special treatment of stop for LSB conformance mod_gearman_worker_BIN=/usr/bin/mod_gearman_worker MOD_GM_PIDFILE=/var/run/mod_gearman/mod_gearman_worker.pid -MOD_GM_CONFIG=/etc/mod_gearman_worker.conf +MOD_GM_CONFIG=/etc/mod_gearman/mod_gearman_worker.conf test -x $mod_gearman_worker_BIN || { echo "$mod_gearman_worker_BIN not installed"; if [ "$1" = "stop" ]; then exit 0; else exit 5; fi; } @@ -193,7 +193,7 @@ ## argument to this init script which is required for a reload. ## Note: probe is not (yet) part of LSB (as of 1.9) - test /etc/mod_gearman_worker.conf -nt ${MOD_GM_PIDFILE} && echo reload + test /etc/mod_gearman/mod_gearman_worker.conf -nt ${MOD_GM_PIDFILE} && echo reload ;; *) echo "Usage: $0 {start|stop|status|try-restart|restart|force-reload|reload|probe}" | ||
[+] | Changed | mod_gearman_worker.sysconfig ^ |
@@ -3,7 +3,7 @@ # # This define configuration file for mod_gearman_worker # -MOD_GM_CONFIG=/etc/mod_gearman_worker.conf +MOD_GM_CONFIG=/etc/mod_gearman/mod_gearman_worker.conf ## Type: string ## Default: "/var/run/mod_gearman/mod_gearman_worker.pid" |