aboutsummaryrefslogtreecommitdiff
path: root/src/cpt-install
blob: aab70ea798a6d0d866c4e68240fc2491e7a24f30 (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
#!/bin/sh
# Install a package

parser_definition() {
    setup REST help:usage -- "usage: ${0##*/} [pkg...]"
    msg -- '' 'Options:'
    flag  CPT_FORCE -f --force init:@export -- "Force installation"
    global_options
}

if [ -f ./cpt-lib ]; then . ./cpt-lib; else . cpt-lib; fi

[ "$1" ] || { set -- "${PWD##*/}"; export CPT_PATH=${PWD%/*}:$CPT_PATH ;}

[ -w "$CPT_ROOT/" ] || [ "$uid" = 0 ] || {
    as_root "$0" "$@"
    exit $?
}

pkg_order "$@"

create_cache

# 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"