Skip to content

Commit

Permalink
fix retention policy
Browse files Browse the repository at this point in the history
  • Loading branch information
aarz-snl committed Dec 13, 2023
1 parent 6fc5be5 commit 8f7abae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Chapter 3 Files/unattended_deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ function data_retention() {
if [ "$DISK_80" -lt 30 ]; then
echo -e "\e[31m[!]\e[0m LME Requires 128GB of space usable for log retention - exiting"
exit 1
elif [ "$DISK_80" -ge 90 ] && [ "$DISK_80" -le 179 ]; then
elif [ "$DISK_80" -ge 30 ] && [ "$DISK_80" -le 179 ]; then
RETENTION="30"
elif [ "$DISK_80" -ge 180 ] && [ "$DISK_80" -le 359 ]; then
RETENTION="90"
Expand Down

0 comments on commit 8f7abae

Please sign in to comment.