fixing typo in cloud-prep.sh script

This commit is contained in:
Matthew Thode 2016-01-26 00:43:53 -06:00
parent 06359b3c67
commit b3244cc22d
No known key found for this signature in database
GPG key ID: 64A37BEAAE19A4E8

View file

@ -75,7 +75,7 @@ for i in $(find /var/log -type f); do truncate -s 0 $i; done
find /usr/share/man/ -mindepth 1 -maxdepth 1 -path "/usr/share/man/man*" -prune -o -exec rm -rf {} \; find /usr/share/man/ -mindepth 1 -maxdepth 1 -path "/usr/share/man/man*" -prune -o -exec rm -rf {} \;
# fine if this fails, aka non-hardened # fine if this fails, aka non-hardened
if -a [[ /usr/sbin/migrate-pax ]]; then if [[ -a /usr/sbin/migrate-pax ]]; then
echo 'migraging pax' echo 'migraging pax'
/usr/sbin/migrate-pax -m /usr/sbin/migrate-pax -m
fi fi