This commit is contained in:
teldra 2021-05-09 22:26:29 +02:00
parent e17d0e93b4
commit a22799add3
2 changed files with 0 additions and 4 deletions

View File

@ -24,13 +24,11 @@ fi
export run="config"
for i in $(find "${step}1" -mindepth 1 -maxdepth 1 -type f | sort -n ); do
echo $i
test -f "${i}" && source "${i}"
done
export run="postconfig"
for i in $(find "${step}2" -mindepth 1 -maxdepth 1 -type f | sort -n ); do
echo $i
test -f "${i}" && source "${i}"
done

View File

@ -28,12 +28,10 @@ done
export run="install"
for i in $(find "${step}3" -mindepth 1 -maxdepth 1 -type f | sort -n ); do
echo $i
test -f "${i}" && source "${i}"
done
export run="post"
for i in $(find "${step}4" -mindepth 1 -maxdepth 1 -type f | sort -n); do
echo $i
test -f "${i}" && source "${i}"
done