Linux ih01.iridiumhosting.com 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64
LiteSpeed
Server IP : 67.227.241.211 & Your IP : 216.73.217.111
Domains :
Cant Read [ /etc/named.conf ]
User : dustinhy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
MXB /
rear /
usr /
share /
rear /
verify /
default /
Delete
Unzip
Name
Size
Permission
Date
Action
020_cciss_scsi_engage.sh
352
B
-rw-r--r--
2026-04-01 09:39
020_translate_url.sh
1.71
KB
-rw-r--r--
2026-04-01 09:39
030_translate_tape.sh
932
B
-rw-r--r--
2026-04-01 09:39
040_validate_variables.sh
694
B
-rw-r--r--
2026-04-01 09:39
050_create_mappings_dir.sh
393
B
-rw-r--r--
2026-04-01 09:39
Save
Rename
# verify/default/040_validate_variables.sh # Ensure USER_INPUT_TIMEOUT and WAIT_SECS are positive integers # to ensure commands like 'read -t $WAIT_SECS' will not fail # or not wait at all (which happens for 'read -t 0'). # is_positive_integer outputs '0' and returns 1 # if its (first) argument is not a positive integer (or empty). # Test if USER_INPUT_TIMEOUT is a positive integer, # if not, set the default value as in default.conf: is_positive_integer $USER_INPUT_TIMEOUT 1>/dev/null || USER_INPUT_TIMEOUT=300 # Test if WAIT_SECS is a positive integer, # if not, set the default value as in default.conf: is_positive_integer $WAIT_SECS 1>/dev/null || WAIT_SECS="$USER_INPUT_TIMEOUT"