Created
March 23, 2016 13:36
-
-
Save iversond/b2ae4a4d1cb090d0167a to your computer and use it in GitHub Desktop.
Change the DPK Disk Space Requirements
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function check_filesystem() { | |
# ------------------- | |
# Removed Excess Code | |
# ------------------- | |
ElseIf ("${global:env_type}" -eq "dbtier") { | |
check_disk_space "${disk_drive}" 75 "Checking if Folder ${global:psft_base_dir} has Enough Space" | |
} | |
Else { | |
# Change the value in this line to adjust the disk space requirements | |
check_disk_space "${disk_drive}" 80 "Checking if Folder ${global:psft_base_dir} has Enough Space" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment