forked from ports/contrib
7 lines
143 B
Plaintext
7 lines
143 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# check for vboxusers group or add one if not exists
|
||
|
/usr/bin/getent group vboxusers || /usr/sbin/groupadd vboxusers
|
||
|
|
||
|
# End of File
|