jobcore/filesystem/filesystem.install

12 lines
187 B
Text
Raw Normal View History

2022-03-20 13:19:37 +01:00
post_install() {
if ! getent passwd s6log >/dev/null; then
useradd -u 19 -g 19 -d / -c "S6 log user" -s /usr/bin/nologin s6log
fi
}
post_upgrade() {
post_install
}