aboutsummaryrefslogtreecommitdiff
path: root/lib/hydra/config
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2018-07-03 10:16:31 -0300
committerSilvio Rhatto <rhatto@riseup.net>2018-07-03 10:16:31 -0300
commitb7311dc95f4fb020580be7be7d5c0e8a278e326b (patch)
treea7e6348340502f2505e4e32ba58e85c1af55ae93 /lib/hydra/config
parentdf332569de1162bd9a4deeb4c2c5271cbfdee6ad (diff)
downloadhydra-b7311dc95f4fb020580be7be7d5c0e8a278e326b.tar.gz
hydra-b7311dc95f4fb020580be7be7d5c0e8a278e326b.tar.bz2
Provision improvements and fixes
Diffstat (limited to 'lib/hydra/config')
-rw-r--r--lib/hydra/config11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/hydra/config b/lib/hydra/config
index 5390159..da49ec7 100644
--- a/lib/hydra/config
+++ b/lib/hydra/config
@@ -83,3 +83,14 @@ function hydra_bootstrap_config {
make config
)
}
+
+# Get a configuration parameter if not previously defined by a sourced file
+function hydra_user_config {
+ local param="$1"
+ local default="$2"
+ shift 2
+
+ if [ -z "`eval echo '$'$param`" ]; then
+ hydra_user_input $param $default $*
+ fi
+}