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