Done !
| Server IP : 192.145.236.177 / Your IP : 216.73.216.238 Web Server : Apache System : Linux ded5817.inmotionhosting.com 5.14.0-687.26.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Jul 14 16:32:02 EDT 2026 x86_64 User : personalinjurynh ( 1013) PHP Version : 8.1.34 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /scripts/ |
Upload File : |
#!/usr/bin/bash
# Bash script to be executed after an account termination
# Vanessa V. 4/13/2011
# Argument structure
# /scripts/postkillacct killdns <1|0> user <user>
DIR="/opt/backup/"
# Assign fourth argument as user
USER=$4
if [ "$USER" != " " ]; then
if [ -d $DIR ]; then
# Create maint structure, if doesn't already exist
if [ ! -d $DIR/del ];then
mkdir -p $DIR/del
fi
# Copy the username into the directory
echo "terminated" > $DIR/del/$USER
fi
fi