Файловый менеджер - Редактировать - /var/www/html/if-up.d.zip
Ðазад
PK ! ;��� � postfixnu ȯ�� #!/bin/sh -e # Called when a new interface comes up # Written by LaMont Jones <lamont@debian.org> # don't bother to restart postfix when lo is configured. if [ "$IFACE" = "lo" ]; then exit 0 fi # If /usr isn't mounted yet, silently bail. if [ ! -d /usr/lib/postfix ]; then exit 0 fi RUNNING="" # If master is running, force a queue run to unload any mail that is # hanging around. Yes, sendmail is a symlink... if [ -f /var/spool/postfix/pid/master.pid ]; then pid=$(sed 's/ //g' /var/spool/postfix/pid/master.pid) exe=$(ls -l /proc/$pid/exe 2>/dev/null | sed 's/.* //;s/.*\///') if [ "X$exe" = "Xmaster" ]; then RUNNING="y" fi fi # start or reload Postfix as needed if [ ! -x /sbin/resolvconf ]; then f=/etc/resolv.conf if ! cp $f $(postconf -hx queue_directory)$f 2>/dev/null; then exit 0 fi if [ -n "$RUNNING" ]; then service postfix reload >/dev/null 2>&1 fi fi # If master is running, force a queue run to unload any mail that is # hanging around. Yes, sendmail is a symlink... if [ -n "$RUNNING" ]; then if [ -x /usr/sbin/sendmail ]; then # Don't propagate the exit code on failure; cf. #959864 /usr/sbin/sendmail -q >/dev/null 2>&1 || true fi fi PK ! ��0 0 clamav-freshclam-ifupdownnu ȯ�� #!/bin/sh # 2004-01-25, Thomas Lamy <thomas.lamy@in-online.net> # From Magnus Ekdahl's <magnus@debian.org> clamav-freshclam-handledaemon(8) # Adjust to be networkd-dispatcher compatible by # Sergio Durigan Junior <sergiodj@debian.org> set -e [ -f /var/lib/clamav/interface ] || exit 0 if [ -d /run/systemd/system ]; then INIT='systemctl' INIT_SUFFIX='clamav-freshclam' else INIT='invoke-rc.d clamav-freshclam' INIT_SUFFIX='' fi CLAMAV_CONF_FILE=/etc/clamav/clamd.conf FRESHCLAM_CONF_FILE=/etc/clamav/freshclam.conf INTERNETIFACE=$(cat /var/lib/clamav/interface) if grep -q freshclam /proc/*/stat 2>/dev/null; then IS_RUNNING=true else IS_RUNNING=false fi handle_ifupdown () { # $IFACE is set by ifup/down, $PPP_IFACE by pppd [ -n "$PPP_IFACE" ] && IFACE=$PPP_IFACE # This is sloppy - woody's pppd exports variables, while sid's passes them as # arguments and exports them. if [ "$1" = "$IFACE" ]; then # We're called by sid's pppd shift 6 # and we already know the interface fi # Dump the arguments passed. if [ -z "$1" ]; then case $(dirname "$0") in */if-up.d|*/ip-up.d) # Short circuit and exit early if freshclam is already running [ "$IS_RUNNING" = 'true' ] && exit 0 for interface in $INTERNETIFACE; do if [ "$interface" = "$IFACE" ]; then FMODE=start break else FMODE=skip fi done ;; */if-down.d|*/ip-down.d) # Short circuit and exit early if freshclam is not already running [ "$IS_RUNNING" = 'false' ] && exit 0 for interface in $INTERNETIFACE; do if [ "$interface" = "$IFACE" ]; then FMODE=stop break else FMODE=skip fi done ;; *) FMODE=skip ;; esac else FMODE="$1" fi case "$FMODE" in start|stop) IFACE="$IFACE" $INIT $FMODE $INIT_SUFFIX ;; skip) ;; *) echo "Usage: $0 {start|stop|skip}" >&2 exit 1 ;; esac } handle_networkd_dispatcher () { FOUND_IFACE=false for interface in $INTERNETIFACE; do if [ "$interface" = "$IFACE" ]; then FOUND_IFACE=true break fi done [ "$FOUND_IFACE" = 'false' ] && return FMODE="" case "$STATE" in "off") if [ "$IS_RUNNING" = 'true' ]; then FMODE="stop" fi ;; "routable") if [ "$IS_RUNNING" = 'false' ]; then FMODE="start" fi ;; *) return esac if [ -n "$FMODE" ]; then IFACE="$IFACE" $INIT $FMODE $INIT_SUFFIX fi } if [ -n "$STATE" ]; then handle_networkd_dispatcher "$@" else handle_ifupdown "$@" fi exit 0 PK ! ~��� � ethtoolnu ȯ�� #!/bin/sh ETHTOOL=/sbin/ethtool test -x $ETHTOOL || exit 0 [ "$IFACE" != "lo" ] || exit 0 # Find settings with a given prefix and print them as they appeared in # /etc/network/interfaces, only with the prefix removed. # This actually prints each name and value on a separate line, but that # doesn't matter to the shell. gather_settings () { set | sed -n " /^IF_$1[A-Za-z0-9_]*=/ { h; # hold line s/^IF_$1//; s/=.*//; s/_/-/g; # get name without prefix y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/; # lower-case p; g; # restore line s/^[^=]*=//; s/^'\(.*\)'/\1/; # get value p; }" } # Gather together the mixed bag of settings applied with -s/--change SETTINGS="\ ${IF_LINK_SPEED:+ speed $IF_LINK_SPEED}\ ${IF_LINK_DUPLEX:+ duplex $IF_LINK_DUPLEX}\ " # WOL has an optional pass-key set -- $IF_ETHERNET_WOL SETTINGS="$SETTINGS${1:+ wol $1}${2:+ sopass $2}" # Autonegotiation can be on|off or an advertising mask case "$IF_ETHERNET_AUTONEG" in '') ;; on|off) SETTINGS="$SETTINGS autoneg $IF_ETHERNET_AUTONEG" ;; *) SETTINGS="$SETTINGS autoneg on advertise $IF_ETHERNET_AUTONEG" ;; esac [ -z "$SETTINGS" ] || $ETHTOOL --change "$IFACE" $SETTINGS SETTINGS="$(gather_settings ETHERNET_PAUSE_)" [ -z "$SETTINGS" ] || $ETHTOOL --pause "$IFACE" $SETTINGS SETTINGS="$(gather_settings HARDWARE_IRQ_COALESCE_)" [ -z "$SETTINGS" ] || $ETHTOOL --coalesce "$IFACE" $SETTINGS SETTINGS="$(gather_settings HARDWARE_DMA_RING_)" [ -z "$SETTINGS" ] || $ETHTOOL --set-ring "$IFACE" $SETTINGS SETTINGS="$(gather_settings OFFLOAD_)" [ -z "$SETTINGS" ] || $ETHTOOL --offload "$IFACE" $SETTINGS PK ! ;��� � postfixnu ȯ�� PK ! ��0 0 � clamav-freshclam-ifupdownnu ȯ�� PK ! ~��� � O ethtoolnu ȯ�� PK �
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка