mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-11 09:04:54 +00:00
container: Fix upgrading of freedombox
On a development container, we are currently changing the plinth user to be a non-system user to allow folder sharing with the host. This leads to `addgroup --system` and `adduser --system` failing when a non-system user/group already exists. This patch added checks to ensure that plinth user and group don't exist before trying to add them. Several packages in Debian seem to be doing similar checks before running adduser and addgroup. So, this patch is not bad to have even when container hack is not present. Closes: #1875. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
parent
2d1ced84cd
commit
966ceb5871
10
debian/freedombox.postinst
vendored
10
debian/freedombox.postinst
vendored
@ -16,8 +16,14 @@ sed -i 's+-:ALL EXCEPT root fbx (admin) (sudo):ALL+-:ALL EXCEPT root fbx plinth
|
||||
|
||||
case "$1" in
|
||||
configure)
|
||||
addgroup --system --quiet plinth
|
||||
adduser --system --quiet --ingroup plinth --no-create-home --home /var/lib/plinth plinth
|
||||
if ! getent group plinth >/dev/null; then
|
||||
addgroup --system --quiet plinth
|
||||
fi
|
||||
|
||||
if ! getent passwd plinth >/dev/null; then
|
||||
adduser --system --quiet --ingroup plinth --no-create-home --home /var/lib/plinth plinth
|
||||
fi
|
||||
|
||||
chown plinth: /var/lib/plinth
|
||||
chown plinth: /var/lib/plinth/sessions
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user