blob: ba8bb9f2498823e712c225e8bf607e05b6d6e071 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
pre_upgrade() {
echo "Quitting Heimdall"
heimdall stop
}
pre_remove() {
echo "Quitting Heimdall"
heimdall stop
}
post_install() {
echo "================================================================="
echo "The Heimdall software can be launched using 'heimdall start'."
echo "Alternatively enable the 'heimdall' service to run it on startup."
echo "================================================================="
}
|