Artifact dc233ea2bca90f87b48761aeccf88fde57d1a821:
- Executable file mkdeploy/tests/checkspace/checkspace.sh — part of check-in [1f5fe87e8e] at 2013-03-27 17:30:08 on branch development — Added mkdeploy as a eat yer own dogfood megatest automation of making the deploy target (user: mrwellan, size: 236) [annotate] [blame] [check-ins using] [more...]
- Executable file mkdeploy/tests/eggs/install.sh — part of check-in [1f5fe87e8e] at 2013-03-27 17:30:08 on branch development — Added mkdeploy as a eat yer own dogfood megatest automation of making the deploy target (user: mrwellan, size: 236) [annotate] [blame] [check-ins using]
- Executable file mkdeploy/tests/helpers/install.sh — part of check-in [1f5fe87e8e] at 2013-03-27 17:30:08 on branch development — Added mkdeploy as a eat yer own dogfood megatest automation of making the deploy target (user: mrwellan, size: 236) [annotate] [blame] [check-ins using]
#!/bin/bash -e freespace=`df -k /$DIRECTORY | grep $DIRECTORY | awk '{print $4}'` if [[ $freespace -lt $REQUIRED ]];then echo "ERROR: insufficient space on /$DIRECTORY" exit 1 else echo "There is adequate space on /$DIRECTORY" fi