-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge ds-container-remove.sh into ds-remove.sh
- Loading branch information
Showing
3 changed files
with
110 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,110 @@ | ||
#!/bin/bash -ex | ||
#!/bin/bash -e | ||
|
||
dsctl slapd-localhost remove --do-it | ||
# https://fy.blackhats.net.au/blog/html/2020/03/28/389ds_in_containers.html | ||
|
||
SCRIPT_PATH=$(readlink -f "$0") | ||
SCRIPT_NAME=$(basename "$SCRIPT_PATH") | ||
SCRIPT_DIR=$(dirname "$SCRIPT_PATH") | ||
|
||
VERBOSE= | ||
DEBUG= | ||
|
||
usage() { | ||
echo "Usage: $SCRIPT_NAME [OPTIONS] <name>" | ||
echo | ||
echo "Options:" | ||
echo " --image=<image> Container image (default: quay.io/389ds/dirsrv)" | ||
echo " -v,--verbose Run in verbose mode." | ||
echo " --debug Run in debug mode." | ||
echo " --help Show help message." | ||
} | ||
|
||
while getopts v-: arg ; do | ||
case $arg in | ||
v) | ||
VERBOSE=true | ||
;; | ||
-) | ||
LONG_OPTARG="${OPTARG#*=}" | ||
|
||
case $OPTARG in | ||
image=?*) | ||
IMAGE="$LONG_OPTARG" | ||
;; | ||
verbose) | ||
VERBOSE=true | ||
;; | ||
debug) | ||
VERBOSE=true | ||
DEBUG=true | ||
;; | ||
help) | ||
usage | ||
exit | ||
;; | ||
'') | ||
break # "--" terminates argument processing | ||
;; | ||
image*) | ||
echo "ERROR: Missing argument for --$OPTARG option" >&2 | ||
exit 1 | ||
;; | ||
*) | ||
echo "ERROR: Illegal option --$OPTARG" >&2 | ||
exit 1 | ||
;; | ||
esac | ||
;; | ||
\?) | ||
exit 1 # getopts already reported the illegal option | ||
;; | ||
esac | ||
done | ||
|
||
NAME=$1 | ||
|
||
if [ "$NAME" == "" ] | ||
then | ||
echo "ERROR: Missing container name" | ||
exit 1 | ||
fi | ||
|
||
if [ "$IMAGE" = "" ] | ||
then | ||
IMAGE=quay.io/389ds/dirsrv | ||
fi | ||
|
||
remove_server() { | ||
echo "Removing DS server" | ||
|
||
docker exec $NAME dsctl slapd-localhost remove --do-it | ||
|
||
echo "Removing DS container" | ||
|
||
docker rm $NAME > /dev/null | ||
|
||
echo "DS server has been removed" | ||
} | ||
|
||
remove_container() { | ||
echo "Stopping DS container" | ||
|
||
docker stop $NAME > /dev/null | ||
|
||
echo "Removing DS container" | ||
|
||
docker rm $NAME > /dev/null | ||
|
||
echo "Removing DS volume" | ||
|
||
docker volume rm $NAME-data > /dev/null | ||
|
||
echo "DS container has been removed" | ||
} | ||
|
||
if [ "$IMAGE" = "pki-runner" ] | ||
then | ||
remove_server | ||
else | ||
remove_container | ||
fi |