blob: 00199e069f5a94e939d8106a6d746e6156cd43ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
echo '==> Witryna has been installed.'
echo ' 1. Edit /etc/witryna/witryna.toml'
echo ' 2. Configure your container runtime:'
echo ' Podman: cp /usr/share/doc/witryna/examples/systemd/podman.conf \'
echo ' /etc/systemd/system/witryna.service.d/10-runtime.conf'
echo ' Docker: cp /usr/share/doc/witryna/examples/systemd/docker.conf \'
echo ' /etc/systemd/system/witryna.service.d/10-runtime.conf'
echo ' 3. systemctl daemon-reload && systemctl enable --now witryna'
echo ' See man witryna(1) and man witryna.toml(5) for documentation.'
}
post_upgrade() {
:
}
|