Thomas Vachuska | 5f54c6f | 2016-05-04 19:19:51 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # ----------------------------------------------------------------------------- |
| 3 | # Runs ONOS from distributable onos.tar.gz |
| 4 | # ----------------------------------------------------------------------------- |
| 5 | |
| 6 | ONOS_TAR= |
| 7 | |
| 8 | cd /tmp |
| 9 | |
| 10 | # Kill any running instances |
| 11 | [ -f /tmp/onos.pid ] && kill -9 $(cat /tmp/onos.pid) &>/dev/null |
| 12 | |
Thomas Vachuska | e4abf5b2 | 2016-08-15 14:04:46 -0700 | [diff] [blame] | 13 | ONOS_DIR=$(tar tf $ONOS_TAR | head -n 1 | cut -d/ -f1) |
Thomas Vachuska | a3029cf | 2016-08-23 16:47:46 -0700 | [diff] [blame] | 14 | ONOS_MD5=$ONOS_DIR/CHECKSUM |
Thomas Vachuska | 5f54c6f | 2016-05-04 19:19:51 -0700 | [diff] [blame] | 15 | |
Thomas Vachuska | a3029cf | 2016-08-23 16:47:46 -0700 | [diff] [blame] | 16 | # Extract MD5 of the ONOS tar file and of the previous installation, if one exists |
Ray Milkey | 2fa4f18 | 2016-11-07 10:14:10 -0800 | [diff] [blame] | 17 | md5cmd='' |
Ray Milkey | 0bb987e | 2016-11-11 15:02:51 -0800 | [diff] [blame] | 18 | md5cmdprm='' |
Ray Milkey | 2fa4f18 | 2016-11-07 10:14:10 -0800 | [diff] [blame] | 19 | case "$OSTYPE" in |
Ray Milkey | 0bb987e | 2016-11-11 15:02:51 -0800 | [diff] [blame] | 20 | darwin*) md5cmd='md5' ; md5cmdprm='-q' ;; |
| 21 | *) md5cmd='md5sum';; |
Ray Milkey | 2fa4f18 | 2016-11-07 10:14:10 -0800 | [diff] [blame] | 22 | esac |
| 23 | |
Thomas Vachuska | a3029cf | 2016-08-23 16:47:46 -0700 | [diff] [blame] | 24 | oldMD5=$(cat $ONOS_MD5 2>/dev/null) |
Ray Milkey | 0bb987e | 2016-11-11 15:02:51 -0800 | [diff] [blame] | 25 | newMD5=$(${md5cmd} ${md5cmdprm} $ONOS_TAR) |
Thomas Vachuska | a3029cf | 2016-08-23 16:47:46 -0700 | [diff] [blame] | 26 | |
| 27 | # Search for the "clean" argument anywhere on the command-line |
| 28 | echo "$@" | egrep -q "\bclean\b" && clean=true || unset clean |
| 29 | |
| 30 | set -e # Do not tolerate any errors from this point onward |
| 31 | |
| 32 | # If the previous installation does not exist, or if the ONOS tar changed, |
| 33 | # or if the user asked for clean run, start from scratch. |
Thomas Vachuska | 9152b15 | 2016-08-24 14:05:09 -0700 | [diff] [blame] | 34 | if [ ! -d $ONOS_DIR -o "$oldMD5" != "$newMD5" -o -d $ONOS_DIR -a -n "$clean" ]; then |
Thomas Vachuska | a3029cf | 2016-08-23 16:47:46 -0700 | [diff] [blame] | 35 | echo "Running clean installation..." |
| 36 | |
Thomas Vachuska | e4abf5b2 | 2016-08-15 14:04:46 -0700 | [diff] [blame] | 37 | # Blitz previously unrolled onos- directory |
| 38 | rm -fr $ONOS_DIR |
Thomas Vachuska | 5f54c6f | 2016-05-04 19:19:51 -0700 | [diff] [blame] | 39 | |
Thomas Vachuska | e4abf5b2 | 2016-08-15 14:04:46 -0700 | [diff] [blame] | 40 | # Unroll new image from the specified tar file |
| 41 | [ -f $ONOS_TAR ] && tar zxf $ONOS_TAR |
Thomas Vachuska | 5f54c6f | 2016-05-04 19:19:51 -0700 | [diff] [blame] | 42 | |
Thomas Vachuska | a3029cf | 2016-08-23 16:47:46 -0700 | [diff] [blame] | 43 | # Write out this installation's MD5 checksum |
| 44 | echo "$newMD5" > $ONOS_MD5 |
| 45 | |
Thomas Vachuska | e4abf5b2 | 2016-08-15 14:04:46 -0700 | [diff] [blame] | 46 | # Change into the ONOS home directory |
| 47 | cd $ONOS_DIR |
| 48 | export ONOS_HOME=$PWD |
Thomas Vachuska | 5f54c6f | 2016-05-04 19:19:51 -0700 | [diff] [blame] | 49 | |
Thomas Vachuska | 397befc | 2016-11-17 12:41:19 -0800 | [diff] [blame] | 50 | # Run using the secure SSH client |
Thomas Vachuska | 397befc | 2016-11-17 12:41:19 -0800 | [diff] [blame] | 51 | [ ! -f ~/.ssh/id_rsa.pub ] && ssh-keygen -t rsa -f ~/.ssh/id_rsa -P '' -q |
| 52 | $ONOS_HOME/bin/onos-user-key $(id -un) "$(cut -d\ -f2 ~/.ssh/id_rsa.pub)" |
Thomas Vachuska | 5af2e4f | 2016-12-16 12:07:33 -0800 | [diff] [blame] | 53 | $ONOS_HOME/bin/onos-user-password onos rocks |
Thomas Vachuska | e4abf5b2 | 2016-08-15 14:04:46 -0700 | [diff] [blame] | 54 | |
| 55 | # Create config/cluster.json (cluster metadata) |
| 56 | IP=${ONOS_IP:-127.0.0.1} |
| 57 | echo "Creating local cluster configs for IP $IP..." |
| 58 | [ -d $ONOS_HOME/config ] || mkdir -p $ONOS_HOME/config |
| 59 | cat > $ONOS_HOME/config/cluster.json <<-EOF |
| 60 | { |
| 61 | "name": "default", |
| 62 | "nodes": [ {"id": "$IP", "ip": "$IP", "port": 9876 } ], |
| 63 | "partitions": [ { "id": 1, "members": [ "$IP" ] } ] |
| 64 | } |
Madan Jampani | 590160a | 2016-06-14 16:49:44 -0700 | [diff] [blame] | 65 | EOF |
Thomas Vachuska | a3029cf | 2016-08-23 16:47:46 -0700 | [diff] [blame] | 66 | |
Thomas Vachuska | e4abf5b2 | 2016-08-15 14:04:46 -0700 | [diff] [blame] | 67 | else |
Thomas Vachuska | a3029cf | 2016-08-23 16:47:46 -0700 | [diff] [blame] | 68 | # Otherwise, run using the previous installation |
| 69 | echo "Running previous installation..." |
| 70 | |
Thomas Vachuska | e4abf5b2 | 2016-08-15 14:04:46 -0700 | [diff] [blame] | 71 | # Change into the ONOS home directory |
| 72 | cd $ONOS_DIR |
| 73 | export ONOS_HOME=$PWD |
| 74 | fi |
Madan Jampani | 590160a | 2016-06-14 16:49:44 -0700 | [diff] [blame] | 75 | |
Thomas Vachuska | 5f54c6f | 2016-05-04 19:19:51 -0700 | [diff] [blame] | 76 | # Start ONOS as a server, but include any specified options |
| 77 | ./bin/onos-service server "$@" &>onos.log & |
| 78 | echo "$!" > /tmp/onos.pid |
| 79 | |
Thomas Vachuska | fdb4755 | 2016-11-17 13:31:57 -0800 | [diff] [blame] | 80 | function killServer() { |
| 81 | echo "Killing ONOS server..." |
Thomas Vachuska | 5af2e4f | 2016-12-16 12:07:33 -0800 | [diff] [blame] | 82 | cat /tmp/onos.pid | xargs kill -9 |
Thomas Vachuska | fdb4755 | 2016-11-17 13:31:57 -0800 | [diff] [blame] | 83 | } |
| 84 | |
Thomas Vachuska | 5f54c6f | 2016-05-04 19:19:51 -0700 | [diff] [blame] | 85 | # Hang-on a bit and then start tailing the ONOS log output |
Charles Chan | 7cad325 | 2016-11-16 10:41:07 -0800 | [diff] [blame] | 86 | MAX_RETRY=30 |
Charles Chan | f9335af | 2016-05-05 21:05:47 -0700 | [diff] [blame] | 87 | echo "Waiting for karaf.log" |
Charles Chan | 7cad325 | 2016-11-16 10:41:07 -0800 | [diff] [blame] | 88 | until [ $MAX_RETRY -le 0 ]; do |
Charles Chan | f9335af | 2016-05-05 21:05:47 -0700 | [diff] [blame] | 89 | KARAF_LOG=$(find $ONOS_HOME -type f -name karaf.log) |
| 90 | if [ $KARAF_LOG ]; then |
Thomas Vachuska | fdb4755 | 2016-11-17 13:31:57 -0800 | [diff] [blame] | 91 | trap killServer INT |
Charles Chan | f9335af | 2016-05-05 21:05:47 -0700 | [diff] [blame] | 92 | tail -f $KARAF_LOG |
| 93 | return |
| 94 | fi |
Charles Chan | 7cad325 | 2016-11-16 10:41:07 -0800 | [diff] [blame] | 95 | MAX_RETRY=$[$MAX_RETRY-1] |
Charles Chan | f9335af | 2016-05-05 21:05:47 -0700 | [diff] [blame] | 96 | sleep 1 |
| 97 | done |
Madan Jampani | 590160a | 2016-06-14 16:49:44 -0700 | [diff] [blame] | 98 | echo "Fail to open karaf.log" |
Thomas Vachuska | fdb4755 | 2016-11-17 13:31:57 -0800 | [diff] [blame] | 99 | killServer |