summarylogtreecommitdiffstats
path: root/install
blob: ab65cb45ff959cb42757a9ef040bbf71d89edf36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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"
}