summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLyndon Brown <jnqnfe@gmail.com>2020-05-04 13:10:42 +0100
committerLyndon Brown <jnqnfe@gmail.com>2020-05-04 13:14:57 +0100
commit76459a39cdc6f35485a867fd96c7cce29a2cc6b9 (patch)
tree44a9bf41573fe453484a3a3c7773295f12962803
parent21c697617d8299e19a99df12c70e36b379c91fce (diff)
downloadvyos-live-build-76459a39cdc6f35485a867fd96c7cce29a2cc6b9.tar.gz
vyos-live-build-76459a39cdc6f35485a867fd96c7cce29a2cc6b9.zip
clean: tweak init
`Init_config_data` is more suited to build scripts than here. note that it's not used in `config` either. this deliberately does not pass along arguments to it because `Arguments()` can only handle the basic common options, not the `clean` set. this is somewhat confusing and causes a pointless execution of `getopt`. furthermore the function is expanding slightly further beyond it's original scope, with yet more change coming that's unsuitable for `clean`, so it makes sense to avoid using the function here just for the couple of function calls needed. validation of the config is disabled, as it is not performed currently. it is not clear if it should be enabled or not for `clean`. it may be useful to not validate, if we wish to be able to provide users with an option to be able to delete the config. Gbp-Dch: Ignore
-rwxr-xr-xscripts/build/clean7
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/build/clean b/scripts/build/clean
index aa5727944..9ff67cbab 100755
--- a/scripts/build/clean
+++ b/scripts/build/clean
@@ -26,9 +26,10 @@ DESCRIPTION="Clean up system build directories"
HELP=""
USAGE="${PROGRAM} [--all] [--cache] [--chroot] [--binary] [--purge] [--remove] [--stage] [--source]"
-# Processing arguments and configuration files
-# Note: Deliberately not passing parameters through to Arguments function call here!
-Init_config_data
+# Reading, preparing and validating config
+Read_conffiles $(Common_conffiles)
+Prepare_config
+#Validate_config
# Avoiding cases were users accidentally nuke their config/binary
if [ ! -d config ] && [ "$(basename ${PWD})" = "config" ]