# arg 1:  the new package version
post_install() {
  cat <<EOF

For using libremakepkg /etc/libretools.conf to fit your needs.

For the scripts that can be run as normal user you can make
custom configuration by copying /etc/libretools.conf to
\$XDG_CONFIG_HOME/libretools/libretools.conf
     
You should add this to your ~/.ssh/config file:

# Parabola Host
Host parabola
   Port 22
   HostName parabolagnulinux.org
   User parabolavnx
   IdentityFile ~/.ssh/id_dsa
# End Parabola Host

Edit IdentityFile as needed.

EOF
}

## arg 1:  the new package version
## arg 2:  the old package version
post_upgrade() {
  post_install
}

# vim:set ts=2 sw=2 et: