summarylogtreecommitdiffstats
path: root/waked.install
blob: 6e86575072ce9d57c03502a8ec563026fa866168 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
post_install()
{
    echo "Running waked post-install script..."
    systemctl enable waked --now
}

post_upgrade()
{
    echo "Running waked post-upgrade script..."
    systemctl enable waked --now
}

pre_remove()
{
    echo "Running waked pre_remove script..."
    systemctl disable waked
}