default IFS, add tmp

This commit is contained in:
2015-09-01 13:02:18 +03:00
parent 63eda033cc
commit 5dad6a777e
2 changed files with 10 additions and 8 deletions

2
rc.in
View File

@@ -28,7 +28,7 @@ rc.tmpfiles() {
rc.mount() {
for fs in "${cfg_mounts[@]}"; do
echo "$fs" | while IFS=':' read device fs_type mountpoint mount_options; do
echo "$fs" | while read device fs_type mountpoint mount_options; do
[[ "$mount_options" ]] || { mount_options='defaults'; }