Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions releases/latest/beta/helpers/build/checkpoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,13 @@ done
echo "Performing checkpoint --at=$1"
/opt/ol/wlp/bin/server checkpoint defaultServer --at=$1

# Find all directories in logs/ and output/ that the current user has read/write/execute permissions for
# and give the same permissions to the group.
find -L /logs /output -type d -readable -writable -executable -exec chmod g+rwx {} \;

# Find all files in logs/ and output/ that the current user has read/write permissions for
# and give the same permissions to the group.
find -L /logs /output -type f -readable -writable -exec chmod g+rw {} \;

rc=$?
exit $rc
8 changes: 8 additions & 0 deletions releases/latest/full/helpers/build/checkpoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,13 @@ done
echo "Performing checkpoint --at=$1"
/opt/ol/wlp/bin/server checkpoint defaultServer --at=$1

# Find all directories in logs/ and output/ that the current user has read/write/execute permissions for
# and give the same permissions to the group.
find -L /logs /output -type d -readable -writable -executable -exec chmod g+rwx {} \;

# Find all files in logs/ and output/ that the current user has read/write permissions for
# and give the same permissions to the group.
find -L /logs /output -type f -readable -writable -exec chmod g+rw {} \;

rc=$?
exit $rc
8 changes: 8 additions & 0 deletions releases/latest/kernel-slim/helpers/build/checkpoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,13 @@ done
echo "Performing checkpoint --at=$1"
/opt/ol/wlp/bin/server checkpoint defaultServer --at=$1

# Find all directories in logs/ and output/ that the current user has read/write/execute permissions for
# and give the same permissions to the group.
find -L /logs /output -type d -readable -writable -executable -exec chmod g+rwx {} \;

# Find all files in logs/ and output/ that the current user has read/write permissions for
# and give the same permissions to the group.
find -L /logs /output -type f -readable -writable -exec chmod g+rw {} \;

rc=$?
exit $rc