18 lines
369 B
Plaintext
18 lines
369 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
unset IEP_LOCAL_OVERRIDE
|
||
|
IEP_LOCAL_OVERRIDE=0
|
||
|
|
||
|
unset _fsspec _fstarget _fstype _fsopts _fsreq _fspass
|
||
|
while read -r _fsspec _fstarget _fstype _fsopts _fsreq _fspass ; do
|
||
|
case "${_fstarget}" in
|
||
|
/angie | /angie/* )
|
||
|
IEP_LOCAL_OVERRIDE=1
|
||
|
break
|
||
|
;;
|
||
|
esac
|
||
|
done < /proc/mounts
|
||
|
unset _fsspec _fstarget _fstype _fsopts _fsreq _fspass
|
||
|
|
||
|
export IEP_LOCAL_OVERRIDE
|