ctdb: Accept the key in hex format for the pstore command
[Samba.git] / source3 / script / smbdeleteshare
blob8cd8d1f4c19f4e304db8595994134e2e77330b78
1 #!/bin/sh
3 # smbdeleteshare
5 # Copyright (C) 2015 Christof Schmitt
7 # Example script that can be used with the 'delete 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.
12 CONF="$1"
13 SHARENAME="$2"
15 NETCONF="$BINDIR/net --configfile=$CONF conf"
16 $NETCONF delshare "$SHARENAME"
17 RC=$?
18 if [[ $RC -ne 0 ]]; then
19 echo Failure during delshare command: rc=$RC
20 exit $RC