:: **Zploit** v1.0 | Current Path: **/usr/lib64/nagios/plugins/**
:: Editing File: check_tmp
#!/bin/bash TIMESTAMP=$(date +%s) if ! touch /tmp/$TIMESTAMP; then echo 'CRITICAL: Unable to touch tmp'; exit 2; else rm -f /tmp/$TIMESTAMP; echo 'OK: Successfully touched tmp'; exit 0; fi