* [Cluster-devel] [PATCH] gfs2-utils scripts: Install gfs2_withdraw_helper into $libexecdir
@ 2018-08-02 10:09 Andrew Price
0 siblings, 0 replies; only message in thread
From: Andrew Price @ 2018-08-02 10:09 UTC (permalink / raw)
To: cluster-devel.redhat.com
This is a more appropriate location as the helper script isn't meant to
be run by users. It also means that various checkers will stop
complaining that there is no man page for this script.
The 82-gfs2-withdraw.rules udev hook is now generated from the .in file
so that $libexecdir can be substituted into it. The path can be set at
configure time.
Signed-off-by: Andrew Price <anprice@redhat.com>
---
gfs2/scripts/82-gfs2-withdraw.rules | 2 --
gfs2/scripts/82-gfs2-withdraw.rules.in | 2 ++
gfs2/scripts/Makefile.am | 11 +++++++++--
3 files changed, 11 insertions(+), 4 deletions(-)
delete mode 100644 gfs2/scripts/82-gfs2-withdraw.rules
create mode 100644 gfs2/scripts/82-gfs2-withdraw.rules.in
diff --git a/gfs2/scripts/82-gfs2-withdraw.rules b/gfs2/scripts/82-gfs2-withdraw.rules
deleted file mode 100644
index 2c9e0e8a..00000000
--- a/gfs2/scripts/82-gfs2-withdraw.rules
+++ /dev/null
@@ -1,2 +0,0 @@
-SUBSYSTEM=="gfs2", ACTION=="offline", RUN+="/bin/sh /usr/sbin/gfs2_withdraw_helper"
-
diff --git a/gfs2/scripts/82-gfs2-withdraw.rules.in b/gfs2/scripts/82-gfs2-withdraw.rules.in
new file mode 100644
index 00000000..00b30ac2
--- /dev/null
+++ b/gfs2/scripts/82-gfs2-withdraw.rules.in
@@ -0,0 +1,2 @@
+SUBSYSTEM=="gfs2", ACTION=="offline", RUN+="/bin/sh @libexecdir@/gfs2_withdraw_helper"
+
diff --git a/gfs2/scripts/Makefile.am b/gfs2/scripts/Makefile.am
index d4bda04c..47c2966d 100644
--- a/gfs2/scripts/Makefile.am
+++ b/gfs2/scripts/Makefile.am
@@ -1,10 +1,17 @@
MAINTAINERCLEANFILES = Makefile.in
+CLEANFILES = 82-gfs2-withdraw.rules
+EXTRA_DIST = 82-gfs2-withdraw.rules.in
dist_sbin_SCRIPTS = \
gfs2_lockcapture \
- gfs2_trace \
+ gfs2_trace
+
+dist_libexec_SCRIPTS = \
gfs2_withdraw_helper
+82-gfs2-withdraw.rules: 82-gfs2-withdraw.rules.in
+ sed -e 's,[@]libexecdir[@],$(libexecdir),g' $< > $@
+
udevrulesdir=@udevdir@/rules.d
-dist_udevrules_DATA = \
+udevrules_DATA = \
82-gfs2-withdraw.rules
--
2.17.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2018-08-02 10:09 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-02 10:09 [Cluster-devel] [PATCH] gfs2-utils scripts: Install gfs2_withdraw_helper into $libexecdir Andrew Price
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).