__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/bin/sh set -e # Regenerate initramfs whenever we go to dpkg state `installed' if [ "x$1" != xtriggered ]; then # this activates the trigger, if triggers are working update-initramfs -u else # The /run/update-initramfs.dpkg-trigger file is just a workaround. # The timestamp should be provided directly by the dpkg trigger. # See https://bugs.debian.org/1099136 timestamp=$(stat -c %Y /run/update-initramfs.dpkg-trigger 2>/dev/null || true) # force it to actually happen (if not already updated since activation) DPKG_MAINTSCRIPT_PACKAGE='' update-initramfs -u -s "$timestamp" rm -f /run/update-initramfs.dpkg-trigger fi