From 7ad66678a7abca725ba922db8540dc9b96f22adb Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 28 Aug 2021 11:54:53 +0200 Subject: Allowing to specify 'ALL' in dehydrated hooks preseeding. Signed-off-by: Daniel Baumann --- debian/open-infrastructure-dehydrated-tools.postinst | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'debian/open-infrastructure-dehydrated-tools.postinst') diff --git a/debian/open-infrastructure-dehydrated-tools.postinst b/debian/open-infrastructure-dehydrated-tools.postinst index 116223f..fdf39dc 100755 --- a/debian/open-infrastructure-dehydrated-tools.postinst +++ b/debian/open-infrastructure-dehydrated-tools.postinst @@ -116,9 +116,14 @@ case "${1}" in HOOKS="$(echo ${HOOKS} | sed -e 's|,| |g')" + if echo "${HOOKS}" | grep -qs "ALL" + then + HOOKS="$(cd /usr/share/dehydrated/hooks && find -maxdepth 1 -not -type d -printf '%P\n' | sort)" + fi + for HOOK in ${HOOKS} do - if [ ! -e "/etc/dehydrated/hook.d/${HOOK}" ] + if [ ! -e "/etc/dehydrated/hook.d/${HOOK}" ] && [ -e "/usr/share/dehydrated/hooks/${HOOK}" ] then ln -sf "/usr/share/dehydrated/hooks/${HOOK}" "/etc/dehydrated/hook.d/${HOOK}" fi -- cgit v1.2.3