Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python3.6 /
site-packages /
salt /
thorium /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2022-10-11 05:09
__init__.py
6.11
KB
-rw-r--r--
2022-05-16 09:16
calc.py
5.54
KB
-rw-r--r--
2022-05-16 09:16
check.py
10.61
KB
-rw-r--r--
2022-05-16 09:16
file.py
1.92
KB
-rw-r--r--
2022-05-16 09:16
key.py
2.22
KB
-rw-r--r--
2022-05-16 09:16
local.py
942
B
-rw-r--r--
2022-05-16 09:16
reg.py
4
KB
-rw-r--r--
2022-05-16 09:16
runner.py
908
B
-rw-r--r--
2022-05-16 09:16
status.py
1.03
KB
-rw-r--r--
2022-05-16 09:16
timer.py
829
B
-rw-r--r--
2022-05-16 09:16
wheel.py
551
B
-rw-r--r--
2022-05-16 09:16
Save
Rename
""" Allow for flow based timers. These timers allow for a sleep to exist across multiple runs of the flow """ import time def hold(name, seconds): """ Wait for a given period of time, then fire a result of True, requiring this state allows for an action to be blocked for evaluation based on time USAGE: .. code-block:: yaml hold_on_a_moment: timer.hold: - seconds: 30 """ ret = {"name": name, "result": False, "comment": "", "changes": {}} start = time.time() if "timer" not in __context__: __context__["timer"] = {} if name not in __context__["timer"]: __context__["timer"][name] = start if (start - __context__["timer"][name]) > seconds: ret["result"] = True __context__["timer"][name] = start return ret