blob: 5d68c9dd29ee85665aad6bcd41f4068ddb4a1b8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install () {
echo "existing config*.ini files are maintained."
# echo "If no existing config*.ini exists, it will include the src file ones."
echo "Remember to change the address in the config files to yours"
echo "find examples in /opt/nanominer/config_examples/"
}
post_upgrade() {
echo "Your config files should still be there"
}
post_remove() {
echo "config files are not removed from /opt/nanominer/"
}
|