This repository has been archived on 2024-11-21. You can view files and clone it, but cannot push or open issues or pull requests.
|
#!/bin/sh
|
|
|
|
export USER="<U>"
|
|
export HOME="/home/<U>"
|
|
|
|
groups="$(id -Gn "$USER" | tr ' ' ':')"
|
|
svdir="$HOME/.local/sv/"
|
|
|
|
exec chpst -u "$USER:$groups" runsvdir "$svdir"
|