not a hashtable
This commit is contained in:
parent
2b32655365
commit
63eda033cc
14
rc.in
14
rc.in
|
@ -28,14 +28,15 @@ rc.tmpfiles() {
|
||||||
|
|
||||||
rc.mount() {
|
rc.mount() {
|
||||||
for fs in "${cfg_mounts[@]}"; do
|
for fs in "${cfg_mounts[@]}"; do
|
||||||
echo "$fs" | while IFS=':' read device fs_type mountpoint mount_options
|
echo "$fs" | while IFS=':' read device fs_type mountpoint mount_options; do
|
||||||
|
|
||||||
[[ "$mount_options" ]] || { mount_options='defaults'; }
|
[[ "$mount_options" ]] || { mount_options='defaults'; }
|
||||||
|
|
||||||
mountpoint -q "$mountpoint" || {
|
mountpoint -q "$mountpoint" || {
|
||||||
[[ -d "$mountpoint" ]] || { mkdir -p "$mountpoint"; }
|
[[ -d "$mountpoint" ]] || { mkdir -p "$mountpoint"; }
|
||||||
mount "$device" -n -t "$fs_type" -o "$mount_options" "$mountpoint"
|
mount "$device" -n -t "$fs_type" -o "$mount_options" "$mountpoint"
|
||||||
}
|
}
|
||||||
|
done
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -160,7 +161,6 @@ rc.timezone() {
|
||||||
}
|
}
|
||||||
|
|
||||||
rc.main() {
|
rc.main() {
|
||||||
declare -A cfg_mounts
|
|
||||||
source "@ETC@/rc.conf"
|
source "@ETC@/rc.conf"
|
||||||
|
|
||||||
# Default XDG_RUNTIME_DIR for all non-system users
|
# Default XDG_RUNTIME_DIR for all non-system users
|
||||||
|
|
Loading…
Reference in New Issue
Block a user