summaryrefslogtreecommitdiff
path: root/debian/nova-compute-uml.postinst
blob: 6a3506969e8a7b2e7379c2289afd0ca388d7040f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

if [ "$1" = "configure" ]; then
	if dpkg-vendor --derives-from ubuntu ; then
		adduser --quiet nova libvirtd
	else
		adduser --quiet nova libvirt
	fi
fi

#DEBHELPER#