| garciadeblas | 93c6131 | 2016-09-28 15:12:48 +0200 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # Copyright 2016 Telefónica Investigación y Desarrollo S.A.U. |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | function usage(){ |
| 17 | echo -e "usage: $0 [OPTIONS]" |
| garciadeblas | a1fc457 | 2017-04-24 19:08:21 +0200 | [diff] [blame] | 18 | echo -e "Install OSM from binaries or source code (by default, from binaries)" |
| garciadeblas | 93c6131 | 2016-09-28 15:12:48 +0200 | [diff] [blame] | 19 | echo -e " OPTIONS" |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 20 | echo -e " --uninstall: uninstall OSM: remove the containers and delete NAT rules" |
| 21 | echo -e " --source: install OSM from source code using the latest stable tag" |
| Mike Marchetti | 425f8ce | 2017-06-15 13:02:16 -0400 | [diff] [blame] | 22 | echo -e " -r <repo>: use specified repository name for osm packages" |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 23 | echo -e " -R <release>: use specified release for osm binaries (deb packages, lxd images, ...)" |
| Mike Marchetti | 425f8ce | 2017-06-15 13:02:16 -0400 | [diff] [blame] | 24 | echo -e " -u <repo base>: use specified repository url for osm packages" |
| 25 | echo -e " -k <repo key>: use specified repository public key url" |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 26 | echo -e " -b <refspec>: install OSM from source code using a specific branch (master, v2.0, ...) or tag" |
| 27 | echo -e " -b master (main dev branch)" |
| 28 | echo -e " -b v2.0 (v2.0 branch)" |
| 29 | echo -e " -b tags/v1.1.0 (a specific tag)" |
| 30 | echo -e " ..." |
| 31 | echo -e " --lxdimages: download lxd images from OSM repository instead of creating them from scratch" |
| 32 | echo -e " -l <lxd_repo>: use specified repository url for lxd images" |
| garciadeblas | fc8f029 | 2018-04-02 16:55:29 +0200 | [diff] [blame] | 33 | echo -e " -p <path>: use specified repository path for lxd images" |
| peusterm | d74dc84 | 2018-01-24 15:32:17 +0100 | [diff] [blame] | 34 | echo -e " --vimemu: additionally fetch, build, and deploy the VIM emulator as a docker container" |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 35 | echo -e " --develop: (deprecated, use '-b master') install OSM from source code using the master branch" |
| 36 | # echo -e " --reconfigure: reconfigure the modules (DO NOT change NAT rules)" |
| 37 | echo -e " --nat: install only NAT rules" |
| 38 | echo -e " --noconfigure: DO NOT install osmclient, DO NOT install NAT rules, DO NOT configure modules" |
| 39 | # echo -e " --update: update to the latest stable release or to the latest commit if using a specific branch" |
| 40 | echo -e " --showopts: print chosen options and exit (only for debugging)" |
| 41 | echo -e " -y: do not prompt for confirmation, assumes yes" |
| 42 | echo -e " -h / --help: print this help" |
| garciadeblas | 93c6131 | 2016-09-28 15:12:48 +0200 | [diff] [blame] | 43 | } |
| 44 | |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 45 | #Uninstall OSM: remove containers |
| 46 | function uninstall(){ |
| garciadeblas | a1fc457 | 2017-04-24 19:08:21 +0200 | [diff] [blame] | 47 | echo -e "\nUninstalling OSM" |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 48 | if [ $RC_CLONE ] || [ -n "$TEST_INSTALLER" ]; then |
| 49 | $OSM_DEVOPS/jenkins/host/clean_container RO |
| 50 | $OSM_DEVOPS/jenkins/host/clean_container VCA |
| prithiv | 4a98a04 | 2017-12-05 23:19:39 +0000 | [diff] [blame^] | 51 | $OSM_DEVOPS/jenkins/host/clean_container MON |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 52 | $OSM_DEVOPS/jenkins/host/clean_container SO |
| 53 | #$OSM_DEVOPS/jenkins/host/clean_container UI |
| 54 | else |
| 55 | lxc stop RO && lxc delete RO |
| 56 | lxc stop VCA && lxc delete VCA |
| prithiv | 4a98a04 | 2017-12-05 23:19:39 +0000 | [diff] [blame^] | 57 | lxc stop MON && lxc delete MON |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 58 | lxc stop SO-ub && lxc delete SO-ub |
| 59 | fi |
| garciadeblas | 54e7eed | 2018-03-19 17:38:04 +0100 | [diff] [blame] | 60 | echo -e "\nDeleting imported lxd images if they exist" |
| 61 | lxc image show osm-ro &>/dev/null && lxc image delete osm-ro |
| 62 | lxc image show osm-vca &>/dev/null && lxc image delete osm-vca |
| 63 | lxc image show osm-soui &>/dev/null && lxc image delete osm-soui |
| garciadeblas | 429b9f8 | 2018-03-20 02:09:44 +0100 | [diff] [blame] | 64 | return 0 |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | #Configure NAT rules, based on the current IP addresses of containers |
| 68 | function nat(){ |
| 69 | echo -e "\nChecking required packages: iptables-persistent" |
| 70 | dpkg -l iptables-persistent &>/dev/null || ! echo -e " Not installed.\nInstalling iptables-persistent requires root privileges" || \ |
| 71 | sudo DEBIAN_FRONTEND=noninteractive apt-get -yq install iptables-persistent |
| 72 | echo -e "\nConfiguring NAT rules" |
| 73 | echo -e " Required root privileges" |
| 74 | sudo $OSM_DEVOPS/installers/nat_osm |
| 75 | } |
| 76 | |
| Mike Marchetti | d8577f5 | 2017-10-19 15:27:48 -0400 | [diff] [blame] | 77 | function FATAL(){ |
| 78 | echo "FATAL error: Cannot install OSM due to \"$1\"" |
| 79 | exit 1 |
| 80 | } |
| 81 | |
| garciadeblas | 2a38273 | 2017-01-12 12:11:14 +0100 | [diff] [blame] | 82 | #Update RO, SO and UI: |
| 83 | function update(){ |
| 84 | echo -e "\nUpdating components" |
| 85 | |
| 86 | echo -e " Updating RO" |
| 87 | CONTAINER="RO" |
| 88 | MDG="RO" |
| 89 | INSTALL_FOLDER="/opt/openmano" |
| 90 | echo -e " Fetching the repo" |
| 91 | lxc exec $CONTAINER -- git -C $INSTALL_FOLDER fetch --all |
| 92 | BRANCH="" |
| 93 | BRANCH=`lxc exec $CONTAINER -- git -C $INSTALL_FOLDER status -sb | head -n1 | sed -n 's/^## \(.*\).*/\1/p'|awk '{print $1}' |sed 's/\(.*\)\.\.\..*/\1/'` |
| Jokin Garay | c17db01 | 2017-03-08 17:45:39 +0100 | [diff] [blame] | 94 | [ -z "$BRANCH" ] && FATAL "Could not find the current branch in use in the '$MDG'" |
| garciadeblas | 2a38273 | 2017-01-12 12:11:14 +0100 | [diff] [blame] | 95 | CURRENT=`lxc exec $CONTAINER -- git -C $INSTALL_FOLDER status |head -n1` |
| 96 | CURRENT_COMMIT_ID=`lxc exec $CONTAINER -- git -C $INSTALL_FOLDER rev-parse HEAD` |
| 97 | echo " FROM: $CURRENT ($CURRENT_COMMIT_ID)" |
| 98 | # COMMIT_ID either was previously set with -b option, or is an empty string |
| 99 | CHECKOUT_ID=$COMMIT_ID |
| 100 | [ -z "$CHECKOUT_ID" ] && [ "$BRANCH" == "HEAD" ] && CHECKOUT_ID="tags/$LATEST_STABLE_DEVOPS" |
| 101 | [ -z "$CHECKOUT_ID" ] && [ "$BRANCH" != "HEAD" ] && CHECKOUT_ID="$BRANCH" |
| 102 | if [[ $CHECKOUT_ID == "tags/"* ]]; then |
| 103 | REMOTE_COMMIT_ID=`lxc exec $CONTAINER -- git -C $INSTALL_FOLDER rev-list -n 1 $CHECKOUT_ID` |
| 104 | else |
| 105 | REMOTE_COMMIT_ID=`lxc exec $CONTAINER -- git -C $INSTALL_FOLDER rev-parse origin/$CHECKOUT_ID` |
| 106 | fi |
| 107 | echo " TO: $CHECKOUT_ID ($REMOTE_COMMIT_ID)" |
| 108 | if [ "$CURRENT_COMMIT_ID" == "$REMOTE_COMMIT_ID" ]; then |
| 109 | echo " Nothing to be done." |
| 110 | else |
| 111 | echo " Update required." |
| garciadeblas | a1fc457 | 2017-04-24 19:08:21 +0200 | [diff] [blame] | 112 | lxc exec $CONTAINER -- service osm-ro stop |
| garciadeblas | 2a38273 | 2017-01-12 12:11:14 +0100 | [diff] [blame] | 113 | lxc exec $CONTAINER -- git -C /opt/openmano stash |
| 114 | lxc exec $CONTAINER -- git -C /opt/openmano pull --rebase |
| 115 | lxc exec $CONTAINER -- git -C /opt/openmano checkout $CHECKOUT_ID |
| 116 | lxc exec $CONTAINER -- git -C /opt/openmano stash pop |
| 117 | lxc exec $CONTAINER -- /opt/openmano/database_utils/migrate_mano_db.sh |
| garciadeblas | a1fc457 | 2017-04-24 19:08:21 +0200 | [diff] [blame] | 118 | lxc exec $CONTAINER -- service osm-ro start |
| garciadeblas | 2a38273 | 2017-01-12 12:11:14 +0100 | [diff] [blame] | 119 | fi |
| 120 | echo |
| 121 | |
| 122 | echo -e " Updating SO and UI" |
| 123 | CONTAINER="SO-ub" |
| 124 | MDG="SO" |
| 125 | INSTALL_FOLDER="" # To be filled in |
| 126 | echo -e " Fetching the repo" |
| 127 | lxc exec $CONTAINER -- git -C $INSTALL_FOLDER fetch --all |
| 128 | BRANCH="" |
| 129 | BRANCH=`lxc exec $CONTAINER -- git -C $INSTALL_FOLDER status -sb | head -n1 | sed -n 's/^## \(.*\).*/\1/p'|awk '{print $1}' |sed 's/\(.*\)\.\.\..*/\1/'` |
| Jokin Garay | c17db01 | 2017-03-08 17:45:39 +0100 | [diff] [blame] | 130 | [ -z "$BRANCH" ] && FATAL "Could not find the current branch in use in the '$MDG'" |
| garciadeblas | 2a38273 | 2017-01-12 12:11:14 +0100 | [diff] [blame] | 131 | CURRENT=`lxc exec $CONTAINER -- git -C $INSTALL_FOLDER status |head -n1` |
| 132 | CURRENT_COMMIT_ID=`lxc exec $CONTAINER -- git -C $INSTALL_FOLDER rev-parse HEAD` |
| 133 | echo " FROM: $CURRENT ($CURRENT_COMMIT_ID)" |
| 134 | # COMMIT_ID either was previously set with -b option, or is an empty string |
| 135 | CHECKOUT_ID=$COMMIT_ID |
| 136 | [ -z "$CHECKOUT_ID" ] && [ "$BRANCH" == "HEAD" ] && CHECKOUT_ID="tags/$LATEST_STABLE_DEVOPS" |
| 137 | [ -z "$CHECKOUT_ID" ] && [ "$BRANCH" != "HEAD" ] && CHECKOUT_ID="$BRANCH" |
| 138 | if [[ $CHECKOUT_ID == "tags/"* ]]; then |
| 139 | REMOTE_COMMIT_ID=`lxc exec $CONTAINER -- git -C $INSTALL_FOLDER rev-list -n 1 $CHECKOUT_ID` |
| 140 | else |
| 141 | REMOTE_COMMIT_ID=`lxc exec $CONTAINER -- git -C $INSTALL_FOLDER rev-parse origin/$CHECKOUT_ID` |
| 142 | fi |
| 143 | echo " TO: $CHECKOUT_ID ($REMOTE_COMMIT_ID)" |
| 144 | if [ "$CURRENT_COMMIT_ID" == "$REMOTE_COMMIT_ID" ]; then |
| 145 | echo " Nothing to be done." |
| 146 | else |
| 147 | echo " Update required." |
| 148 | # Instructions to be added |
| 149 | # lxc exec SO-ub -- ... |
| 150 | fi |
| 151 | echo |
| prithiv | 4a98a04 | 2017-12-05 23:19:39 +0000 | [diff] [blame^] | 152 | echo -e "Updating MON Container" |
| 153 | CONTAINER="MON" |
| 154 | MDG="MON" |
| 155 | INSTALL_FOLDER="/root/MON" |
| 156 | echo -e " Fetching the repo" |
| 157 | lxc exec $CONTAINER -- git -C $INSTALL_FOLDER fetch --all |
| 158 | BRANCH="" |
| 159 | BRANCH=`lxc exec $CONTAINER -- git -C $INSTALL_FOLDER status -sb | head -n1 | sed -n 's/^## \(.*\).*/\1/p'|awk '{print $1}' |sed 's/\(.*\)\.\.\..*/\1/'` |
| 160 | [ -z "$BRANCH" ] && FATAL "Could not find the current branch in use in the '$MDG'" |
| 161 | CURRENT=`lxc exec $CONTAINER -- git -C $INSTALL_FOLDER status |head -n1` |
| 162 | CURRENT_COMMIT_ID=`lxc exec $CONTAINER -- git -C $INSTALL_FOLDER rev-parse HEAD` |
| 163 | echo " FROM: $CURRENT ($CURRENT_COMMIT_ID)" |
| 164 | # COMMIT_ID either was previously set with -b option, or is an empty string |
| 165 | CHECKOUT_ID=$COMMIT_ID |
| 166 | [ -z "$CHECKOUT_ID" ] && [ "$BRANCH" == "HEAD" ] && CHECKOUT_ID="tags/$LATEST_STABLE_DEVOPS" |
| 167 | [ -z "$CHECKOUT_ID" ] && [ "$BRANCH" != "HEAD" ] && CHECKOUT_ID="$BRANCH" |
| 168 | if [[ $CHECKOUT_ID == "tags/"* ]]; then |
| 169 | REMOTE_COMMIT_ID=`lxc exec $CONTAINER -- git -C $INSTALL_FOLDER rev-list -n 1 $CHECKOUT_ID` |
| 170 | else |
| 171 | REMOTE_COMMIT_ID=`lxc exec $CONTAINER -- git -C $INSTALL_FOLDER rev-parse origin/$CHECKOUT_ID` |
| 172 | fi |
| 173 | echo " TO: $CHECKOUT_ID ($REMOTE_COMMIT_ID)" |
| 174 | if [ "$CURRENT_COMMIT_ID" == "$REMOTE_COMMIT_ID" ]; then |
| 175 | echo " Nothing to be done." |
| 176 | else |
| 177 | echo " Update required." |
| 178 | fi |
| 179 | echo |
| garciadeblas | 2a38273 | 2017-01-12 12:11:14 +0100 | [diff] [blame] | 180 | } |
| 181 | |
| Mike Marchetti | 2b95128 | 2017-10-10 15:43:15 -0400 | [diff] [blame] | 182 | function so_is_up() { |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 183 | if [ -n "$1" ]; then |
| 184 | SO_IP=$1 |
| 185 | else |
| 186 | SO_IP=`lxc list SO-ub -c 4|grep eth0 |awk '{print $2}'` |
| 187 | fi |
| Mike Marchetti | 6930bc0 | 2017-05-31 16:33:02 -0400 | [diff] [blame] | 188 | time=0 |
| 189 | step=5 |
| 190 | timelength=300 |
| 191 | while [ $time -le $timelength ] |
| 192 | do |
| Mike Marchetti | 2b95128 | 2017-10-10 15:43:15 -0400 | [diff] [blame] | 193 | if [[ `curl -k -X GET https://$SO_IP:8008/api/operational/vcs/info \ |
| 194 | -H 'accept: application/vnd.yang.data+json' \ |
| 195 | -H 'authorization: Basic YWRtaW46YWRtaW4=' \ |
| 196 | -H 'cache-control: no-cache' 2> /dev/null | jq '.[].components.component_info[] | select(.component_name=="RW.Restconf")' 2>/dev/null | grep "RUNNING" | wc -l` -eq 1 ]] |
| 197 | then |
| 198 | echo "RW.Restconf running....SO is up" |
| 199 | return 0 |
| Mike Marchetti | 6930bc0 | 2017-05-31 16:33:02 -0400 | [diff] [blame] | 200 | fi |
| Mike Marchetti | 2b95128 | 2017-10-10 15:43:15 -0400 | [diff] [blame] | 201 | |
| Mike Marchetti | 6930bc0 | 2017-05-31 16:33:02 -0400 | [diff] [blame] | 202 | sleep $step |
| 203 | echo -n "." |
| 204 | time=$((time+step)) |
| 205 | done |
| Mike Marchetti | 2b95128 | 2017-10-10 15:43:15 -0400 | [diff] [blame] | 206 | |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 207 | FATAL "OSM Failed to startup. SO failed to startup" |
| Mike Marchetti | 6930bc0 | 2017-05-31 16:33:02 -0400 | [diff] [blame] | 208 | } |
| 209 | |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 210 | function vca_is_up() { |
| 211 | if [[ `lxc exec VCA -- juju status | grep "osm" | wc -l` -eq 1 ]]; then |
| 212 | echo "VCA is up and running" |
| 213 | return 0 |
| 214 | fi |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 215 | |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 216 | FATAL "OSM Failed to startup. VCA failed to startup" |
| 217 | } |
| 218 | |
| prithiv | 4a98a04 | 2017-12-05 23:19:39 +0000 | [diff] [blame^] | 219 | function mon_is_up() { |
| 220 | if [[ `curl http://$RO_IP:9090/openmano/ | grep "works" | wc -l` -eq 1 ]]; then |
| 221 | echo "MON is up and running" |
| 222 | return 0 |
| 223 | fi |
| 224 | |
| 225 | FATAL "OSM Failed to startup. MON failed to startup" |
| 226 | } |
| 227 | |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 228 | function ro_is_up() { |
| 229 | if [ -n "$1" ]; then |
| 230 | RO_IP=$1 |
| 231 | else |
| 232 | RO_IP=`lxc list RO -c 4|grep eth0 |awk '{print $2}'` |
| 233 | fi |
| 234 | time=0 |
| 235 | step=2 |
| 236 | timelength=20 |
| 237 | while [ $time -le $timelength ]; do |
| 238 | if [[ `curl http://$RO_IP:9090/openmano/ | grep "works" | wc -l` -eq 1 ]]; then |
| 239 | echo "RO is up and running" |
| 240 | return 0 |
| 241 | fi |
| 242 | sleep $step |
| 243 | echo -n "." |
| 244 | time=$((time+step)) |
| 245 | done |
| 246 | |
| 247 | FATAL "OSM Failed to startup. RO failed to startup" |
| 248 | } |
| 249 | |
| 250 | |
| 251 | function configure_RO(){ |
| 252 | . $OSM_DEVOPS/installers/export_ips |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 253 | echo -e " Configuring RO" |
| garciadeblas | a1fc457 | 2017-04-24 19:08:21 +0200 | [diff] [blame] | 254 | lxc exec RO -- sed -i -e "s/^\#\?log_socket_host:.*/log_socket_host: $SO_CONTAINER_IP/g" /etc/osm/openmanod.cfg |
| 255 | lxc exec RO -- service osm-ro restart |
| Mike Marchetti | 6930bc0 | 2017-05-31 16:33:02 -0400 | [diff] [blame] | 256 | |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 257 | ro_is_up |
| Mike Marchetti | 6930bc0 | 2017-05-31 16:33:02 -0400 | [diff] [blame] | 258 | |
| garciadeblas | d8718f1 | 2016-10-30 19:39:01 +0100 | [diff] [blame] | 259 | lxc exec RO -- openmano tenant-delete -f osm >/dev/null |
| prithiv | 4a98a04 | 2017-12-05 23:19:39 +0000 | [diff] [blame^] | 260 | <<<<<<< HEAD |
| garciadeblas | 1b7107e | 2017-12-21 15:32:02 +0100 | [diff] [blame] | 261 | lxc exec RO -- openmano tenant-create osm > /dev/null |
| tierno | 15f4f22 | 2017-06-14 13:23:01 +0200 | [diff] [blame] | 262 | lxc exec RO -- sed -i '/export OPENMANO_TENANT=osm/d' .bashrc |
| prithiv | 4a98a04 | 2017-12-05 23:19:39 +0000 | [diff] [blame^] | 263 | ======= |
| 264 | lxc exec RO -- sed -i '/export OPENMANO_TENANT=osm/d' .bashrc |
| 265 | >>>>>>> MON Installation Changes Updated. |
| tierno | 15f4f22 | 2017-06-14 13:23:01 +0200 | [diff] [blame] | 266 | lxc exec RO -- sed -i '$ i export OPENMANO_TENANT=osm' .bashrc |
| garciadeblas | 1b7107e | 2017-12-21 15:32:02 +0100 | [diff] [blame] | 267 | lxc exec RO -- sh -c 'echo "export OPENMANO_TENANT=osm" >> .bashrc' |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 268 | } |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 269 | |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 270 | function configure_VCA(){ |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 271 | echo -e " Configuring VCA" |
| 272 | JUJU_PASSWD=`date +%s | sha256sum | base64 | head -c 32` |
| 273 | echo -e "$JUJU_PASSWD\n$JUJU_PASSWD" | lxc exec VCA -- juju change-user-password |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | function configure_SOUI(){ |
| 277 | . $OSM_DEVOPS/installers/export_ips |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 278 | JUJU_CONTROLLER_IP=`lxc exec VCA -- lxc list -c 4 |grep eth0 |awk '{print $2}'` |
| garciadeblas | 1b7107e | 2017-12-21 15:32:02 +0100 | [diff] [blame] | 279 | RO_TENANT_ID=`lxc exec RO -- openmano tenant-list osm |awk '{print $1}'` |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 280 | |
| prithiv | 4a98a04 | 2017-12-05 23:19:39 +0000 | [diff] [blame^] | 281 | echo -e " Configuring MON" |
| 282 | #Information to be added about SO socket for logging |
| 283 | |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 284 | echo -e " Configuring SO" |
| 285 | sudo route add -host $JUJU_CONTROLLER_IP gw $VCA_CONTAINER_IP |
| garciadeblas | 2f4c93b | 2017-04-10 18:12:12 +0200 | [diff] [blame] | 286 | sudo sed -i "$ i route add -host $JUJU_CONTROLLER_IP gw $VCA_CONTAINER_IP" /etc/rc.local |
| Jeremy Mordkoff | 5cc6ccc | 2017-10-05 15:21:07 -0400 | [diff] [blame] | 287 | # make journaling persistent |
| 288 | lxc exec SO-ub -- mkdir -p /var/log/journal |
| 289 | lxc exec SO-ub -- systemd-tmpfiles --create --prefix /var/log/journal |
| 290 | lxc exec SO-ub -- systemctl restart systemd-journald |
| 291 | |
| Jeremy Mordkoff | 3b3edea | 2017-10-03 16:21:56 -0400 | [diff] [blame] | 292 | echo RIFT_EXTERNAL_ADDRESS=$DEFAULT_IP | lxc exec SO-ub -- tee -a /usr/rift/etc/default/launchpad |
| 293 | |
| Mike Marchetti | 6930bc0 | 2017-05-31 16:33:02 -0400 | [diff] [blame] | 294 | lxc exec SO-ub -- systemctl restart launchpad |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 295 | |
| Mike Marchetti | 6930bc0 | 2017-05-31 16:33:02 -0400 | [diff] [blame] | 296 | so_is_up $SO_CONTAINER_IP |
| 297 | |
| 298 | #delete existing config agent (could be there on reconfigure) |
| 299 | curl -k --request DELETE \ |
| 300 | --url https://$SO_CONTAINER_IP:8008/api/config/config-agent/account/osmjuju \ |
| 301 | --header 'accept: application/vnd.yang.data+json' \ |
| 302 | --header 'authorization: Basic YWRtaW46YWRtaW4=' \ |
| 303 | --header 'cache-control: no-cache' \ |
| 304 | --header 'content-type: application/vnd.yang.data+json' &> /dev/null |
| 305 | |
| 306 | result=$(curl -k --request POST \ |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 307 | --url https://$SO_CONTAINER_IP:8008/api/config/config-agent \ |
| 308 | --header 'accept: application/vnd.yang.data+json' \ |
| 309 | --header 'authorization: Basic YWRtaW46YWRtaW4=' \ |
| 310 | --header 'cache-control: no-cache' \ |
| 311 | --header 'content-type: application/vnd.yang.data+json' \ |
| Mike Marchetti | 6930bc0 | 2017-05-31 16:33:02 -0400 | [diff] [blame] | 312 | --data '{"account": [ { "name": "osmjuju", "account-type": "juju", "juju": { "ip-address": "'$JUJU_CONTROLLER_IP'", "port": "17070", "user": "admin", "secret": "'$JUJU_PASSWD'" } } ]}') |
| 313 | [[ $result =~ .*success.* ]] || FATAL "Failed config-agent configuration: $result" |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 314 | |
| Mike Marchetti | 397a65d | 2017-10-02 22:36:16 -0400 | [diff] [blame] | 315 | #R1/R2 config line |
| 316 | #result=$(curl -k --request PUT \ |
| 317 | # --url https://$SO_CONTAINER_IP:8008/api/config/resource-orchestrator \ |
| 318 | # --header 'accept: application/vnd.yang.data+json' \ |
| 319 | # --header 'authorization: Basic YWRtaW46YWRtaW4=' \ |
| 320 | # --header 'cache-control: no-cache' \ |
| 321 | # --header 'content-type: application/vnd.yang.data+json' \ |
| 322 | # --data '{ "openmano": { "host": "'$RO_CONTAINER_IP'", "port": "9090", "tenant-id": "'$RO_TENANT_ID'" }, "name": "osmopenmano", "account-type": "openmano" }') |
| 323 | |
| Mike Marchetti | 6930bc0 | 2017-05-31 16:33:02 -0400 | [diff] [blame] | 324 | result=$(curl -k --request PUT \ |
| Mike Marchetti | 397a65d | 2017-10-02 22:36:16 -0400 | [diff] [blame] | 325 | --url https://$SO_CONTAINER_IP:8008/api/config/project/default/ro-account/account \ |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 326 | --header 'accept: application/vnd.yang.data+json' \ |
| 327 | --header 'authorization: Basic YWRtaW46YWRtaW4=' \ |
| Mike Marchetti | 397a65d | 2017-10-02 22:36:16 -0400 | [diff] [blame] | 328 | --header 'cache-control: no-cache' \ |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 329 | --header 'content-type: application/vnd.yang.data+json' \ |
| Mike Marchetti | 397a65d | 2017-10-02 22:36:16 -0400 | [diff] [blame] | 330 | --data '{"rw-ro-account:account": [ { "openmano": { "host": "'$RO_CONTAINER_IP'", "port": "9090", "tenant-id": "'$RO_TENANT_ID'"}, "name": "osmopenmano", "ro-account-type": "openmano" }]}') |
| Mike Marchetti | 6930bc0 | 2017-05-31 16:33:02 -0400 | [diff] [blame] | 331 | [[ $result =~ .*success.* ]] || FATAL "Failed resource-orchestrator configuration: $result" |
| Jeremy Mordkoff | 2059b39 | 2017-10-03 17:34:10 -0400 | [diff] [blame] | 332 | |
| Jeremy Mordkoff | 34151f2 | 2017-10-04 19:45:37 -0400 | [diff] [blame] | 333 | result=$(curl -k --request PATCH \ |
| 334 | --url https://$SO_CONTAINER_IP:8008/v2/api/config/openidc-provider-config/rw-ui-client/redirect-uri \ |
| 335 | --header 'accept: application/vnd.yang.data+json' \ |
| 336 | --header 'authorization: Basic YWRtaW46YWRtaW4=' \ |
| 337 | --header 'cache-control: no-cache' \ |
| 338 | --header 'content-type: application/vnd.yang.data+json' \ |
| 339 | --data '{"redirect-uri": "https://'$DEFAULT_IP':8443/callback" }') |
| 340 | [[ $result =~ .*success.* ]] || FATAL "Failed redirect-uri configuration: $result" |
| 341 | |
| 342 | result=$(curl -k --request PATCH \ |
| 343 | --url https://$SO_CONTAINER_IP:8008/v2/api/config/openidc-provider-config/rw-ui-client/post-logout-redirect-uri \ |
| 344 | --header 'accept: application/vnd.yang.data+json' \ |
| 345 | --header 'authorization: Basic YWRtaW46YWRtaW4=' \ |
| 346 | --header 'cache-control: no-cache' \ |
| 347 | --header 'content-type: application/vnd.yang.data+json' \ |
| 348 | --data '{"post-logout-redirect-uri": "https://'$DEFAULT_IP':8443/?api_server=https://'$DEFAULT_IP'" }') |
| 349 | [[ $result =~ .*success.* ]] || FATAL "Failed post-logout-redirect-uri configuration: $result" |
| 350 | |
| Jeremy Mordkoff | f4b6e62 | 2017-10-04 12:05:41 -0400 | [diff] [blame] | 351 | lxc exec SO-ub -- tee /etc/network/interfaces.d/60-rift.cfg <<EOF |
| 352 | auto lo:1 |
| prithiv | 4a98a04 | 2017-12-05 23:19:39 +0000 | [diff] [blame^] | 353 | iface lo:1 inet static |
| Jeremy Mordkoff | f4b6e62 | 2017-10-04 12:05:41 -0400 | [diff] [blame] | 354 | address $DEFAULT_IP |
| 355 | netmask 255.255.255.255 |
| 356 | EOF |
| 357 | lxc exec SO-ub ifup lo:1 |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 358 | } |
| Jeremy Mordkoff | 2059b39 | 2017-10-03 17:34:10 -0400 | [diff] [blame] | 359 | |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 360 | #Configure RO, VCA, and SO with the initial configuration: |
| 361 | # RO -> tenant:osm, logs to be sent to SO |
| 362 | # VCA -> juju-password |
| 363 | # SO -> route to Juju Controller, add RO account, add VCA account |
| 364 | function configure(){ |
| 365 | #Configure components |
| 366 | echo -e "\nConfiguring components" |
| 367 | configure_RO |
| 368 | configure_VCA |
| 369 | configure_SOUI |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 370 | } |
| 371 | |
| garciadeblas | 2a5a651 | 2016-12-19 10:19:52 +0100 | [diff] [blame] | 372 | function install_lxd() { |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 373 | sudo apt-get update |
| 374 | sudo apt-get install -y lxd |
| 375 | newgrp lxd |
| garciadeblas | 2a5a651 | 2016-12-19 10:19:52 +0100 | [diff] [blame] | 376 | lxd init --auto |
| 377 | lxd waitready |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 378 | lxc network create lxdbr0 ipv4.address=auto ipv4.nat=true ipv6.address=none ipv6.nat=false |
| 379 | DEFAULT_INTERFACE=$(route -n | awk '$1~/^0.0.0.0/ {print $8}') |
| 380 | DEFAULT_MTU=$( ip addr show $DEFAULT_INTERFACE | perl -ne 'if (/mtu\s(\d+)/) {print $1;}') |
| 381 | lxc profile device set default eth0 mtu $DEFAULT_MTU |
| 382 | #sudo systemctl stop lxd-bridge |
| 383 | #sudo systemctl --system daemon-reload |
| 384 | #sudo systemctl enable lxd-bridge |
| 385 | #sudo systemctl start lxd-bridge |
| garciadeblas | 2a5a651 | 2016-12-19 10:19:52 +0100 | [diff] [blame] | 386 | } |
| 387 | |
| tierno | 53881d7 | 2017-04-25 11:58:57 +0200 | [diff] [blame] | 388 | function ask_user(){ |
| 389 | # ask to the user and parse a response among 'y', 'yes', 'n' or 'no'. Case insensitive |
| 390 | # Params: $1 text to ask; $2 Action by default, can be 'y' for yes, 'n' for no, other or empty for not allowed |
| 391 | # Return: true(0) if user type 'yes'; false (1) if user type 'no' |
| 392 | read -e -p "$1" USER_CONFIRMATION |
| 393 | while true ; do |
| 394 | [ -z "$USER_CONFIRMATION" ] && [ "$2" == 'y' ] && return 0 |
| 395 | [ -z "$USER_CONFIRMATION" ] && [ "$2" == 'n' ] && return 1 |
| 396 | [ "${USER_CONFIRMATION,,}" == "yes" ] || [ "${USER_CONFIRMATION,,}" == "y" ] && return 0 |
| 397 | [ "${USER_CONFIRMATION,,}" == "no" ] || [ "${USER_CONFIRMATION,,}" == "n" ] && return 1 |
| 398 | read -e -p "Please type 'yes' or 'no': " USER_CONFIRMATION |
| 399 | done |
| 400 | } |
| garciadeblas | 2a5a651 | 2016-12-19 10:19:52 +0100 | [diff] [blame] | 401 | |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 402 | function launch_container_from_lxd(){ |
| 403 | export OSM_MDG=$1 |
| 404 | OSM_load_config |
| 405 | export OSM_BASE_IMAGE=$2 |
| 406 | if ! container_exists $OSM_BUILD_CONTAINER; then |
| 407 | CONTAINER_OPTS="" |
| 408 | [[ "$OSM_BUILD_CONTAINER_PRIVILEGED" == yes ]] && CONTAINER_OPTS="$CONTAINER_OPTS -c security.privileged=true" |
| 409 | [[ "$OSM_BUILD_CONTAINER_ALLOW_NESTED" == yes ]] && CONTAINER_OPTS="$CONTAINER_OPTS -c security.nesting=true" |
| 410 | create_container $OSM_BASE_IMAGE $OSM_BUILD_CONTAINER $CONTAINER_OPTS |
| 411 | wait_container_up $OSM_BUILD_CONTAINER |
| 412 | fi |
| 413 | } |
| 414 | |
| 415 | function install_osmclient(){ |
| 416 | CLIENT_RELEASE=${RELEASE#"-R "} |
| 417 | CLIENT_REPOSITORY_KEY="OSM%20ETSI%20Release%20Key.gpg" |
| 418 | CLIENT_REPOSITORY="stable" |
| 419 | [ -z "$REPOSITORY_BASE" ] && REPOSITORY_BASE="-u https://osm-download.etsi.org/repository/osm/debian" |
| 420 | CLIENT_REPOSITORY_BASE=${REPOSITORY_BASE#"-u "} |
| 421 | key_location=$CLIENT_REPOSITORY_BASE/$CLIENT_RELEASE/$CLIENT_REPOSITORY_KEY |
| 422 | curl $key_location | sudo apt-key add - |
| 423 | sudo add-apt-repository -y "deb [arch=amd64] $CLIENT_REPOSITORY_BASE/$CLIENT_RELEASE $CLIENT_REPOSITORY osmclient" |
| 424 | sudo apt-get update |
| 425 | sudo apt-get install -y python-osmclient |
| 426 | export OSM_HOSTNAME=`lxc list | awk '($2=="SO-ub"){print $6}'` |
| 427 | export OSM_RO_HOSTNAME=`lxc list | awk '($2=="RO"){print $6}'` |
| 428 | echo -e "\nOSM client installed" |
| 429 | echo -e "You might be interested in adding the following OSM client env variables to your .bashrc file:" |
| 430 | echo " export OSM_HOSTNAME=${OSM_HOSTNAME}" |
| 431 | echo " export OSM_RO_HOSTNAME=${OSM_RO_HOSTNAME}" |
| 432 | } |
| 433 | |
| 434 | function install_from_lxdimages(){ |
| 435 | LXD_RELEASE=${RELEASE#"-R "} |
| garciadeblas | fc8f029 | 2018-04-02 16:55:29 +0200 | [diff] [blame] | 436 | if [ -n "$LXD_REPOSITORY_PATH" ]; then |
| 437 | LXD_IMAGE_DIR="$LXD_REPOSITORY_PATH" |
| 438 | else |
| 439 | LXD_IMAGE_DIR="$(mktemp -d -q --tmpdir "osmimages.XXXXXX")" |
| 440 | trap 'rm -rf "$LXD_IMAGE_DIR"' EXIT |
| 441 | fi |
| garciadeblas | 54e7eed | 2018-03-19 17:38:04 +0100 | [diff] [blame] | 442 | echo -e "\nDeleting previous lxd images if they exist" |
| 443 | lxc image show osm-ro &>/dev/null && lxc image delete osm-ro |
| 444 | lxc image show osm-vca &>/dev/null && lxc image delete osm-vca |
| 445 | lxc image show osm-soui &>/dev/null && lxc image delete osm-soui |
| 446 | echo -e "\nImporting osm-ro" |
| garciadeblas | fc8f029 | 2018-04-02 16:55:29 +0200 | [diff] [blame] | 447 | [ -z "$LXD_REPOSITORY_PATH" ] && wget -O $LXD_IMAGE_DIR/osm-ro.tar.gz $LXD_REPOSITORY_BASE/$LXD_RELEASE/osm-ro.tar.gz |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 448 | lxc image import $LXD_IMAGE_DIR/osm-ro.tar.gz --alias osm-ro |
| 449 | rm -f $LXD_IMAGE_DIR/osm-ro.tar.gz |
| garciadeblas | 54e7eed | 2018-03-19 17:38:04 +0100 | [diff] [blame] | 450 | echo -e "\nImporting osm-vca" |
| garciadeblas | fc8f029 | 2018-04-02 16:55:29 +0200 | [diff] [blame] | 451 | [ -z "$LXD_REPOSITORY_PATH" ] && wget -O $LXD_IMAGE_DIR/osm-vca.tar.gz $LXD_REPOSITORY_BASE/$LXD_RELEASE/osm-vca.tar.gz |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 452 | lxc image import $LXD_IMAGE_DIR/osm-vca.tar.gz --alias osm-vca |
| 453 | rm -f $LXD_IMAGE_DIR/osm-vca.tar.gz |
| garciadeblas | 54e7eed | 2018-03-19 17:38:04 +0100 | [diff] [blame] | 454 | echo -e "\nImporting osm-soui" |
| garciadeblas | fc8f029 | 2018-04-02 16:55:29 +0200 | [diff] [blame] | 455 | [ -z "$LXD_REPOSITORY_PATH" ] && wget -O $LXD_IMAGE_DIR/osm-soui.tar.gz $LXD_REPOSITORY_BASE/$LXD_RELEASE/osm-soui.tar.gz |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 456 | lxc image import $LXD_IMAGE_DIR/osm-soui.tar.gz --alias osm-soui |
| 457 | rm -f $LXD_IMAGE_DIR/osm-soui.tar.gz |
| 458 | launch_container_from_lxd RO osm-ro |
| 459 | ro_is_up && track RO |
| 460 | launch_container_from_lxd VCA osm-vca |
| 461 | vca_is_up && track VCA |
| prithiv | 4a98a04 | 2017-12-05 23:19:39 +0000 | [diff] [blame^] | 462 | launch_container_from_lxd MON osm-mon |
| 463 | mon_is_up && track MON |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 464 | launch_container_from_lxd SO osm-soui |
| 465 | #so_is_up && track SOUI |
| 466 | track SOUI |
| 467 | } |
| 468 | |
| peusterm | 3a3e7a5 | 2017-12-22 13:10:54 +0100 | [diff] [blame] | 469 | function install_docker_ce() { |
| 470 | # installs and configures Docker CE |
| 471 | echo "Installing Docker CE ..." |
| peusterm | e2c017e | 2018-02-07 11:51:11 +0100 | [diff] [blame] | 472 | sudo apt-get -qq update |
| 473 | sudo apt-get install -y apt-transport-https ca-certificates software-properties-common |
| peusterm | 3a3e7a5 | 2017-12-22 13:10:54 +0100 | [diff] [blame] | 474 | curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - |
| 475 | sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" |
| 476 | sudo apt-get -qq update |
| peusterm | e2c017e | 2018-02-07 11:51:11 +0100 | [diff] [blame] | 477 | sudo apt-get install -y docker-ce |
| peusterm | 3a3e7a5 | 2017-12-22 13:10:54 +0100 | [diff] [blame] | 478 | echo "Adding user to group 'docker'" |
| peusterm | e2c017e | 2018-02-07 11:51:11 +0100 | [diff] [blame] | 479 | sudo groupadd -f docker |
| peusterm | 3a3e7a5 | 2017-12-22 13:10:54 +0100 | [diff] [blame] | 480 | sudo usermod -aG docker $USER |
| 481 | echo "... Docker CE installation done" |
| peusterm | e2c017e | 2018-02-07 11:51:11 +0100 | [diff] [blame] | 482 | sleep 2 |
| 483 | sudo service docker restart |
| 484 | echo "... restarted Docker service" |
| peusterm | 3a3e7a5 | 2017-12-22 13:10:54 +0100 | [diff] [blame] | 485 | } |
| 486 | |
| 487 | function install_vimemu() { |
| 488 | # install Docker |
| 489 | install_docker_ce |
| 490 | # clone vim-emu repository (attention: branch is currently master only) |
| 491 | echo "Cloning vim-emu repository ..." |
| 492 | git clone https://osm.etsi.org/gerrit/osm/vim-emu.git |
| 493 | # build vim-emu docker |
| 494 | echo "Building vim-emu Docker container..." |
| peusterm | e2c017e | 2018-02-07 11:51:11 +0100 | [diff] [blame] | 495 | sudo docker build -t vim-emu-img -f vim-emu/Dockerfile vim-emu/ |
| peusterm | 3a3e7a5 | 2017-12-22 13:10:54 +0100 | [diff] [blame] | 496 | # start vim-emu container as daemon |
| 497 | echo "Starting vim-emu Docker container 'vim-emu' ..." |
| peusterm | e2c017e | 2018-02-07 11:51:11 +0100 | [diff] [blame] | 498 | sudo docker run --name vim-emu -t -d --rm --privileged --pid='host' -v /var/run/docker.sock:/var/run/docker.sock vim-emu-img python examples/osm_default_daemon_topology_2_pop.py |
| peusterm | 3a3e7a5 | 2017-12-22 13:10:54 +0100 | [diff] [blame] | 499 | echo "Waiting for 'vim-emu' container to start ..." |
| 500 | sleep 5 |
| peusterm | e2c017e | 2018-02-07 11:51:11 +0100 | [diff] [blame] | 501 | export VIMEMU_HOSTNAME=$(sudo docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' vim-emu) |
| peusterm | 3a3e7a5 | 2017-12-22 13:10:54 +0100 | [diff] [blame] | 502 | echo "vim-emu running at $VIMEMU_HOSTNAME ..." |
| peusterm | d74dc84 | 2018-01-24 15:32:17 +0100 | [diff] [blame] | 503 | echo -e "You might be interested in adding the following OSM client env variables to your .bashrc file:" |
| 504 | echo " export OSM_HOSTNAME=${OSM_HOSTNAME}" |
| 505 | echo " export OSM_RO_HOSTNAME=${OSM_RO_HOSTNAME}" |
| 506 | echo -e "You might be interested in adding the following vim-emu env variables to your .bashrc file:" |
| peusterm | 3a3e7a5 | 2017-12-22 13:10:54 +0100 | [diff] [blame] | 507 | echo " export VIMEMU_HOSTNAME=${VIMEMU_HOSTNAME}" |
| 508 | echo -e "\nTo add the emulated VIM to OSM you should do:" |
| peusterm | d74dc84 | 2018-01-24 15:32:17 +0100 | [diff] [blame] | 509 | echo " osm vim-create --name emu-vim1 --user username --password password --auth_url http://$VIMEMU_HOSTNAME:6001/v2.0 --tenant tenantName --account_type openstack" |
| peusterm | 3a3e7a5 | 2017-12-22 13:10:54 +0100 | [diff] [blame] | 510 | } |
| 511 | |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 512 | function dump_vars(){ |
| 513 | echo "DEVELOP=$DEVELOP" |
| 514 | echo "INSTALL_FROM_SOURCE=$INSTALL_FROM_SOURCE" |
| 515 | echo "UNINSTALL=$UNINSTALL" |
| 516 | echo "NAT=$NAT" |
| 517 | echo "UPDATE=$UPDATE" |
| 518 | echo "RECONFIGURE=$RECONFIGURE" |
| 519 | echo "TEST_INSTALLER=$TEST_INSTALLER" |
| peusterm | 3a3e7a5 | 2017-12-22 13:10:54 +0100 | [diff] [blame] | 520 | echo "INSTALL_VIMEMU=$INSTALL_VIMEMU" |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 521 | echo "INSTALL_LXD=$INSTALL_LXD" |
| 522 | echo "INSTALL_FROM_LXDIMAGES=$INSTALL_FROM_LXDIMAGES" |
| 523 | echo "LXD_REPOSITORY_BASE=$LXD_REPOSITORY_BASE" |
| garciadeblas | fc8f029 | 2018-04-02 16:55:29 +0200 | [diff] [blame] | 524 | echo "LXD_REPOSITORY_PATH=$LXD_REPOSITORY_PATH" |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 525 | echo "RELEASE=$RELEASE" |
| 526 | echo "REPOSITORY=$REPOSITORY" |
| 527 | echo "REPOSITORY_BASE=$REPOSITORY_BASE" |
| 528 | echo "REPOSITORY_KEY=$REPOSITORY_KEY" |
| 529 | echo "NOCONFIGURE=$NOCONFIGURE" |
| 530 | echo "SHOWOPTS=$SHOWOPTS" |
| 531 | echo "Install from specific refspec (-b): $COMMIT_ID" |
| 532 | } |
| 533 | |
| 534 | function track(){ |
| 535 | ctime=`date +%s` |
| 536 | duration=$((ctime - SESSION_ID)) |
| 537 | url="http://www.woopra.com/track/ce?project=osm.etsi.org&cookie=${SESSION_ID}" |
| 538 | #url="${url}&ce_campaign_name=${CAMPAIGN_NAME}" |
| 539 | event_name="bin" |
| 540 | [ -n "$INSTALL_FROM_SOURCE" ] && event_name="src" |
| 541 | [ -n "$INSTALL_FROM_LXDIMAGES" ] && event_name="lxd" |
| 542 | event_name="${event_name}_$1" |
| 543 | url="${url}&event=${event_name}&ce_duration=${duration}" |
| 544 | wget -q -O /dev/null $url |
| 545 | } |
| 546 | |
| garciadeblas | 93c6131 | 2016-09-28 15:12:48 +0200 | [diff] [blame] | 547 | UNINSTALL="" |
| 548 | DEVELOP="" |
| 549 | NAT="" |
| garciadeblas | 2a38273 | 2017-01-12 12:11:14 +0100 | [diff] [blame] | 550 | UPDATE="" |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 551 | RECONFIGURE="" |
| 552 | TEST_INSTALLER="" |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 553 | INSTALL_LXD="" |
| garciadeblas | 2a5a651 | 2016-12-19 10:19:52 +0100 | [diff] [blame] | 554 | SHOWOPTS="" |
| 555 | COMMIT_ID="" |
| tierno | 2cc8e25 | 2017-03-08 17:12:05 +0100 | [diff] [blame] | 556 | ASSUME_YES="" |
| garciadeblas | a1fc457 | 2017-04-24 19:08:21 +0200 | [diff] [blame] | 557 | INSTALL_FROM_SOURCE="" |
| garciadeblas | 8244229 | 2017-11-16 14:48:12 +0100 | [diff] [blame] | 558 | RELEASE="-R ReleaseTHREE" |
| peusterm | 3a3e7a5 | 2017-12-22 13:10:54 +0100 | [diff] [blame] | 559 | INSTALL_VIMEMU="" |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 560 | INSTALL_FROM_LXDIMAGES="" |
| 561 | LXD_REPOSITORY_BASE="https://osm-download.etsi.org/repository/osm/lxd" |
| garciadeblas | fc8f029 | 2018-04-02 16:55:29 +0200 | [diff] [blame] | 562 | LXD_REPOSITORY_PATH="" |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 563 | NOCONFIGURE="" |
| Mike Marchetti | ca56c64 | 2017-12-16 16:04:52 -0500 | [diff] [blame] | 564 | RELEASE_DAILY="" |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 565 | SESSION_ID=`date +%s` |
| 566 | |
| garciadeblas | fc8f029 | 2018-04-02 16:55:29 +0200 | [diff] [blame] | 567 | while getopts ":hy-:b:r:k:u:R:l:p:" o; do |
| garciadeblas | 93c6131 | 2016-09-28 15:12:48 +0200 | [diff] [blame] | 568 | case "${o}" in |
| 569 | h) |
| 570 | usage && exit 0 |
| 571 | ;; |
| garciadeblas | 2a5a651 | 2016-12-19 10:19:52 +0100 | [diff] [blame] | 572 | b) |
| 573 | COMMIT_ID=${OPTARG} |
| 574 | ;; |
| Mike Marchetti | 425f8ce | 2017-06-15 13:02:16 -0400 | [diff] [blame] | 575 | r) |
| 576 | REPOSITORY="-r ${OPTARG}" |
| 577 | ;; |
| 578 | R) |
| 579 | RELEASE="-R ${OPTARG}" |
| 580 | ;; |
| 581 | k) |
| 582 | REPOSITORY_KEY="-k ${OPTARG}" |
| 583 | ;; |
| 584 | u) |
| 585 | REPOSITORY_BASE="-u ${OPTARG}" |
| 586 | ;; |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 587 | l) |
| 588 | LXD_REPOSITORY_BASE="${OPTARG}" |
| 589 | ;; |
| garciadeblas | fc8f029 | 2018-04-02 16:55:29 +0200 | [diff] [blame] | 590 | p) |
| 591 | LXD_REPOSITORY_PATH="${OPTARG}" |
| 592 | ;; |
| garciadeblas | 93c6131 | 2016-09-28 15:12:48 +0200 | [diff] [blame] | 593 | -) |
| 594 | [ "${OPTARG}" == "help" ] && usage && exit 0 |
| garciadeblas | a1fc457 | 2017-04-24 19:08:21 +0200 | [diff] [blame] | 595 | [ "${OPTARG}" == "source" ] && INSTALL_FROM_SOURCE="y" && continue |
| garciadeblas | 93c6131 | 2016-09-28 15:12:48 +0200 | [diff] [blame] | 596 | [ "${OPTARG}" == "develop" ] && DEVELOP="y" && continue |
| 597 | [ "${OPTARG}" == "uninstall" ] && UNINSTALL="y" && continue |
| 598 | [ "${OPTARG}" == "nat" ] && NAT="y" && continue |
| garciadeblas | 2a38273 | 2017-01-12 12:11:14 +0100 | [diff] [blame] | 599 | [ "${OPTARG}" == "update" ] && UPDATE="y" && continue |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 600 | [ "${OPTARG}" == "reconfigure" ] && RECONFIGURE="y" && continue |
| 601 | [ "${OPTARG}" == "test" ] && TEST_INSTALLER="y" && continue |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 602 | [ "${OPTARG}" == "lxdinstall" ] && INSTALL_LXD="y" && continue |
| 603 | [ "${OPTARG}" == "lxdimages" ] && INSTALL_FROM_LXDIMAGES="y" && continue |
| peusterm | 3a3e7a5 | 2017-12-22 13:10:54 +0100 | [diff] [blame] | 604 | [ "${OPTARG}" == "vimemu" ] && INSTALL_VIMEMU="y" && continue |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 605 | [ "${OPTARG}" == "noconfigure" ] && NOCONFIGURE="y" && continue |
| garciadeblas | 2a5a651 | 2016-12-19 10:19:52 +0100 | [diff] [blame] | 606 | [ "${OPTARG}" == "showopts" ] && SHOWOPTS="y" && continue |
| Mike Marchetti | ca56c64 | 2017-12-16 16:04:52 -0500 | [diff] [blame] | 607 | [ "${OPTARG}" == "daily" ] && RELEASE_DAILY="y" && continue |
| garciadeblas | 93c6131 | 2016-09-28 15:12:48 +0200 | [diff] [blame] | 608 | echo -e "Invalid option: '--$OPTARG'\n" >&2 |
| 609 | usage && exit 1 |
| 610 | ;; |
| 611 | \?) |
| 612 | echo -e "Invalid option: '-$OPTARG'\n" >&2 |
| 613 | usage && exit 1 |
| 614 | ;; |
| tierno | 2cc8e25 | 2017-03-08 17:12:05 +0100 | [diff] [blame] | 615 | y) |
| 616 | ASSUME_YES="y" |
| 617 | ;; |
| garciadeblas | 93c6131 | 2016-09-28 15:12:48 +0200 | [diff] [blame] | 618 | *) |
| 619 | usage && exit 1 |
| 620 | ;; |
| 621 | esac |
| 622 | done |
| 623 | |
| garciadeblas | a6ff986 | 2017-04-07 02:00:29 +0200 | [diff] [blame] | 624 | if [ -n "$SHOWOPTS" ]; then |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 625 | dump_vars |
| garciadeblas | a6ff986 | 2017-04-07 02:00:29 +0200 | [diff] [blame] | 626 | exit 0 |
| 627 | fi |
| 628 | |
| Mike Marchetti | ca56c64 | 2017-12-16 16:04:52 -0500 | [diff] [blame] | 629 | [ -n "$RELEASE_DAILY" ] && echo -e "\nInstalling from daily build repo" && RELEASE="-R ReleaseTHREE-daily" && REPOSITORY="-r testing" && COMMIT_ID="master" |
| 630 | |
| Mike Marchetti | 6930bc0 | 2017-05-31 16:33:02 -0400 | [diff] [blame] | 631 | # if develop, we force master |
| garciadeblas | 2a5a651 | 2016-12-19 10:19:52 +0100 | [diff] [blame] | 632 | [ -z "$COMMIT_ID" ] && [ -n "$DEVELOP" ] && COMMIT_ID="master" |
| Mike Marchetti | 6930bc0 | 2017-05-31 16:33:02 -0400 | [diff] [blame] | 633 | |
| Mike Marchetti | 0d56760 | 2017-09-29 14:30:28 -0400 | [diff] [blame] | 634 | # forcing source from master removed. Now only install from source when explicit |
| 635 | # [ -n "$COMMIT_ID" ] && [ "$COMMIT_ID" == "master" ] && INSTALL_FROM_SOURCE="y" |
| garciadeblas | 2a5a651 | 2016-12-19 10:19:52 +0100 | [diff] [blame] | 636 | |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 637 | if [ -n "$TEST_INSTALLER" ]; then |
| 638 | echo -e "\nUsing local devops repo for OSM installation" |
| 639 | TEMPDIR="$(dirname $(realpath $(dirname $0)))" |
| 640 | else |
| 641 | echo -e "\nCreating temporary dir for OSM installation" |
| 642 | TEMPDIR="$(mktemp -d -q --tmpdir "installosm.XXXXXX")" |
| 643 | trap 'rm -rf "$TEMPDIR"' EXIT |
| 644 | fi |
| garciadeblas | 93c6131 | 2016-09-28 15:12:48 +0200 | [diff] [blame] | 645 | |
| Mike Marchetti | 2b95128 | 2017-10-10 15:43:15 -0400 | [diff] [blame] | 646 | need_packages="git jq" |
| 647 | for package in $need_packages; do |
| 648 | echo -e "Checking required packages: $package" |
| Mike Marchetti | d8577f5 | 2017-10-19 15:27:48 -0400 | [diff] [blame] | 649 | dpkg -l $package &>/dev/null \ |
| 650 | || ! echo -e " $package not installed.\nInstalling $package requires root privileges" \ |
| 651 | || sudo apt-get install -y $package \ |
| 652 | || FATAL "failed to install $package" |
| Mike Marchetti | 2b95128 | 2017-10-10 15:43:15 -0400 | [diff] [blame] | 653 | done |
| 654 | |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 655 | if [ -z "$TEST_INSTALLER" ]; then |
| 656 | echo -e "\nCloning devops repo temporarily" |
| 657 | git clone https://osm.etsi.org/gerrit/osm/devops.git $TEMPDIR |
| 658 | RC_CLONE=$? |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 659 | fi |
| garciadeblas | 2a38273 | 2017-01-12 12:11:14 +0100 | [diff] [blame] | 660 | |
| 661 | echo -e "\nGuessing the current stable release" |
| Mike Marchetti | 91df835 | 2017-10-17 13:47:48 -0400 | [diff] [blame] | 662 | LATEST_STABLE_DEVOPS=`git -C $TEMPDIR tag -l v[0-9].* | sort -V | tail -n1` |
| garciadeblas | 2a38273 | 2017-01-12 12:11:14 +0100 | [diff] [blame] | 663 | [ -z "$COMMIT_ID" ] && [ -z "$LATEST_STABLE_DEVOPS" ] && echo "Could not find the current latest stable release" && exit 0 |
| garciadeblas | a6ff986 | 2017-04-07 02:00:29 +0200 | [diff] [blame] | 664 | echo "Latest tag in devops repo: $LATEST_STABLE_DEVOPS" |
| 665 | [ -z "$COMMIT_ID" ] && [ -n "$LATEST_STABLE_DEVOPS" ] && COMMIT_ID="tags/$LATEST_STABLE_DEVOPS" |
| Mike Marchetti | ca56c64 | 2017-12-16 16:04:52 -0500 | [diff] [blame] | 666 | |
| 667 | if [ -n "$RELEASE_DAILY" ]; then |
| 668 | echo "Using master/HEAD devops" |
| 669 | git -C $TEMPDIR checkout master |
| 670 | elif [ -z "$TEST_INSTALLER" ]; then |
| 671 | git -C $TEMPDIR checkout tags/$LATEST_STABLE_DEVOPS |
| 672 | fi |
| garciadeblas | 2a38273 | 2017-01-12 12:11:14 +0100 | [diff] [blame] | 673 | |
| garciadeblas | 93c6131 | 2016-09-28 15:12:48 +0200 | [diff] [blame] | 674 | OSM_DEVOPS=$TEMPDIR |
| garciadeblas | 0fe45dd | 2016-10-04 07:54:17 +0200 | [diff] [blame] | 675 | OSM_JENKINS="$TEMPDIR/jenkins" |
| 676 | . $OSM_JENKINS/common/all_funcs |
| garciadeblas | 93c6131 | 2016-09-28 15:12:48 +0200 | [diff] [blame] | 677 | |
| garciadeblas | d8718f1 | 2016-10-30 19:39:01 +0100 | [diff] [blame] | 678 | [ -n "$UNINSTALL" ] && uninstall && echo -e "\nDONE" && exit 0 |
| 679 | [ -n "$NAT" ] && nat && echo -e "\nDONE" && exit 0 |
| garciadeblas | 2a38273 | 2017-01-12 12:11:14 +0100 | [diff] [blame] | 680 | [ -n "$UPDATE" ] && update && echo -e "\nDONE" && exit 0 |
| garciadeblas | d8718f1 | 2016-10-30 19:39:01 +0100 | [diff] [blame] | 681 | [ -n "$RECONFIGURE" ] && configure && echo -e "\nDONE" && exit 0 |
| garciadeblas | 93c6131 | 2016-09-28 15:12:48 +0200 | [diff] [blame] | 682 | |
| 683 | #Installation starts here |
| garciadeblas | a1fc457 | 2017-04-24 19:08:21 +0200 | [diff] [blame] | 684 | echo -e "\nInstalling OSM from refspec: $COMMIT_ID" |
| prithiv | 4a98a04 | 2017-12-05 23:19:39 +0000 | [diff] [blame^] | 685 | if [ -n "$INSTALL_FROM_SOURCE" ] && [ -z "$ASSUME_YES" ]; then |
| tierno | 53881d7 | 2017-04-25 11:58:57 +0200 | [diff] [blame] | 686 | ! ask_user "The installation will take about 75-90 minutes. Continue (Y/n)? " y && echo "Cancelled!" && exit 1 |
| tierno | 2cc8e25 | 2017-03-08 17:12:05 +0100 | [diff] [blame] | 687 | fi |
| 688 | |
| garciadeblas | a1fc457 | 2017-04-24 19:08:21 +0200 | [diff] [blame] | 689 | echo -e "\nChecking required packages: wget, curl, tar" |
| 690 | dpkg -l wget curl tar &>/dev/null || ! echo -e " One or several packages are not installed.\nInstalling required packages\n Root privileges are required" || sudo apt-get install -y wget curl tar |
| 691 | |
| Jokin Garay | c0a6596 | 2017-03-09 14:51:48 +0100 | [diff] [blame] | 692 | echo -e "Checking required packages: lxd" |
| garciadeblas | d880f72 | 2017-04-07 20:14:57 +0200 | [diff] [blame] | 693 | lxd --version &>/dev/null || FATAL "lxd not present, exiting." |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 694 | [ -n "$INSTALL_LXD" ] && echo -e "\nInstalling and configuring lxd" && install_lxd |
| garciadeblas | 2a5a651 | 2016-12-19 10:19:52 +0100 | [diff] [blame] | 695 | |
| Mike Marchetti | b884a46 | 2017-10-05 13:28:33 -0400 | [diff] [blame] | 696 | wget -q -O- https://osm-download.etsi.org/ftp/osm-3.0-three/README.txt &> /dev/null |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 697 | track start |
| garciadeblas | 93c6131 | 2016-09-28 15:12:48 +0200 | [diff] [blame] | 698 | |
| Mike Marchetti | d1e08b9 | 2017-09-29 16:14:11 -0400 | [diff] [blame] | 699 | # use local devops for containers |
| 700 | export OSM_USE_LOCAL_DEVOPS=true |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 701 | if [ -n "$INSTALL_FROM_SOURCE" ]; then #install from source |
| garciadeblas | a1fc457 | 2017-04-24 19:08:21 +0200 | [diff] [blame] | 702 | echo -e "\nCreating the containers and building from source ..." |
| 703 | $OSM_DEVOPS/jenkins/host/start_build RO --notest checkout $COMMIT_ID || FATAL "RO container build failed (refspec: '$COMMIT_ID')" |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 704 | ro_is_up && track RO |
| garciadeblas | a1fc457 | 2017-04-24 19:08:21 +0200 | [diff] [blame] | 705 | $OSM_DEVOPS/jenkins/host/start_build VCA || FATAL "VCA container build failed" |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 706 | vca_is_up && track VCA |
| prithiv | 4a98a04 | 2017-12-05 23:19:39 +0000 | [diff] [blame^] | 707 | $OSM_DEVOPS/jenkins/host/start_build MON || FATAL "MON install failed" |
| 708 | mon_is_up && track MON |
| garciadeblas | a1fc457 | 2017-04-24 19:08:21 +0200 | [diff] [blame] | 709 | $OSM_DEVOPS/jenkins/host/start_build SO checkout $COMMIT_ID || FATAL "SO container build failed (refspec: '$COMMIT_ID')" |
| 710 | $OSM_DEVOPS/jenkins/host/start_build UI checkout $COMMIT_ID || FATAL "UI container build failed (refspec: '$COMMIT_ID')" |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 711 | #so_is_up && track SOUI |
| 712 | track SOUI |
| 713 | elif [ -n "$INSTALL_FROM_LXDIMAGES" ]; then #install from LXD images stored in OSM repo |
| 714 | echo -e "\nInstalling from lxd images ..." |
| 715 | install_from_lxdimages |
| 716 | else #install from binaries |
| 717 | echo -e "\nCreating the containers and installing from binaries ..." |
| 718 | $OSM_DEVOPS/jenkins/host/install RO $REPOSITORY $RELEASE $REPOSITORY_KEY $REPOSITORY_BASE || FATAL "RO install failed" |
| 719 | ro_is_up && track RO |
| 720 | $OSM_DEVOPS/jenkins/host/start_build VCA || FATAL "VCA install failed" |
| 721 | vca_is_up && track VCA |
| prithiv | 4a98a04 | 2017-12-05 23:19:39 +0000 | [diff] [blame^] | 722 | $OSM_DEVOPS/jenkins/host/install MON || FATAL "MON build failed" |
| 723 | mon_is_up && track MON |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 724 | $OSM_DEVOPS/jenkins/host/install SO $REPOSITORY $RELEASE $REPOSITORY_KEY $REPOSITORY_BASE || FATAL "SO install failed" |
| 725 | $OSM_DEVOPS/jenkins/host/install UI $REPOSITORY $RELEASE $REPOSITORY_KEY $REPOSITORY_BASE || FATAL "UI install failed" |
| 726 | #so_is_up && track SOUI |
| 727 | track SOUI |
| garciadeblas | a1fc457 | 2017-04-24 19:08:21 +0200 | [diff] [blame] | 728 | fi |
| garciadeblas | 93c6131 | 2016-09-28 15:12:48 +0200 | [diff] [blame] | 729 | |
| garciadeblas | 55490d4 | 2016-10-29 14:22:03 +0200 | [diff] [blame] | 730 | #Install iptables-persistent and configure NAT rules |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 731 | [ -z "$NOCONFIGURE" ] && nat |
| garciadeblas | 93c6131 | 2016-09-28 15:12:48 +0200 | [diff] [blame] | 732 | |
| 733 | #Configure components |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 734 | [ -z "$NOCONFIGURE" ] && configure |
| 735 | |
| 736 | #Install osmclient |
| 737 | [ -z "$NOCONFIGURE" ] && install_osmclient |
| garciadeblas | 93c6131 | 2016-09-28 15:12:48 +0200 | [diff] [blame] | 738 | |
| peusterm | 3a3e7a5 | 2017-12-22 13:10:54 +0100 | [diff] [blame] | 739 | #Install vim-emu (optional) |
| 740 | if [ -n "$INSTALL_VIMEMU" ]; then |
| 741 | echo -e "\nInstalling vim-emu ..." |
| 742 | install_vimemu |
| 743 | fi |
| 744 | |
| Mike Marchetti | b884a46 | 2017-10-05 13:28:33 -0400 | [diff] [blame] | 745 | wget -q -O- https://osm-download.etsi.org/ftp/osm-3.0-three/README2.txt &> /dev/null |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 746 | track end |
| Jokin Garay | 3eb9ce7 | 2017-03-09 14:48:11 +0100 | [diff] [blame] | 747 | echo -e "\nDONE" |
| garciadeblas | 0d934c1 | 2017-11-17 15:39:17 +0100 | [diff] [blame] | 748 | |