10 lines
173 B
Plaintext
10 lines
173 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
export USER="mobilizon"
|
||
|
export HOME="/home/$USER"
|
||
|
|
||
|
groups="$(id -Gn "$USER" | tr ' ' ':')"
|
||
|
svdir="$HOME/service"
|
||
|
|
||
|
exec chpst -u "$USER:$groups" runsvdir "$svdir"
|