OXIESEC PANEL
- Current Dir:
/
/
etc
/
update-motd.d
Server IP: 10.0.0.4
Upload:
Create Dir:
Name
Size
Modified
Perms
π
..
-
01/22/2024 08:17:32 AM
rwxr-xr-x
π
00-header
1.19 KB
04/09/2018 11:10:28 AM
rwxr-xr-x
π
10-help-text
1.13 KB
04/09/2018 11:10:28 AM
rwxr-xr-x
π
50-landscape-sysinfo
397 bytes
02/20/2020 05:35:22 PM
rwxr-xr-x
π
50-motd-news
4.88 KB
08/13/2020 06:59:47 PM
rwxr-xr-x
π
80-esm
604 bytes
03/21/2018 05:20:04 PM
rwxr-xr-x
π
80-livepatch
2.95 KB
03/21/2018 05:20:04 PM
rwxr-xr-x
π
90-updates-available
97 bytes
11/12/2018 03:57:28 PM
rwxr-xr-x
π
91-release-upgrade
299 bytes
06/03/2019 12:51:27 PM
rwxr-xr-x
π
92-unattended-upgrades
165 bytes
02/17/2020 11:37:03 AM
rwxr-xr-x
π
95-hwe-eol
129 bytes
11/12/2018 03:57:28 PM
rwxr-xr-x
π
97-overlayroot
111 bytes
09/20/2018 01:29:41 PM
rwxr-xr-x
π
98-fsck-at-reboot
142 bytes
11/12/2018 03:57:28 PM
rwxr-xr-x
π
98-reboot-required
144 bytes
11/12/2018 03:57:28 PM
rwxr-xr-x
Editing: 80-esm
Close
#!/bin/sh SERIES=$(lsb_release -cs) DESCRIPTION=$(lsb_release -ds) [ "$SERIES" = "precise" ] || exit 0 [ -x /usr/bin/ubuntu-advantage ] || exit 0 if ubuntu-advantage is-esm-enabled; then cat <<EOF This ${DESCRIPTION} system is configured to receive extended security updates from Canonical: * https://www.ubuntu.com/esm EOF else cat <<EOF This ${DESCRIPTION} system is past its End of Life, and is no longer receiving security updates. To protect the integrity of this system, itβs critical that you enable Extended Security Maintenance updates: * https://www.ubuntu.com/esm EOF fi echo