blob: 9e2be02e41d0e47d6848ca8f8d0e4df2c2d09451 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_upgrade() {
echo "Example file installed on:"
echo "/usr/share/backup-conf/backup-conf.conf.example"
echo "Create a file with your files/directories"
echo "and copy to one of the valid config paths:"
echo "${XDG_CONFIG_HOME:-~/.config}/backup-conf.conf"
echo "/etc/backup-conf.conf"
}
post_install() {
post_upgrade
}
|