OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
update-notifier
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/10/2024 09:42:49 AM
rwxr-xr-x
📄
notify-reboot-required
751 bytes
03/04/2024 11:04:19 AM
rwxr-xr-x
📄
package-data-downloads-failed
37.77 KB
03/04/2024 11:04:19 AM
rw-r--r--
📄
package-data-downloads-failed-permanently
43.65 KB
03/04/2024 11:04:19 AM
rw-r--r--
📁
plugins
-
10/21/2019 03:49:16 PM
rwxr-xr-x
📁
upgrader-patches
-
05/09/2024 07:13:38 AM
rwxr-xr-x
Editing: notify-reboot-required
Close
#!/bin/sh # we do not include ". gettext.sh" here because: # a) it breaks if its not available # b) the string we have here does not need it (because it has no vars) eval_gettext() { if [ -x /usr/bin/gettext ]; then echo $(gettext "$1") else echo "$1" fi } export TEXTDOMAIN=update-notifier export TEXTDOMAINDIR=/usr/share/locale case "$DPKG_MAINTSCRIPT_PACKAGE::$DPKG_MAINTSCRIPT_NAME" in linux-image-extra*::postrm) exit 0;; esac if [ "$0" = "/etc/kernel/postinst.d/update-notifier" ]; then DPKG_MAINTSCRIPT_PACKAGE=linux-base fi # Wake the applet up echo "*** $(eval_gettext "System restart required") ***" > /var/run/reboot-required echo "$DPKG_MAINTSCRIPT_PACKAGE" >> /var/run/reboot-required.pkgs