- Remove variable validation. (not needed at the moment) - Create and Apply User permissions to Config folder
12 lines
140 B
Plaintext
12 lines
140 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
# make needed folder
|
|
mkdir -p \
|
|
/config/
|
|
|
|
# permissions
|
|
chown -R abc:abc \
|
|
/app
|
|
chown -R abc:abc \
|
|
/config
|