Skip to content
Snippets Groups Projects
Commit fd7c2bb0 authored by Guido Günther's avatar Guido Günther
Browse files

Skip any debconf prompting if user and group are already there

to not interfere with existing intallations
parent f4b33d07
No related branches found
No related tags found
No related merge requests found
libvirt (2.4.0-2uidgid3) UNRELEASED; urgency=medium
libvirt (2.5.0-2~) unstable; urgency=medium
libvirt-daemon-system now uses the allocated uid and gid 64055
for the libvirt-qemu user and group on new installations, when
......
#!/bin/sh -e
# Only perform this check/warning if the libvirt user groups aren't there
# already
if getent passwd libvirt-qemu >/dev/null \
&& getent group libvirt-qemu >/dev/null; then
exit 0
fi
# Source debconf library.
. /usr/share/debconf/confmodule
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment