__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/bin/sh -e CONFFILE=/etc/default/kdump-tools # Source debconf library. . /usr/share/debconf/confmodule CONFIG_MODE="$1" # Only pickup existing value if we are reconfiguring # otherwise keep the value provided by dh_input if test -e "$CONFFILE" -a "$CONFIG_MODE" != "configure"; then . "$CONFFILE" # Guard against admin writing silly things into the # config file... if test "$USE_KDUMP" != "1" -a "$USE_KDUMP" != "true" ; then db_set kdump-tools/use_kdump "false" else db_set kdump-tools/use_kdump "true" fi fi # Setup and select the configuration mode db_input high kdump-tools/use_kdump || true db_go