-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathraspiBackup_docker_pre.sh
64 lines (58 loc) · 2.43 KB
/
raspiBackup_docker_pre.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/bin/bash
#######################################################################################################################
#
# Docker plugin for raspiBackup.sh
# called before a backup is started
#
# Function: Stops all running docker-container gracefull.
#
# See http://www.linux-tips-and-tricks.de/raspiBackup for additional information
#
#######################################################################################################################
#
# Copyright (c) 2022 Springjunky (https://github.com/Springjunky)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.#
#
#######################################################################################################################
GIT_DATE="$Date$"
GIT_COMMIT="$Sha1$"
MSG_EXT_DOCKER3="ext_docker_3"
MSG_EN[$MSG_EXT_DOCKER3]="RBK2003I: Stopping Docker-Container: %s "
MSG_DE[$MSG_EXT_DOCKER3]="RBK2003I: Beende Docker-Container: %s"
# gets a list of all running Docker container in one line sperated with blanks
function getRunningContainer () {
if [[ -x "$(which docker)" ]] ; then
local docker_bin=$(which docker)
local count_running_container=$($docker_bin container ls -q | wc -l)
if [[ $count_running_container -gt 0 ]] ; then
echo "$($docker_bin container ls --format '{{.Names}}'|tr '\n' ' ')"
else
echo ""
fi
fi
}
# stops all given docker container
function stopRunningContainer () {
local running_container=$1
if [[ -n "${running_container}" ]] ; then
writeToConsole $MSG_LEVEL_MINIMAL $MSG_EXT_DOCKER3 "$running_container"
local docker_bin=$(which docker)
$docker_bin container stop $running_container 2>&1>/dev/null
fi
}
# ext_dockerContainer_pre is used in raspiBackup_docker_post.sh to start all
# stopped container
ext_dockerContainer_pre="$(getRunningContainer)"
stopRunningContainer "$ext_dockerContainer_pre"