13 lines
352 B
Text
13 lines
352 B
Text
#!/usr/bin/with-contenv bash
|
|
|
|
# copy config
|
|
[[ ! -e /config/config.yaml ]] && \
|
|
cp /defaults/config.yaml /config/config.yaml
|
|
[[ ! -e /config/subscriptions.yaml ]] && \
|
|
cp /defaults/subscriptions.yaml /config/subscriptions.yaml
|
|
[[ ! -d /config/examples ]] && \
|
|
cp -R /defaults/examples /config/
|
|
|
|
# permissions
|
|
chown -R abc:abc \
|
|
/config
|