5 # Copyright (C) 2015 Christof Schmitt
7 # Example script that can be used with the 'change share command'
8 # config option. This is mainly intended for use in the Samba selftest
9 # suite, please review and adapt it before using elsewhere.
19 NETCONF
="$BINDIR/net --configfile=$CONF conf"
21 $NETCONF setparm
"$SHARENAME" 'path' "$SHAREPATH"
23 if [ $RC -ne 0 ]; then
24 echo Failure during setparm
for path
: rc
=$RC
28 $NETCONF setparm
"$SHARENAME" 'comment' "$COMMENT"
30 if [ $RC -ne 0 ]; then
31 echo Failed during setparm
for comment
: rc
=$RC
35 $NETCONF setparm
"$SHARENAME" 'max connections' "$MAX_CONN"
37 if [ $RC -ne 0 ]; then
38 echo Failure during setparm
for max connections
: rc
=$RC
42 $NETCONF setparm
"$SHARENAME" 'csc policy' "$CSC_POLICY"
44 if [ $RC -ne 0 ]; then
45 echo Failure during setparm
for csc policy
: rc
=$RC