aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-04-17 15:23:18 -0400
committerB Stack <bgstack15@gmail.com>2020-04-17 15:23:18 -0400
commitb0c0f6951637439c79fbd8748364db34cc0d2b48 (patch)
treecff4af8ee43663c520df57a5eede9e8e0a53c4b6
parentadd or improve documentation (diff)
downloadlaps-b0c0f6951637439c79fbd8748364db34cc0d2b48.tar.gz
laps-b0c0f6951637439c79fbd8748364db34cc0d2b48.tar.bz2
laps-b0c0f6951637439c79fbd8748364db34cc0d2b48.zip
update paths for current and near-future bgscripts
-rw-r--r--src/usr/share/doc/laps/changes3
-rwxr-xr-xsrc/usr/share/laps/laps.sh6
2 files changed, 7 insertions, 2 deletions
diff --git a/src/usr/share/doc/laps/changes b/src/usr/share/doc/laps/changes
index c7067e3..5860000 100644
--- a/src/usr/share/doc/laps/changes
+++ b/src/usr/share/doc/laps/changes
@@ -13,3 +13,6 @@
* Thu Jul 18 2019 B Stack <bgstack15@gmail.com> - 0.0.5-1
- move library functions out of laps
+
+* Fri Apr 17 2020 Ben Stack <bgstack15@gmail.com> - unreleased
+- add support for libexec/ path
diff --git a/src/usr/share/laps/laps.sh b/src/usr/share/laps/laps.sh
index 1023dc4..d561c55 100755
--- a/src/usr/share/laps/laps.sh
+++ b/src/usr/share/laps/laps.sh
@@ -341,6 +341,7 @@ while read flocation ; do if test -e ${flocation} ; then __thisfver="$( sh ${flo
/usr/share/bgscripts/framework.sh
/usr/share/laps/dependencies/framework.sh
/usr/share/laps/framework.sh
+/usr/libexec/bgscripts/framework.sh
EOFLOCATIONS
test -z "${frameworkscript}" && echo "$0: framework not found. Aborted." 1>&2 && exit 4
@@ -384,6 +385,7 @@ ${LAPS_SHLDAP}
${SHLDAP}
/usr/share/bgscripts/shldap.sh
/usr/lib/bgscripts/shldap.sh
+/usr/libexec/bgscripts/shldap.sh
EOFSENDSH
test "${setvalout}" = "critical-fail" && ferror "${scriptfile}: 4. LAPS_SHLDAP not found. Aborted." && exit 4
LAPS_SHLDAP_MINIMUM=20190717
@@ -442,9 +444,9 @@ test -z "${LAPS_LDAPMODIFY_STATUS_TMPFILE}" && LAPS_LDAPMODIFY_STATUS_TMPFILE="$
test -z "${LAPS_LDAPSEARCH_STATUS_TMPFILE}" && LAPS_LDAPSEARCH_STATUS_TMPFILE="$( TMPDIR="${LAPS_TMPDIR}" mktemp )"
test -z "${LAPS_PASSWORD_STATUS_TMPFILE}" && LAPS_PASSWORD_STATUS_TMPFILE="$( TMPDIR="${LAPS_TMPDIR}" mktemp )"
#test -z "${LAPS_TMPFILE1}" && LAPS_TMPFILE1="$( TMPDIR="${LAPS_TMPDIR}" mktemp )"
-define_if_new LAPS_KINIT_HOST_SCRIPT "/usr/share/bgscripts/work/kinit-host.sh"
+define_if_new LAPS_KINIT_HOST_SCRIPT "/usr/bin/kinit-host"
define_if_new LAPS_KINIT_HOST_SCRIPT_OPTS ""
-define_if_new LAPS_KINIT_HOST_SCRIPT_DEFAULT "/usr/share/bgscripts/work/kinit-host.sh"
+define_if_new LAPS_KINIT_HOST_SCRIPT_DEFAULT "/usr/bin/kinit-host"
define_if_new LAPS_KLIST_BIN "/usr/bin/klist"
define_if_new LAPS_KINIT_BIN "/usr/bin/kinit"
define_if_new LAPS_LDAPSEARCH_BIN "/usr/bin/ldapsearch"
bgstack15