OXIESEC PANEL
- Current Dir:
/
/
etc
/
kernel
/
postinst.d
Server IP: 10.0.0.4
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/14/2020 08:17:22 AM
rwxr-xr-x
📄
apt-auto-removal
2.83 KB
04/20/2018 10:08:18 AM
rwxr-xr-x
📄
initramfs-tools
868 bytes
01/05/2018 12:11:55 PM
rwxr-xr-x
📄
unattended-upgrades
185 bytes
02/17/2020 11:37:03 AM
rwxr-xr-x
📄
update-notifier
751 bytes
05/24/2019 09:46:37 AM
rwxr-xr-x
📄
zz-update-grub
646 bytes
08/24/2020 08:45:45 AM
rwxr-xr-x
Editing: zz-update-grub
Close
#! /bin/sh set -e which update-grub >/dev/null 2>&1 || exit 0 if type systemd-detect-virt >/dev/null 2>&1 && systemd-detect-virt --quiet --container; then exit 0 fi set -- $DEB_MAINT_PARAMS mode="${1#\'}" mode="${mode%\'}" case $0:$mode in # Only run on postinst configure and postrm remove, to avoid wasting # time by calling update-grub multiple times on upgrade and removal. # Also run if we have no DEB_MAINT_PARAMS, in order to work with old # kernel packages. */postinst.d/*:|*/postinst.d/*:configure|*/postrm.d/*:|*/postrm.d/*:remove) if [ -e /boot/grub/grub.cfg ]; then exec update-grub fi ;; esac exit 0