install-iwd: allow the paths to be omitted

This commit is contained in:
2023-07-11 07:32:54 +00:00
parent f71fd4565b
commit 3f81370879

View File

@@ -8,8 +8,8 @@
# this is because iwd extracts the SSID from the filename, but users might # this is because iwd extracts the SSID from the filename, but users might
# prefer the SSID be kept separate from the filename. # prefer the SSID be kept separate from the filename.
src_dir="$1" src_dir="${1:-/run/secrets/net}"
dest_dir="$2" dest_dir="${2:-/var/lib/iwd}"
stamp="$3" stamp="$3"
for f in $(ls "$src_dir") for f in $(ls "$src_dir")
do do
@@ -22,4 +22,4 @@ do
chmod 600 "$dest_dir/$ssid.psk" chmod 600 "$dest_dir/$ssid.psk"
fi fi
done done
touch "$stamp" [ -n "$stamp" ] && touch "$stamp"