if [ ! -L /var/lib/dbus/machine-id ]; then
	echo "Your system seems to have no D-Bus machine-id or have a"
	echo "dedicated machine-id file for D-Bus that is not shared with"
	echo "systemd. This is not necessary at all."
	echo "Force /var/lib/dbus/machine-id to be a symlink."
	ln -sfv /etc/machine-id /var/lib/dbus/machine-id
fi

echo "Setting up dbus group and user ..."
if command -v systemd-sysusers > /dev/null; then
	systemd-sysusers dbus.conf
fi
