7 lines
131 B
Bash
Executable file
7 lines
131 B
Bash
Executable file
#!/bin/bash
|
|
|
|
APP=umap
|
|
id $APP &> /dev/null || useradd $APP -r -s /bin/false -md /var/lib/$APP/
|
|
chown -R $APP:$APP /var/lib/$APP/
|
|
|
|
|