-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlxc-test.sh
executable file
·118 lines (93 loc) · 2.31 KB
/
lxc-test.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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#!/bin/sh -e
# Run test.sh in an LXD container.
process_args() {
script=$(readlink -f "$0")
script_path=$(dirname "${script}")
dir="ansible"
while [ "$1" ]; do
case "$1" in
"-c" | "--copy")
shift
if [ ! -d "$1" ]; then
echo "$1: not a directory"
exit 1
fi
copy="$1"
;;
"-d" | "--dir")
shift
dir="$1"
;;
"-q" | "--quiet")
quiet=1
quiet_option="--quiet"
;;
"-h" | "--help")
help=1
;;
"--")
shift
options="$*"
break
;;
*)
if [ "${container}" = "" ]; then
container="$1"
else
echo "Unknown argument: $1"
exit 1
fi
esac
shift
done
if [ "${container}" = "" ]; then
help=1
fi
}
show_help() {
if [ ! ${help} ]; then return; fi
cat <<- EOF
usage: lxc-test.sh container [argument...] -- [option...]
Arguments:
-c, --copy dir The Ansible directory to copy into the container.
-d, --dir dir The name of the Ansible directory in the container.
Passed as an option to test.sh.
Defaults to "ansible".
-q, --quiet Do not include additional log messages.
Passed as an option to test.sh if specified.
-h, --help Show this help message and exit.
EOF
"${script_path}/test.sh" | grep -A 1000 '^Options:'
exit 0
}
populate_container() {
if [ "${copy}" = "" ]; then return; fi
log "Copying Ansible directory '${copy}' to container ${container}."
"${script_path}/lxc-push.sh" \
"${copy}" \
"${container}/root/${dir}"
log "Copy into container ${container} completed."
}
test_container() {
log "Copying test.sh to container ${container}."
"${script_path}/lxc-push.sh" \
"${script_path}/test.sh" \
"${container}/root/test.sh"
log "Executing test.sh in container ${container}."
# shellcheck disable=SC2086
lxc exec "${container}" -- "/root/test.sh" \
${quiet_option} --dir "${dir}" ${options}
log "Completed test.sh in container ${container}."
}
log() {
if [ ${quiet} ]; then return; fi
echo "$@"
}
main() {
process_args "$@"
show_help
populate_container
test_container
}
main "$@"
exit 0