add flatpak group
This commit is contained in:
parent
ee9a3bdff3
commit
af75e1343e
1 changed files with 2 additions and 2 deletions
|
@ -104,7 +104,7 @@ function standartinstallation() {
|
||||||
function addusers() {
|
function addusers() {
|
||||||
# Erstelle Gruppen
|
# Erstelle Gruppen
|
||||||
groupid=1000
|
groupid=1000
|
||||||
for wort in ${user} users wheel audio input power storage video sys optical adm lp scanner sddm kvm fuse autologin network wireshark docker libvirt libvirtdbus; do
|
for wort in ${user} users wheel audio input power storage video sys optical adm lp scanner sddm kvm fuse autologin network wireshark docker libvirt libvirtdbus flatpak; do
|
||||||
if ! cat /etc/group | grep ${wort}; then
|
if ! cat /etc/group | grep ${wort}; then
|
||||||
while cat /etc/group | grep ${groupid}; do
|
while cat /etc/group | grep ${groupid}; do
|
||||||
groupid=$((${groupid} + 1))
|
groupid=$((${groupid} + 1))
|
||||||
|
@ -118,7 +118,7 @@ function addusers() {
|
||||||
useruid=$((${useruid} + 1))
|
useruid=$((${useruid} + 1))
|
||||||
done
|
done
|
||||||
|
|
||||||
useradd -m -g ${user} -G users,wheel,audio,input,power,storage,video,sys,optical,adm,lp,scanner,sddm,kvm,fuse,autologin,network,wireshark,docker,libvirt,libvirtdbus -s /usr/bin/zsh --uid ${useruid} ${user}
|
useradd -m -g ${user} -G users,wheel,audio,input,power,storage,video,sys,optical,adm,lp,scanner,sddm,kvm,fuse,autologin,network,wireshark,docker,libvirt,libvirtdbus,flatpak -s /usr/bin/zsh --uid ${useruid} ${user}
|
||||||
echo "${user}:${userpass}" | chpasswd
|
echo "${user}:${userpass}" | chpasswd
|
||||||
mkdir -p /home/${user}/
|
mkdir -p /home/${user}/
|
||||||
userrechte
|
userrechte
|
||||||
|
|
Loading…
Reference in a new issue