summarylogtreecommitdiffstats
path: root/install
blob: 29fc8a2e4c06b50c0c2081728cba61b1c7e916c7 (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
#!/bin/bash

message='NOTE: If stanza fails with the error message

    Could not locate .stanza configuration file.

then run the command (NOT AS ROOT!)

    $ cd /opt/stanza && stanza install -platform linux

to generate ~/.stanza. The command must be run with current directory 
/opt/stanza, or else it will fail with the error message

    Could not determine Stanza installation directory.'

# arg 1:  the new package version
post_install() {
    echo "$message"
}

# arg 1:  the new package version
# arg 2:  the old package version
post_upgrade() {
    echo "$message"
}