summarylogtreecommitdiffstats
path: root/install
blob: 6cfd42af998ffe9353ad64f5db2d0ff68af25e5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
post_install() {
    cat << EOF
==> Make possible settimer.sh runs under root/sudo privileges without password
     > run sudo visudo
     > Append:
Cmnd_Alias PVR_CMDS = /usr/share/kodi/addons/service.hts.pvrmanager/resources/lib/*.sh
$<kodi user> ALL=NOPASSWD: PVR_CMDS

==> Read https://github.com/Helly1206/service.hts.pvrmanager/blob/master/README.txt for more informations
EOF
}

post_upgrade() {
    post_install $1
}

op=$1
shift
$op $*