summarylogtreecommitdiffstats
path: root/bonita-bpm-community.install
blob: 8a64c7f409baed10d40347500ce95da9271656aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
conf_note() {
  printf '%s\n' \
    'All current and previous configuration and diagram history in' \
    '  $XDG_CONFIG_HOME/bonitasoft/ and' \
    '  $XDG_DATA_HOME/bonitasoft/' \
    'is considered frozen. Default configuration and empty history' \
    'in newly created directories is used instead.'
}

post_install() {
  update-desktop-database -q
  conf_note
}

post_upgrade() {
  update-desktop-database -q
  conf_note
}

post_remove() {
  update-desktop-database -q
}