view lightsd.install @ 25:0778fe7cee6c default tip

New upstream release 1.2.1
author Buildbot <buildbot@kalessin.fr>
date Mon, 13 Feb 2017 02:51:03 +0000
parents 3e501f670b95
children
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/lightsd/examples/lightsc.py

EOF
}

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