Linux jobworks 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64
Apache/2.4.58 (Ubuntu)
Server IP : 10.0.1.5 & Your IP : 216.73.216.177
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
ubuntu-advantage /
Delete
Unzip
Name
Size
Permission
Date
Action
add_esm_snapshot_auth.py
1.88
KB
-rw-r--r--
2026-04-07 18:21
apt-esm-json-hook
50.32
KB
-rwxr-xr-x
2026-07-06 13:28
apt_news.py
565
B
-rw-r--r--
2026-04-07 18:21
auto_attach.py
3.68
KB
-rw-r--r--
2026-04-07 18:21
cloud-id-shim.sh
500
B
-rwxr-xr-x
2026-04-07 18:21
convert_list_to_deb822.py
2.37
KB
-rw-r--r--
2026-04-07 18:21
daemon.py
2.49
KB
-rw-r--r--
2026-04-07 18:21
esm_cache.py
491
B
-rwxr-xr-x
2026-04-07 18:21
postinst-migrations.sh
3.53
KB
-rwxr-xr-x
2026-04-07 18:21
reboot_cmds.py
4.9
KB
-rw-r--r--
2026-04-07 18:21
timer.py
5.98
KB
-rw-r--r--
2026-04-07 18:21
upgrade_lts_contract.py
621
B
-rwxr-xr-x
2026-04-07 18:21
Save
Rename
#!/usr/bin/python3 from datetime import datetime, timedelta, timezone from uaclient import apt, log from uaclient.apt_news import update_apt_news from uaclient.config import UAConfig def main(cfg: UAConfig): if not cfg.apt_news: return last_update = apt.get_apt_cache_datetime() one_day_ago = datetime.now(timezone.utc) - timedelta(days=1) if last_update is not None and last_update > one_day_ago: return update_apt_news(cfg) if __name__ == "__main__": log.setup_journald_logging() cfg = UAConfig() main(cfg)