fix
This commit is contained in:
parent
f18a5c4139
commit
1a14e80d37
2 changed files with 18 additions and 1 deletions
|
@ -165,7 +165,21 @@ function ldconfigcache() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function addusers() {
|
function addusers() {
|
||||||
groupadd users
|
if ! cat /etc/group | grep users; then
|
||||||
|
groupadd users
|
||||||
|
fi
|
||||||
|
if ! cat /etc/group | grep wheel; then
|
||||||
|
groupadd wheel
|
||||||
|
fi
|
||||||
|
if ! cat /etc/group | grep audio; then
|
||||||
|
groupadd audio
|
||||||
|
fi
|
||||||
|
if ! cat /etc/group | grep video; then
|
||||||
|
groupadd video
|
||||||
|
fi
|
||||||
|
if ! cat /etc/group | grep optical; then
|
||||||
|
groupadd optical
|
||||||
|
fi
|
||||||
useradd -m -g users -G wheel,audio,video,sys,optical -s /bin/bash $username
|
useradd -m -g users -G wheel,audio,video,sys,optical -s /bin/bash $username
|
||||||
passwd ${username} <<EOT
|
passwd ${username} <<EOT
|
||||||
${userpass}
|
${userpass}
|
||||||
|
|
|
@ -111,6 +111,7 @@ keyutils
|
||||||
kmod
|
kmod
|
||||||
kmod-openrc
|
kmod-openrc
|
||||||
krb5
|
krb5
|
||||||
|
ldns
|
||||||
less
|
less
|
||||||
lftp
|
lftp
|
||||||
libaio
|
libaio
|
||||||
|
@ -227,6 +228,8 @@ openconnect
|
||||||
openrc
|
openrc
|
||||||
openrc-init
|
openrc-init
|
||||||
openresolv
|
openresolv
|
||||||
|
openssh
|
||||||
|
openssh-openrc
|
||||||
openssl
|
openssl
|
||||||
openssl-1.0
|
openssl-1.0
|
||||||
opensysusers
|
opensysusers
|
||||||
|
|
Loading…
Reference in a new issue