~ubuntu-branches/ubuntu/saucy/maas/saucy-updates

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e

add_user_group(){
	local user="maas"
	local group="maas"
	addgroup --quiet --system "$group" || true
	adduser --quiet --system --group --no-create-home "$user" || true
}

add_user_group

#DEBHELPER#