1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-26 18:50:30 +03:00

in 62.cnfs, lines in /etc/exports can have hte exports quoted,

so strip off any initial " on the exports line

(This used to be ctdb commit dce2244e8ac6617c335cfcd721c3795071b9f2b2)
This commit is contained in:
Ronnie Sahlberg 2010-05-24 09:51:52 +10:00
parent 6578a97bd9
commit 03b112cb33

View File

@ -7,8 +7,9 @@ loadconfig
STATEDIR=$CTDB_BASE/state/gpfs
# filesystems needed by nfs
NFS_FSS=`cat /etc/exports | egrep -v "^#" | sed -e "s/[ \t]*[^ \t]*$//"`
NFS_FSS=`cat /etc/exports | egrep -v "^#" | sed -e "s/[ \t]*[^ \t]*$//" -e "s/\"//g"`