5 lines
177 B
Bash
Executable file
5 lines
177 B
Bash
Executable file
#!/bin/bash
|
|
|
|
id authelia &> /dev/null || useradd authelia -r -s /bin/false
|
|
|
|
systemctl | grep authelia | grep -q running && systemctl daemon-reload && systemctl restart authelia
|