blob: d99bfa61dc051028b7abff34933bc1d946d2be2b (
plain)
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/sh
# Install a package
# shellcheck disable=1091
if command -v cpt-lib >/dev/null; then . cpt-lib; else . ../lib.sh; fi
while [ "$1" ]; do
case "$1" in
--help|-h)
out "usage: ${0##*/} [options] [pkg...]" "" \
" Options:" \
" --force Force installation" \
" --root [rootdir] Use an alternate root directory"
exit 1
;;
--version|-v) version ;;
--force) export CPT_FORCE=1 ;;
--root) export CPT_ROOT=$2; shift 2 ;;
--) break ;;
-*) die "Unknown argument '$1'" ;;
*) break ;;
esac
done
[ "$1" ] || set -- "${PWD##*/}"; export CPT_PATH=${PWD%/*}:$CPT_PATH
[ -w "$CPT_ROOT/" ] || [ "$uid" = 0 ] || {
as_root "$0" "$@"
exit $?
}
pkg_order "$@"
# shellcheck disable=2154
for pkg in $order; do pkg_install "$pkg"; done
# After installation is complete, show a list of messages from packages.
log "Retrieving post-installation message queue"
unset msg
for pkg in $order; do
[ -f "$sys_db/$pkg/message" ] && {
printf '%s\n%s\n%s\n\n' \
"=======================================" \
"$pkg" \
"======================================="
cat "$sys_db/$pkg/message" >&2
msg=1
}
done
[ "$msg" ] || log "No message in queue"
|