forked from google/bms-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cleanup-oracle.sh
executable file
·213 lines (181 loc) · 5.7 KB
/
cleanup-oracle.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
#!/bin/bash
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
echo Command used:
echo "$0 $@"
echo
GETOPT_MANDATORY="ora-version:,inventory-file:,yes-i-am-sure"
GETOPT_OPTIONAL="ora-role-separation:,ora-disk-mgmt:,ora-swlib-path:,ora-staging:,ora-asm-disks:,ora-data-mounts:,help"
GETOPT_LONG="${GETOPT_MANDATORY},${GETOPT_OPTIONAL}"
GETOPT_SHORT="yh"
YESIAMSURE=0
VALIDATE=0
INVENTORY_FILE="${INVENTORY_FILE:-./inventory_files/inventory}"
ORA_VERSION="${ORA_VERSION}"
ORA_VERSION_PARAM='^(19\.3\.0\.0\.0|18\.0\.0\.0\.0|12\.2\.0\.1\.0|12\.1\.0\.2\.0|11\.2\.0\.4\.0|ALL)$'
ORA_ROLE_SEPARATION="${ORA_ROLE_SEPARATION:-TRUE}"
ORA_ROLE_SEPARATION_PARAM="^(TRUE|FALSE)$"
ORA_DISK_MGMT="${ORA_DISK_MGMT:-UDEV}"
ORA_DISK_MGMT_PARAM="ASMLIB|UDEV"
ORA_SWLIB_PATH="${ORA_SWLIB_PATH:-/u01/swlib}"
ORA_SWLIB_PATH_PARAM="^/.*"
ORA_STAGING="${ORA_STAGING:-""}"
ORA_STAGING_PARAM="^/.+$"
ORA_ASM_DISKS="${ORA_ASM_DISKS:-asm_disk_config.json}"
ORA_ASM_DISKS_PARAM="^.+\.json$"
ORA_DATA_MOUNTS="${ORA_DATA_MOUNTS:-data_mounts_config.json}"
ORA_DATA_MOUNTS_PARAM="^.+\.json$"
options=$(getopt --longoptions "$GETOPT_LONG" --options "$GETOPT_SHORT" -- "$@")
[ $? -eq 0 ] || {
echo "Invalid options provided: $*"
exit 1
}
eval set -- "$options"
while true; do
case "$1" in
--yes-i-am-sure|-y)
YESIAMSURE=1
;;
--ora-version)
ORA_VERSION="$2"
if [[ ${ORA_VERSION} = "19" ]] ; then ORA_VERSION="19.3.0.0.0"; fi
if [[ ${ORA_VERSION} = "18" ]] ; then ORA_VERSION="18.0.0.0.0"; fi
if [[ ${ORA_VERSION} = "12" ]] ; then ORA_VERSION="12.2.0.1.0"; fi
if [[ ${ORA_VERSION} = "12.2" ]] ; then ORA_VERSION="12.2.0.1.0"; fi
if [[ ${ORA_VERSION} = "12.1" ]] ; then ORA_VERSION="12.1.0.2.0"; fi
if [[ ${ORA_VERSION} = "11" ]] ; then ORA_VERSION="11.2.0.4.0"; fi
shift;
;;
--inventory-file)
INVENTORY_FILE="$2"
shift;
;;
--ora-role-separation)
ORA_ROLE_SEPARATION="$2"
shift;
;;
--ora-swlib-path)
ORA_SWLIB_PATH="$2"
shift;
;;
--ora-staging)
ORA_STAGING="$2"
shift;
;;
--ora-disk-mgmt)
ORA_DISK_MGMT="$2"
shift;
;;
--ora-asm-disks)
ORA_ASM_DISKS="$2"
shift;
;;
--ora-data-mounts)
ORA_DATA_MOUNTS="$2"
shift;
;;
--help|-h)
echo -e "\tUsage: `basename $0` "
echo $GETOPT_MANDATORY|sed 's/,/\n/g'|sed 's/:/ <value>/'|sed 's/\(.\+\)/\t --\1/'
echo $GETOPT_OPTIONAL |sed 's/,/\n/g'|sed 's/:/ <value>/'|sed 's/\(.\+\)/\t [ --\1 ]/'
exit 2
;;
--)
shift
break
;;
esac
shift
done
[[ "$ORA_STAGING" == "" ]] && {
ORA_STAGING=$ORA_SWLIB_PATH
}
shopt -s nocasematch
# Mandatory options
if [ "${ORA_VERSION}" = "" ]; then
echo "Please specify the oracle release with --ora-version"
exit 2
fi
if [[ ! -s ${INVENTORY_FILE} ]]; then
echo "Please specify the inventory file using --inventory-file <file_name>"
exit 2
fi
if [ $YESIAMSURE -eq 0 ]; then
echo "Parameter --yes-i-am-sure needs to be specified for cleanup to run"
exit 2
fi
[[ ! "$ORA_VERSION" =~ $ORA_VERSION_PARAM ]] && {
echo "Incorrect parameter provided for ora-version: $ORA_VERSION"
exit 1
}
[[ ! "$ORA_ROLE_SEPARATION" =~ $ORA_ROLE_SEPARATION_PARAM ]] && {
echo "Incorrect parameter provided for ora-role-separation: $ORA_ROLE_SEPARATION"
exit 1
}
[[ ! "$ORA_SWLIB_PATH" =~ $ORA_SWLIB_PATH_PARAM ]] && {
echo "Incorrect parameter provided for ora-swlib-path: $ORA_SWLIB_PATH"
exit 1
}
[[ ! "$ORA_STAGING" =~ $ORA_STAGING_PARAM ]] && {
echo "Incorrect parameter provided for ora-staging: $ORA_STAGING"
exit 1
}
[[ ! "$ORA_DISK_MGMT" =~ $ORA_DISK_MGMT_PARAM ]] && {
echo "Incorrect parameter provided for ora-disk-mgmt: $ORA_DISK_MGMT"
exit 1
}
[[ ! "$ORA_ASM_DISKS" =~ $ORA_ASM_DISKS_PARAM ]] && {
echo "Incorrect parameter provided for ora-asm-disks: $ORA_ASM_DISKS"
exit 1
}
[[ ! "$ORA_DATA_MOUNTS" =~ $ORA_DATA_MOUNTS_PARAM ]] && {
echo "Incorrect parameter provided for ora-data-mounts: $ORA_DATA_MOUNTS"
exit 1
}
ORA_STAGING=${ORA_STAGING%/}
ORA_SWLIB_PATH=${ORA_SWLIB_PATH%/}
export ORA_ROLE_SEPARATION
export ORA_VERSION
export ORA_DISK_MGMT
export ORA_ASM_DISKS
export ORA_DATA_MOUNTS
export ORA_STAGING
export ORA_SWLIB_PATH
echo -e "Running with parameters from command line or environment variables:\n"
set | egrep '^(ORA_|INVENTORY_)' | grep -v '_PARAM='
echo
ANSIBLE_PARAMS="-i ${INVENTORY_FILE}"
ANSIBLE_EXTRA_PARAMS="${*}"
echo "Ansible params: ${ANSIBLE_EXTRA_PARAMS}"
if [ $VALIDATE -eq 1 ]; then
echo "Exiting because of --validate"
exit;
fi
export ANSIBLE_NOCOWS=1
ANSIBLE_PLAYBOOK="ansible-playbook"
if ! type ansible-playbook > /dev/null 2>&1; then
echo "Ansible executable not found in path"
exit 3
else
echo "Found Ansible: `type ansible-playbook`"
fi
# exit on any error from the following scripts
set -e
for PLAYBOOK in brute-cleanup.yml ; do
ANSIBLE_COMMAND="${ANSIBLE_PLAYBOOK} ${ANSIBLE_PARAMS} ${ANSIBLE_EXTRA_PARAMS} ${PLAYBOOK}"
echo
echo "Running Ansible playbook: ${ANSIBLE_COMMAND}"
eval ${ANSIBLE_COMMAND}
done
exit 0;