set chmod -R 777 /opt

This commit is contained in:
Aleksandr Chebotov
2020-09-21 11:18:28 +03:00
parent 2c60c78141
commit d4335cc52e
4 changed files with 50 additions and 18 deletions

View File

@@ -0,0 +1,11 @@
#!/bin/bash
################################################################################
## File: post-deployment.sh
## Desc: Post deployment actions
################################################################################
# set chmod -R 777 /opt
if [[ -d "/opt" ]]; then
echo "chmod -R 777 /opt"
chmod -R 777 /opt
fi