| #!/bin/bash |
| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you 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. |
| set -x |
| PATH="/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin" |
| |
| # Clear boot up flag, it would be created by rc.local after boot up done |
| mkdir -p /var/cache/cloud |
| rm -f /var/cache/cloud/boot_up_done |
| |
| [ -x /sbin/ifup ] || exit 0 |
| |
| . /lib/lsb/init-functions |
| |
| log_it() { |
| echo "$(date) $@" >> /var/log/cloud.log |
| log_action_msg "$@" |
| } |
| |
| validate_checksums() { |
| local oldchecksum= |
| [ -f ${1} ] && oldchecksum=$(cat ${1}) |
| local newchecksum= |
| [ -f ${2} ] && newchecksum=$(sha512sum ${2} | awk '{print $1}') |
| log_it "Scripts checksum detected: oldchecksum=$oldchecksum newchecksum=$newchecksum" >> /dev/null 2>&1 |
| echo "oldchecksum='${oldchecksum}'; newchecksum='${newchecksum}'" |
| } |
| |
| patch() { |
| local PATCH_MOUNT=/var/cache/cloud |
| local PATCH_SCRIPTS=cloud-scripts.tgz |
| local oldpatchfile=/usr/share/cloud/$PATCH_SCRIPTS |
| local patchfile=$PATCH_MOUNT/$PATCH_SCRIPTS |
| local privkey=$PATCH_MOUNT/authorized_keys |
| local checksumfile=/var/cache/cloud/cloud-scripts-signature |
| mkdir -p $PATCH_MOUNT |
| |
| if [ -f /var/cache/cloud/authorized_keys ]; then |
| privkey=/var/cache/cloud/authorized_keys |
| fi |
| |
| eval $(validate_checksums $checksumfile $oldpatchfile) |
| if [ "$oldchecksum" == "$newchecksum" ] && [ -d /usr/local/cloud/systemvm ] && [ "$(ls -A /usr/local/cloud/systemvm)" ]; then |
| log_it "Checksum matches, no need to patch" |
| return 0 |
| fi |
| |
| CMDLINE=/var/cache/cloud/cmdline |
| export TYPE=$(grep -Po 'type=\K[a-zA-Z]*' $CMDLINE) |
| retry=60 |
| local patched=false |
| if [ "$TYPE" != "cksnode" ] && [ "$TYPE" != "sharedfsvm" ]; then |
| while [ $retry -gt 0 ] |
| do |
| if tar tf $patchfile &> /dev/null; then |
| eval $(validate_checksums $checksumfile $patchfile) |
| if [ "$oldchecksum" != "$newchecksum" ] && [ -f ${patchfile} ] && [ "$newchecksum" != "" ] |
| then |
| tar xzf $patchfile -C / |
| echo ${newchecksum} > ${checksumfile} |
| log_it "Patched scripts using $patchfile" |
| touch /var/cache/cloud/patch.required |
| fi |
| |
| if [ -f $privkey ]; then |
| cp -f $privkey /root/.ssh/ |
| chmod go-rwx /root/.ssh/authorized_keys |
| fi |
| patched=true |
| break |
| fi |
| |
| sleep 2 |
| retry=$(($retry-1)) |
| log_it "Could not find patch file, retrying" |
| done |
| |
| if [ $retry -eq 0 ] && [ "$patched" == "false" ]; then |
| return 2 |
| fi |
| return 0 |
| fi |
| } |
| |
| cleanup() { |
| rm -rf /var/cache/cloud/agent.zip |
| mv /var/cache/cloud/cloud-scripts.tgz /usr/share/cloud/cloud-scripts.tgz |
| |
| CMDLINE=/var/cache/cloud/cmdline |
| export TYPE=$(grep -Po 'type=\K[a-zA-Z]*' $CMDLINE) |
| if [ "$TYPE" != "consoleproxy" ] && [ "$TYPE" != "secstorage" ]; then |
| rm -rf /usr/local/cloud/systemvm/ |
| fi |
| } |
| |
| start() { |
| log_it "Executing cloud-early-config" |
| |
| # Clear /tmp for file lock |
| rm -f /tmp/*.lock |
| rm -f /tmp/rrouter_bumped |
| rm -f /root/.rnd |
| echo "" > /root/.ssh/known_hosts |
| |
| if which growpart > /dev/null; then |
| ROOT_MOUNT_POINT=$(df -h / | tail -n 1 | cut -d' ' -f1) |
| ROOT_DISK=$(echo $ROOT_MOUNT_POINT | sed 's/[0-9]*$//g') |
| growpart $ROOT_DISK 2 |
| growpart $ROOT_DISK 6 |
| resize2fs $ROOT_MOUNT_POINT |
| fi |
| |
| patch |
| sync |
| /opt/cloud/bin/setup/bootstrap.sh |
| cleanup |
| |
| log_it "Finished setting up systemvm" |
| exit 0 |
| } |
| |
| start |