6 lines
183 B
Bash
Executable file
6 lines
183 B
Bash
Executable file
#!/bin/bash
|
|
|
|
APP=keycloak
|
|
id $APP &> /dev/null || useradd $APP -r -s /bin/false -md /var/lib/$APP/
|
|
chown -R $APP:$APP /var/lib/$APP/
|
|
chown $APP:$APP /usr/lib/keycloak/lib/quarkus -R
|