forked from pool/sanlock
- fix debug status for add/rem lockspace - add_lockspace error for conflicting lockspace definitions - transient timeout handling in acquire and release - allow more than 8 resources per client - fix spaces in path names OBS-URL: https://build.opensuse.org/package/show/Virtualization/sanlock?expand=0&rev=21
35 lines
1.1 KiB
Diff
35 lines
1.1 KiB
Diff
Index: sanlock-3.1.0/init.d/sanlock.service
|
|
===================================================================
|
|
--- sanlock-3.1.0.orig/init.d/sanlock.service
|
|
+++ sanlock-3.1.0/init.d/sanlock.service
|
|
@@ -6,8 +6,10 @@ Wants=wdmd.service
|
|
[Service]
|
|
Type=forking
|
|
ControlGroup=cpu:/
|
|
-ExecStart=/lib/systemd/systemd-sanlock start
|
|
-ExecStop=/lib/systemd/systemd-sanlock stop
|
|
+EnvironmentFile=-/etc/sysconfig/sanlock
|
|
+ExecStart=/usr/sbin/sanlock daemon $SANLOCKOPTS
|
|
+ExecStop=/bin/kill -TERM $MAINPID
|
|
+ExecReload=/bin/kill -HUP $MAINPID
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
Index: sanlock-3.1.0/init.d/wdmd.service
|
|
===================================================================
|
|
--- sanlock-3.1.0.orig/init.d/wdmd.service
|
|
+++ sanlock-3.1.0/init.d/wdmd.service
|
|
@@ -5,8 +5,10 @@ After=syslog.target
|
|
[Service]
|
|
Type=forking
|
|
ControlGroup=cpu:/
|
|
-ExecStart=/lib/systemd/systemd-wdmd start
|
|
-ExecStop=/lib/systemd/systemd-wdmd stop
|
|
+EnvironmentFile=-/etc/sysconfig/wdmd
|
|
+ExecStart=/usr/sbin/wdmd $WDMDOPTS
|
|
+ExecStop=/bin/kill -TERM $MAINPID
|
|
+ExecReload=/bin/kill -HUP $MAINPID
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|