blob: 3482d99e34194abb69c031dd6dc664ea7e199373 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | post_install() {
  gio-querymodules /usr/lib/gio/modules
  glib-compile-schemas /usr/share/glib-2.0/schemas
  killall -USR1 gvfsd >&/dev/null || :
}
post_upgrade() {
  post_install
}
post_remove() {
  gio-querymodules /usr/lib/gio/modules
  glib-compile-schemas /usr/share/glib-2.0/schemas
}
 |