You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
2.1 KiB
58 lines
2.1 KiB
7 years ago
|
diff --git a/lpd/scripts/lp_diag_notify b/lpd/scripts/lp_diag_notify
|
||
|
index 52dc242..f500299 100755
|
||
|
--- a/lpd/scripts/lp_diag_notify
|
||
|
+++ b/lpd/scripts/lp_diag_notify
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-#!/usr/bin/perl -I /etc/ppc64-diag
|
||
|
+#!/usr/bin/perl -I /usr/libexec/ppc64-diag
|
||
|
# @file lp_diag_notify
|
||
|
#
|
||
|
# This script is to be registered with servicelog as a notification tool.
|
||
|
diff --git a/lpd/scripts/lp_diag_setup b/lpd/scripts/lp_diag_setup
|
||
|
index 8dabb75..4b4d0a2 100755
|
||
|
--- a/lpd/scripts/lp_diag_setup
|
||
|
+++ b/lpd/scripts/lp_diag_setup
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-#!/usr/bin/perl -I /etc/ppc64-diag
|
||
|
+#!/usr/bin/perl -I /usr/libexec/ppc64-diag
|
||
|
# @file lp_diag_setup
|
||
|
# @brief Register/unregister Light Path notification tools
|
||
|
# with servicelog
|
||
|
@@ -91,10 +91,10 @@ sub unregister {
|
||
|
}
|
||
|
|
||
|
@notification_tools = (
|
||
|
- ["/etc/ppc64-diag/lp_diag_notify -e",
|
||
|
+ ["/usr/libexec/ppc64-diag/lp_diag_notify -e",
|
||
|
"--match='disposition>=1 and severity>=4 and serviceable=1' ".
|
||
|
"--type=EVENT --method=num_arg"],
|
||
|
- ["/etc/ppc64-diag/lp_diag_notify -r",
|
||
|
+ ["/usr/libexec/ppc64-diag/lp_diag_notify -r",
|
||
|
"--type=REPAIR --method=num_arg"],
|
||
|
);
|
||
|
|
||
|
diff -up ppc64-diag-2.7.4/lpd/Makefile.am.than ppc64-diag-2.7.4/lpd/Makefile.am
|
||
|
--- ppc64-diag-2.7.4/lpd/Makefile.am.than 2017-09-15 19:08:58.247913980 +0200
|
||
|
+++ ppc64-diag-2.7.4/lpd/Makefile.am 2017-09-15 19:10:12.941556817 +0200
|
||
|
@@ -46,16 +46,16 @@ all-local-lpd:
|
||
|
AM_LOCALS += all-local-lpd
|
||
|
|
||
|
install-exec-hook-lpd:
|
||
|
- install -d --mode=755 $(DESTDIR)/etc/ppc64-diag
|
||
|
- install -D --mode=744 $(LPD_SCRIPT) $(DESTDIR)/etc/ppc64-diag/
|
||
|
+ install -d --mode=755 $(DESTDIR)/usr/libexec/ppc64-diag
|
||
|
+ install -D --mode=744 $(LPD_SCRIPT) $(DESTDIR)/usr/libexec/ppc64-diag/
|
||
|
$(LN_S) $(sbindir)/usysident $(DESTDIR)/$(sbindir)/usysattn
|
||
|
$(LN_S) $(sbindir)/usysident $(DESTDIR)/$(sbindir)/usysfault
|
||
|
|
||
|
INSTALL_EXEC_HOOKS += install-exec-hook-lpd
|
||
|
|
||
|
uninstall-hook-lpd:
|
||
|
- rm -f $(DESTDIR)/etc/ppc64-diag/lp_diag_setup
|
||
|
- rm -f $(DESTDIR)/etc/ppc64-diag/lp_diag_notify
|
||
|
+ rm -f $(DESTDIR)/usr/libexec/ppc64-diag/lp_diag_setup
|
||
|
+ rm -f $(DESTDIR)/usr/libexec/ppc64-diag/lp_diag_notify
|
||
|
rm -f $(sbindir)/usysattn
|
||
|
rm -f $(sbindir)/usysfault
|
||
|
|