blob: 97bc180cd06056be91b8c2e7a558b6ff078b0ef2 (
plain)
1
2
3
4
5
6
7
8
9
|
## arg 1: the new package version
post_install() {
echo '----------------------------------------------------------------------'
echo 'Arch style is that users manually start installed services. So, issue:'
echo '$ sudo systemctl enable influxdb.service'
echo '$ sudo systemctl start influxdb.service'
echo 'And point your browser to http://(local)host:8086'
echo '----------------------------------------------------------------------'
}
|