view lightsd.install @ 15:edf5186c502b

New upstream release 1.2.0-rc.3
author Buildbot <buildbot@kalessin.fr>
date Sun, 03 Jul 2016 06:01:33 +0000
parents 5cc2087b8737
children 3e501f670b95
line wrap: on
line source

post_install() {
    getent group lightsd >/dev/null || groupadd -r lightsd
    getent passwd lightsd >/dev/null || useradd -r -d / -g lightsd lightsd

    cat << 'EOF'

lightsd runs under the `lightsd' user and group by default; add yourself to
this group to be able to open lightsd's socket and pipe under /run/lightsd:

  gpasswd -a $USER lightsd

Re-open your current desktop or ssh session for the change to take effect.
Then use systemctl to start lightsd; you can start playing with lightsd with:

  `lightsd --prefix`/share/doc/lightsd/examples/lightsc.py

EOF
}

post_remove() {
    getent passwd lightsd >/dev/null && userdel lightsd
}