mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-11-06 11:54:23 +00:00
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
|