2015-09-27 11:03:31 +00:00
|
|
|
#!/usr/bin/env bash
|
2015-03-03 15:50:59 +00:00
|
|
|
#
|
|
|
|
# ownCloud
|
|
|
|
#
|
|
|
|
# @author Thomas Müller
|
|
|
|
# @copyright 2015 Thomas Müller <deepdiver@owncloud.com>
|
|
|
|
#
|
|
|
|
|
|
|
|
# retrieve current folder to remove the config from the parent folder
|
2015-04-28 09:17:46 +00:00
|
|
|
thisFolder=`echo $0 | sed 's#env/stop-smb-windows\.sh##'`
|
2015-03-03 15:50:59 +00:00
|
|
|
|
|
|
|
if [ -z "$thisFolder" ]; then
|
|
|
|
thisFolder="."
|
|
|
|
fi;
|
|
|
|
|
|
|
|
|
|
|
|
# cleanup
|
|
|
|
rm $thisFolder/config.smb.php
|