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
/
usr /
lib /
python3.6 /
site-packages /
salt /
beacons /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2022-10-11 05:09
__init__.py
18.16
KB
-rw-r--r--
2022-05-16 09:16
adb.py
5.2
KB
-rw-r--r--
2022-05-16 09:16
aix_account.py
1.33
KB
-rw-r--r--
2022-05-16 09:16
avahi_announce.py
8.53
KB
-rw-r--r--
2022-05-16 09:16
bonjour_announce.py
8.21
KB
-rw-r--r--
2022-05-16 09:16
btmp.py
8.33
KB
-rw-r--r--
2022-05-16 09:16
cert_info.py
5.82
KB
-rw-r--r--
2022-05-16 09:16
diskusage.py
3.35
KB
-rw-r--r--
2022-05-16 09:16
glxinfo.py
1.84
KB
-rw-r--r--
2022-05-16 09:16
haproxy.py
3.02
KB
-rw-r--r--
2022-05-16 09:16
inotify.py
11.88
KB
-rw-r--r--
2022-05-16 09:16
journald.py
2.61
KB
-rw-r--r--
2022-05-16 09:16
junos_rre_keys.py
723
B
-rw-r--r--
2022-05-16 09:16
load.py
5.95
KB
-rw-r--r--
2022-05-16 09:16
log_beacon.py
3.67
KB
-rw-r--r--
2022-05-16 09:16
memusage.py
1.57
KB
-rw-r--r--
2022-05-16 09:16
napalm_beacon.py
11.61
KB
-rw-r--r--
2022-05-16 09:16
network_info.py
4.66
KB
-rw-r--r--
2022-05-16 09:16
network_settings.py
6.53
KB
-rw-r--r--
2022-05-16 09:16
pkg.py
2.57
KB
-rw-r--r--
2022-05-16 09:16
proxy_example.py
1.48
KB
-rw-r--r--
2022-05-16 09:16
ps.py
2.23
KB
-rw-r--r--
2022-05-16 09:16
salt_monitor.py
4.06
KB
-rw-r--r--
2022-05-16 09:16
salt_proxy.py
1.81
KB
-rw-r--r--
2022-05-16 09:16
sensehat.py
2.82
KB
-rw-r--r--
2022-05-16 09:16
service.py
6.15
KB
-rw-r--r--
2022-05-16 09:16
sh.py
3.1
KB
-rw-r--r--
2022-05-16 09:16
smartos_imgadm.py
2.6
KB
-rw-r--r--
2022-05-16 09:16
smartos_vmadm.py
3.34
KB
-rw-r--r--
2022-05-16 09:16
status.py
4.11
KB
-rw-r--r--
2022-05-16 09:16
swapusage.py
1.57
KB
-rw-r--r--
2022-05-16 09:16
telegram_bot_msg.py
2.45
KB
-rw-r--r--
2022-05-16 09:16
twilio_txt_msg.py
2.65
KB
-rw-r--r--
2022-05-16 09:16
watchdog.py
4.79
KB
-rw-r--r--
2022-05-16 09:16
wtmp.py
10.17
KB
-rw-r--r--
2022-05-16 09:16
Save
Rename
""" Beacon that fires events on image import/delete. .. code-block:: yaml ## minimal # - check for new images every 1 second (salt default) # - does not send events at startup beacons: imgadm: [] ## standard # - check for new images every 60 seconds # - send import events at startup for all images beacons: imgadm: - interval: 60 - startup_import_event: True """ import logging import salt.utils.beacons __virtualname__ = "imgadm" IMGADM_STATE = { "first_run": True, "images": [], } log = logging.getLogger(__name__) def __virtual__(): """ Provides imgadm beacon on SmartOS """ if "imgadm.list" in __salt__: return True else: return ( False, "{} beacon can only be loaded on SmartOS compute nodes".format( __virtualname__ ), ) def validate(config): """ Validate the beacon configuration """ vcfg_ret = True vcfg_msg = "Valid beacon configuration" if not isinstance(config, list): vcfg_ret = False vcfg_msg = "Configuration for imgadm beacon must be a list!" return vcfg_ret, vcfg_msg def beacon(config): """ Poll imgadm and compare available images """ ret = [] # NOTE: lookup current images current_images = __salt__["imgadm.list"](verbose=True) # NOTE: apply configuration if IMGADM_STATE["first_run"]: log.info("Applying configuration for imgadm beacon") config = salt.utils.beacons.list_to_dict(config) if "startup_import_event" not in config or not config["startup_import_event"]: IMGADM_STATE["images"] = current_images # NOTE: import events for uuid in current_images: event = {} if uuid not in IMGADM_STATE["images"]: event["tag"] = "imported/{}".format(uuid) for label in current_images[uuid]: event[label] = current_images[uuid][label] if event: ret.append(event) # NOTE: delete events for uuid in IMGADM_STATE["images"]: event = {} if uuid not in current_images: event["tag"] = "deleted/{}".format(uuid) for label in IMGADM_STATE["images"][uuid]: event[label] = IMGADM_STATE["images"][uuid][label] if event: ret.append(event) # NOTE: update stored state IMGADM_STATE["images"] = current_images # NOTE: disable first_run if IMGADM_STATE["first_run"]: IMGADM_STATE["first_run"] = False return ret # vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4