samba.sh fix derp #191
This commit is contained in:
parent
13e4b3ffb4
commit
2fdd564f62
6
samba.sh
6
samba.sh
@ -242,17 +242,17 @@ shift $(( OPTIND - 1 ))
|
|||||||
[[ "${CHARMAP:-""}" ]] && charmap "$CHARMAP"
|
[[ "${CHARMAP:-""}" ]] && charmap "$CHARMAP"
|
||||||
while read i; do
|
while read i; do
|
||||||
global "$i"
|
global "$i"
|
||||||
done <$(env | awk '/^GLOBAL/ {sub (/^[^=]*=/, "", $0); print}')
|
done <(env | awk '/^GLOBAL/ {sub (/^[^=]*=/, "", $0); print}')
|
||||||
[[ "${IMPORT:-""}" ]] && import "$IMPORT"
|
[[ "${IMPORT:-""}" ]] && import "$IMPORT"
|
||||||
[[ "${PERMISSIONS:-""}" ]] && perms
|
[[ "${PERMISSIONS:-""}" ]] && perms
|
||||||
[[ "${RECYCLE:-""}" ]] && recycle
|
[[ "${RECYCLE:-""}" ]] && recycle
|
||||||
while read i; do
|
while read i; do
|
||||||
eval share $(sed 's/^/"/; s/$/"/; s/;/" "/g' <<< $i)
|
eval share $(sed 's/^/"/; s/$/"/; s/;/" "/g' <<< $i)
|
||||||
done <$(env | awk '/^SHARE/ {sub (/^[^=]*=/, "", $0); print}')
|
done <(env | awk '/^SHARE/ {sub (/^[^=]*=/, "", $0); print}')
|
||||||
[[ "${SMB:-""}" ]] && smb
|
[[ "${SMB:-""}" ]] && smb
|
||||||
while read i; do
|
while read i; do
|
||||||
eval user $(sed 's/^/"/; s/$/"/; s/;/" "/g' <<< $i)
|
eval user $(sed 's/^/"/; s/$/"/; s/;/" "/g' <<< $i)
|
||||||
done <$(env | awk '/^USER/ {sub (/^[^=]*=/, "", $0); print}')
|
done <(env | awk '/^USER/ {sub (/^[^=]*=/, "", $0); print}')
|
||||||
[[ "${WORKGROUP:-""}" ]] && workgroup "$WORKGROUP"
|
[[ "${WORKGROUP:-""}" ]] && workgroup "$WORKGROUP"
|
||||||
[[ "${WIDELINKS:-""}" ]] && widelinks
|
[[ "${WIDELINKS:-""}" ]] && widelinks
|
||||||
[[ "${INCLUDE:-""}" ]] && include "$INCLUDE"
|
[[ "${INCLUDE:-""}" ]] && include "$INCLUDE"
|
||||||
|
Loading…
Reference in New Issue
Block a user