mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-10 04:37:29 +00:00
11 lines
172 B
Plaintext
11 lines
172 B
Plaintext
|
#!/bin/bash
|
||
|
#
|
||
|
# Create the necessary groups
|
||
|
#
|
||
|
|
||
|
echo "Adding admin group..."
|
||
|
addgroup --system --quiet admin
|
||
|
|
||
|
echo "Adding netdev group..."
|
||
|
addgroup --system --quiet netdev
|