mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-10 04:37:29 +00:00
netdev and admin where missing from the image after the build has been separated from CPC Co-authored-by: Didier Roche <didrocks@ubuntu.com>
11 lines
172 B
Bash
Executable File
11 lines
172 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Create the necessary groups
|
|
#
|
|
|
|
echo "Adding admin group..."
|
|
addgroup --system --quiet admin
|
|
|
|
echo "Adding netdev group..."
|
|
addgroup --system --quiet netdev
|