-
Notifications
You must be signed in to change notification settings - Fork 34
/
manage.sh
executable file
·51 lines (46 loc) · 980 Bytes
/
manage.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
#!/bin/bash
set -eu
OPTION=${1:-help}
source libs/console.sh
case ${OPTION} in
help)
cat << EOM
Usage: ./manage.sh <option> [arguments]
Available options:
help - this screen
metadata - print out details about meta
container - manage a docker container
builder - manage a build
client - manage a client
server - manage a server
EOM
;;
metadata)
shift
info "Portable-Ansible version: ${VERSION}"
info "Tagball: ${TARBALL}"
;;
container)
shift
./libs/container.sh $@
;;
builder)
shift
./libs/builder.sh $@
;;
client)
shift
./libs/client.sh $@
;;
server)
shift
./libs/server.sh $@
;;
*)
if [ ! "$@" ]; then
warning "No arguments specified, use help for more details"
else
exec "$@"
fi
;;
esac