summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-12-13 14:00:28 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-12-13 14:04:30 +0000
commitac013f7801d4bc37ace15374d7a797855c46f12f (patch)
tree76c96a7bdd15d92e0221c5cb180dbb2acaa0a428
parentRemoving wrongly transformation of debconf boolean for dehydrated register. (diff)
downloadopen-infrastructure-service-tools-ac013f7801d4bc37ace15374d7a797855c46f12f.tar.xz
open-infrastructure-service-tools-ac013f7801d4bc37ace15374d7a797855c46f12f.zip
Adding dehydrated debconf question to run dehydrated.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rw-r--r--debian/open-infrastructure-dehydrated-tools.config4
-rwxr-xr-xdebian/open-infrastructure-dehydrated-tools.postinst10
-rw-r--r--debian/open-infrastructure-dehydrated-tools.templates7
3 files changed, 21 insertions, 0 deletions
diff --git a/debian/open-infrastructure-dehydrated-tools.config b/debian/open-infrastructure-dehydrated-tools.config
index 2918b46..8ff3177 100644
--- a/debian/open-infrastructure-dehydrated-tools.config
+++ b/debian/open-infrastructure-dehydrated-tools.config
@@ -68,4 +68,8 @@ db_settitle open-infrastructure-dehydrated-tools/title
db_input low open-infrastructure-dehydrated-tools/register "${REGISTER}" || true
db_go
+db_settitle open-infrastructure-dehydrated-tools/title
+db_input low open-infrastructure-dehydrated-tools/run "${RUN}" || true
+db_go
+
db_stop
diff --git a/debian/open-infrastructure-dehydrated-tools.postinst b/debian/open-infrastructure-dehydrated-tools.postinst
index 9376f8c..c571adb 100755
--- a/debian/open-infrastructure-dehydrated-tools.postinst
+++ b/debian/open-infrastructure-dehydrated-tools.postinst
@@ -87,6 +87,9 @@ case "${1}" in
db_get open-infrastructure-dehydrated-tools/register
REGISTER="${RET}" # boolean
+ db_get open-infrastructure-dehydrated-tools/run
+ RUN="${RET}" # boolean
+
db_stop
case "${AUTO_CLEANUP}" in
@@ -306,6 +309,13 @@ EOF
dehydrated --register --accept-terms
;;
esac
+
+ case "${RUN}" in
+ true)
+ dehydrated --cron --keep-going
+ ;;
+ esac
+
;;
abort-upgrade|abort-remove|abort-deconfigure)
diff --git a/debian/open-infrastructure-dehydrated-tools.templates b/debian/open-infrastructure-dehydrated-tools.templates
index ae72683..08c525e 100644
--- a/debian/open-infrastructure-dehydrated-tools.templates
+++ b/debian/open-infrastructure-dehydrated-tools.templates
@@ -92,3 +92,10 @@ Default: false
Description: dehydrated register:
Should a 'dehydrated --register --accept-terms' be executed now to create
an account for this system with your CA.
+
+Template: open-infrastructure-dehydrated-tools/run
+Type: boolean
+Default: false
+Description: dehydrated:
+ Should a 'dehydrated --cron --keep-going' be executed now to renew
+ non-existent/changed/expiring certificates for this system.