summarylogtreecommitdiffstats
path: root/cewe-fotobuch.install
blob: c00b3fc966ef1835492f5d46b568f1f11a9b22c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
post_install() {
  echo '--------------------------------------------------'
  echo 'You *MUST* read and agree to the license stored in'
  echo '/usr/share/cewe-fotobuch/EULA.txt before'
  echo 'you start using it'
  echo '--------------------------------------------------'

  update-mime-database /usr/share/mime &> /dev/null
  update-desktop-database &> /dev/null
  /bin/true
}

post_upgrade() {
  update-mime-database /usr/share/mime &> /dev/null
  update-desktop-database &> /dev/null
/bin/true
}

pre_remove() {
/bin/true
}

post_remove() {
  update-mime-database /usr/share/mime &> /dev/null
  update-desktop-database &> /dev/null
  /bin/true
}