summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Bauer2018-03-20 11:12:37 +0100
committerJonathan Bauer2018-03-20 11:12:37 +0100
commit5dfb940b807d966696f0f7243162ba12d234d93b (patch)
tree6ec3061104b60369e5fb94198e46fa12a1f6c237
parent[openslx_tmp_format] fix missing include of tools.sh (diff)
downloadsystemd-init-5dfb940b807d966696f0f7243162ba12d234d93b.tar.gz
systemd-init-5dfb940b807d966696f0f7243162ba12d234d93b.tar.xz
systemd-init-5dfb940b807d966696f0f7243162ba12d234d93b.zip
[openslx_tmp_format] reduce default timeout to 5sec
-rwxr-xr-xbuilder/modules.d/openslx_tmp_format/scripts/openslx_tmp_format.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/builder/modules.d/openslx_tmp_format/scripts/openslx_tmp_format.sh b/builder/modules.d/openslx_tmp_format/scripts/openslx_tmp_format.sh
index 7ab7435f..bbcde895 100755
--- a/builder/modules.d/openslx_tmp_format/scripts/openslx_tmp_format.sh
+++ b/builder/modules.d/openslx_tmp_format/scripts/openslx_tmp_format.sh
@@ -20,7 +20,7 @@ IFS=","
SLX_TMP_PARTITION_DEVICE=
for identifier in ${SLX_TMP_PARTITION_IDENTIFIER}; do
SLX_TMP_PARTITION_DEVICE="$(tools.find_block_device "${identifier}" '' \
- "${SLX_TMP_PARTITION_IDENTIFIER_TIMEOUT_IN_SECONDS:-10}")"
+ "${SLX_TMP_PARTITION_IDENTIFIER_TIMEOUT_IN_SECONDS:-5}")"
if [ -n "${SLX_TMP_PARTITION_DEVICE}" ]; then
echo "SLX_TMP_PARTITION_DEVICE=${SLX_TMP_PARTITION_DEVICE}" >> /etc/openslx
break