summarylogtreecommitdiffstats
path: root/bonita-bpm-community.install
blob: c70bc474fd5cb4d662cbf51a3e7b1f40302812b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
conf_note() {
  printf '%s\n' \
    'The previous Bonita BPM versioned configuration and diagram history in' \
    '    $XDG_CONFIG_HOME/bonitasoft/' \
    'and' \
    '    $XDG_DATA_HOME/bonitasoft/' \
    'will be left intact by this newly installed Bonita BPM version, which' \
    "uses it's own versioned directories instead (next to the previous ones)."
}

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

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

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