blob: c9075604a8483633e5d24b5bf719d21f79b4ffa5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
/usr/share/aide-bin-features/patch.py aide-bin-features patch
}
pre_upgrade() {
/usr/share/aide-bin-features/patch.py aide-bin-features restore
}
post_upgrade() {
/usr/share/aide-bin-features/patch.py aide-bin-features patch
}
pre_remove() {
/usr/share/aide-bin-features/patch.py aide-bin-features restore
/usr/bin/rm -f /usr/share/aide-bin-features/cache.json
}
|