need to make run service files executable

This commit is contained in:
alex-phillips 2019-05-15 10:14:09 -04:00
parent bd1b8c94ed
commit 51cd8d1671

View file

@ -22,6 +22,7 @@ if [ -e "${SERVICES_DIR}" ] && \
for SERVICE in ${SERVICES_DIR}/*; do
echo "[custom-init] ${SERVICE}: copying..."
cp -r ${SERVICE} /etc/services.d/
chmod +x /etc/services.d/${SERVICE}/run
echo "[custom-init] ${SERVICE}: done"
done
else