Files
runner-images/images/linux/scripts/installers/post-deployment.sh
Aleksandr Chebotov d4335cc52e set chmod -R 777 /opt
2020-09-21 11:18:28 +03:00

12 lines
341 B
Bash

#!/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