comparison lightsd.install @ 4:5cc2087b8737

lightsd 0.9.2 lightsd now know how to drop privileges, so let's create an user/group for it. This allows us to integrate more nicely with systemd.
author Louis Opter <kalessin@kalessin.fr>
date Sun, 13 Sep 2015 18:38:36 -0700
parents
children 3e501f670b95
comparison
equal deleted inserted replaced
3:6bd6e467bb66 4:5cc2087b8737
1 post_install() {
2 getent group lightsd >/dev/null || groupadd -r lightsd
3 getent passwd lightsd >/dev/null || useradd -r -d / -g lightsd lightsd
4
5 cat << 'EOF'
6
7 lightsd runs under the `lightsd' user and group by default; add yourself to
8 this group to be able to open lightsd's socket and pipe under /run/lightsd:
9
10 gpasswd -a $USER lightsd
11
12 Re-open your current desktop or ssh session for the change to take effect.
13 Then use systemctl to start lightsd; you can start playing with lightsd with:
14
15 `lightsd --prefix`/share/doc/lightsd/examples/lightsc.py
16
17 EOF
18 }
19
20 post_remove() {
21 getent passwd lightsd >/dev/null && userdel lightsd
22 }