:: **Zploit** v1.0 | Current Path: **/etc/profile.d/**
:: Editing File: timeout.sh
#!/bin/bash ###################################################################################### # DO NOT EDIT THIS FILE DIRECTLY - IT IS MANAGED BY OUR CONFIG MANAGEMENT SYSTEM. # # YOUR CHANGES WILL BE LOST # ###################################################################################### # for now, only time out root if [ `id -nu` == "root" ]; then # TERM will be "xterm" for most of our remote logins, "linux" for ipmi console if [ "$TERM" == "linux" ]; then # tell bash to timeout this login after 3600 seconds = 1 hr TMOUT=3600 fi fi