forked from panophobicPanda/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xen_updater.sh
executable file
·37 lines (30 loc) · 1.32 KB
/
xen_updater.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
#!/bin/bash
#
# bsmith@the408.com 2014-01-14
#
#
#This script takes two arguements, the source folder of all the updates and the xenserver you want to patch
#e.g. xen_updater.sh ~/Downloads/xen_updates 172.20.10.74
if [ $# -eq 2 ]; then
source_directory=$1
destination_directory=/var/tmp/`date -I`
destination_host=$2
#first we unzip the files
for i in `ls $source_directory/*.zip`; do unzip -n -d $source_directory $i; done
#then we copy the files to the xenserver
echo "Files will be copied to $destination_host in the directory $destination_directory"
ssh root@$destination_host "mkdir -p $destination_directory"
scp $source_directory/*.xsupdate root@$destination_host:$destination_directory/
#time to apply the patches
patches=$(ssh root@$destination_host "ls $destination_directory/*.xsupdate")
echo "patches to be applied:"
echo "$patches"
for i in $patches; do
uuid=$(ssh root@${destination_host} "/opt/xensource/bin/xe patch-upload file-name=${i} 2>&1 | grep uuid")
uuid_fixed=$(echo $uuid | awk '{print $2}')
echo "installing: $i uuid:$uuid_fixed"
ssh root@$destination_host "/opt/xensource/bin/xe patch-pool-apply uuid=${uuid_fixed} 2>&1"
done
else
echo "This script takes two arguements, the source folder of all the updates and the xenserver you want to patch \n e.g. xen_updater.sh ~/Downloads/xen_updates 172.20.10.74"
fi