blob: 56fe73d25c5eca777aab1b1f2c46d43fbf4bf402 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
echo "To start the service for your current user:"
echo " systemctl --user enable --now http-remote-pc-control.service"
echo
echo "Certificates will be generated on first start and stored in:"
echo " ~/.config/http-remote-pc-control/certs"
echo
echo "Documentation: https://github.com/akoidan/http-remote-pc-control"
}
post_upgrade() {
post_install
}
|