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