Skip to content

Commit

Permalink
patch provisioner
Browse files Browse the repository at this point in the history
  • Loading branch information
mchyzer committed Oct 3, 2022
1 parent 2e215d8 commit 64e1a4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ returnCode=$?
echo "grouperDockerfile; INFO: (containerDockerfileInstall.sh) mkdir -p /opt/grouper/logs/, result: $returnCode"
if [ $returnCode != 0 ]; then exit $returnCode; fi

chown tomcat.root /opt/grouper/logs/
chown -R tomcat.root /opt/grouper/logs/
returnCode=$?
echo "grouperDockerfile; INFO: (containerDockerfileInstall.sh) chown tomcat.root /opt/grouper/logs/, result: $returnCode"
if [ $returnCode != 0 ]; then exit $returnCode; fi

chmod g+rwxs /opt/grouper/logs/
chmod -R g+rwxs /opt/grouper/logs/
returnCode=$?
echo "grouperDockerfile; INFO: (containerDockerfileInstall.sh) chmod g+rwxs /opt/grouper/logs/, result: $returnCode"
if [ $returnCode != 0 ]; then exit $returnCode; fi
Expand Down

0 comments on commit 64e1a4a

Please sign in to comment.