mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-10 04:37:29 +00:00
18 lines
383 B
Bash
Executable File
18 lines
383 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Create the necessary users and set their passwords. If needed,
|
|
# make sure they belong to the proper groups
|
|
#
|
|
# Author: Ben Howard <ben.howard@canonical.com>
|
|
# Date: 29 Jun 2011
|
|
#
|
|
|
|
echo "Adding admin group..."
|
|
addgroup --system --quiet admin
|
|
|
|
echo "Adding netdev group..."
|
|
addgroup --system --quiet netdev
|
|
|
|
echo "Adding lxd group..."
|
|
addgroup --system --quiet lxd
|