blob: df7629f5dedbcdf2760ed2e2daf6e5543889f760 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
echo "To enable automatic defenitions database updating"
echo "run: systemctl enable update-trid-defs.timer"
echo "To update the data base manually (recommended)"
echo "run: sudo update-trid-defs"
}
post_upgrade() {
post_install
}
post_remove() {
echo "Don't forget to disable update-trid-defs.timer"
}
|