mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 14:52:19 +01:00
8 lines
198 B
Bash
Executable File
8 lines
198 B
Bash
Executable File
#!/bin/sh
|
|
|
|
getent group colord || /usr/sbin/groupadd -r colord
|
|
|
|
getent passwd colord || /usr/sbin/useradd -g colord -r -d /var/empty -s /bin/false -c "colord User" colord
|
|
|
|
/usr/bin/passwd -l colord
|