-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlxd-upgrade-all
executable file
·76 lines (69 loc) · 1.28 KB
/
lxd-upgrade-all
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
#!/usr/bin/env bash
_apt="/usr/bin/apt"
_lxc="/usr/bin/lxc"
_awk="/usr/bin/awk"
for i in "$@"
do
case $i in
-e=*|--exclude=*)
EXCLUDE_LIST="${i#*=}"
shift
;;
-y)
YES=-y
shift
;;
-s)
HOST=true
shift
;;
-c)
CHECK=true
shift
;;
*)
echo LXD container upgrade script.
echo -y : always pass yes to upgrade command
echo -e=### : exclude comma-separated container names
echo -s : self / update host system
echo -c : check only / list upgradable packages
exit 0
;;
esac
done
if [ "$HOST" = true ] ; then
echo
echo
echo fetching host system package data..
if [ "$CHECK" != true ] ; then
echo
echo
echo upgrading host system..
apt -qq $YES full-upgrade
apt -qq $YES autoremove
else
echo
echo
echo checking available host system updates..
apt list --upgradable
fi
fi
echo
echo
echo fetching package data..
lxd-exec-all -e=$EXCLUDE_LIST apt -qq $YES update &>/dev/null
if [ "$CHECK" != true ] ; then
echo
echo
echo upgrading containers..
lxd-exec-all -e=$EXCLUDE_LIST apt -qq $YES full-upgrade
echo
echo
echo cleaning containers..
lxd-exec-all -e=$EXCLUDE_LIST apt -qq $YES autoremove
else
echo
echo
echo checking available upgrades..
lxd-exec-all -e=$EXCLUDE_LIST apt list --upgradable
fi