summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Bauer2021-02-16 15:48:40 +0100
committerJonathan Bauer2021-02-16 15:48:40 +0100
commit1b12e4550f98f1c38fa18d07ea6c3816dc5843ab (patch)
treed72260af4e677cfa25f32106c656cf5b7ec67bc7
parent[slx-ssl] new module for SSL sat support (diff)
downloadsystemd-init-1b12e4550f98f1c38fa18d07ea6c3816dc5843ab.tar.gz
systemd-init-1b12e4550f98f1c38fa18d07ea6c3816dc5843ab.tar.xz
systemd-init-1b12e4550f98f1c38fa18d07ea6c3816dc5843ab.zip
[conf-tgz] use $config_tgz everywhere
-rwxr-xr-xmodules.d/conf-tgz/hooks/unpack-config-tgz.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules.d/conf-tgz/hooks/unpack-config-tgz.sh b/modules.d/conf-tgz/hooks/unpack-config-tgz.sh
index 71b3ca1e..ec31b8f5 100755
--- a/modules.d/conf-tgz/hooks/unpack-config-tgz.sh
+++ b/modules.d/conf-tgz/hooks/unpack-config-tgz.sh
@@ -19,7 +19,7 @@ unpack_config_tgz() {
[ -e "$config_tgz" ] || return 1
local extract_dir="$(mktemp -d)"
tar --extract --preserve-permissions \
- --file="/etc/config.tgz" \
+ --file="$config_tgz" \
--directory="$extract_dir"
if [ "$?" -ne 0 ]; then
warn "Failed to extract '$config_tgz' to '$extract_dir'."
@@ -29,7 +29,7 @@ unpack_config_tgz() {
source "/etc/openslx"
if [ -n "$SLX_LOCAL_CONFIGURATION" ]; then
if [ ! -d "${extract_dir}/openslx-configs/${SLX_LOCAL_CONFIGURATION}" ]; then
- warn "Ignoring missing SLX_LOCAL_CONFIGURATION in '/etc/config.tgz'."
+ warn "Ignoring missing SLX_LOCAL_CONFIGURATION in '$config_tgz'."
else
tarcopy \
"${extract_dir}/openslx-configs/${SLX_LOCAL_CONFIGURATION}" \