21 lines
314 B
Bash
Executable File
21 lines
314 B
Bash
Executable File
#!/bin/sh
|
|
|
|
unset IEP_LOCAL_OVERRIDE
|
|
IEP_LOCAL_OVERRIDE=0
|
|
|
|
unset _fsspec i _extra
|
|
while read -r _fsspec i _extra ; do
|
|
[ -n "$i" ] || continue
|
|
case "$i" in
|
|
/angie | /angie/* )
|
|
IEP_LOCAL_OVERRIDE=1
|
|
break
|
|
;;
|
|
esac
|
|
done <<-EOF
|
|
$(grep -F angie /proc/mounts)
|
|
EOF
|
|
unset _fsspec i _extra
|
|
|
|
export IEP_LOCAL_OVERRIDE
|