blob: 3b7651111e7e8efee5bc187a66ea7e95c8cac1c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
echo " ==> Add Motion to system startup wtih 'rc-update add motion default'"
echo " ==> Start Motion now with 'rc-service motion start'"
echo " ==> Edit /etc/conf.d/motion to change paths if required"
echo " ==> Motion will run as *root* by default - not recommended"
}
post_upgrade() {
post_install "$1"
}
pre_remove() {
echo " ==> Make sure to 'rc-update del motion default'"
}
|