summarylogtreecommitdiffstats
path: root/whoogle.install
blob: e590a4bdb6282428b73bfdca9c323e42d661088b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
post_install() {
    systemctl enable --now whoogle
    echo ""
    echo "Enabled the Whoogle systemd service."
    echo "Visit localhost:5000 to start searching!"
    echo ""
}

post_upgrade() {
    systemctl daemon-reload
    systemctl restart whoogle
    echo "Restarted Whoogle systemd service."
}