summarylogtreecommitdiffstats
path: root/catch-my-bus-python.install
blob: ba32eb07b0700cf6f8164803efe2de0aa56f50c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
post_install() {
  _installdir="/etc/catch-my-bus-python"
  _configfiles=('stop_list' 'standard_config')
  printf '%s\n' "Please Note!:"
  printf '%s\n' "  Configuration is only possible via global configuration files."
  printf '%s\n' "  Please edit the following files to your needs:"
  for _config_file in "${_configfiles[@]}"; do
    printf '%s\n' "    ${_installdir}/${_config_file}"
  done
  printf '%s\n' "  See also https://github.com/meepoSenpai/catch-my-bus-python."
}

post_upgrade() {
  post_install "$1"
}