/etc/network/if-up.d/openssh-server - Ubuntu 14.04 LTS (Trusty Tahr)

This is the default example configuration of openssh-server provided by OpenSSH. This config file was generated by OpenSSH running on Ubuntu 14.04.

It is located under: /etc/network/if-up.d/openssh-server

    #! /bin/sh
# Reload the OpenSSH server when an interface comes up, to allow it to start
# listening on new addresses.

set -e

# Don't bother to restart sshd when lo is configured.
if [ "$IFACE" = lo ]; then
	exit 0
fi

# Only run from ifup.
if [ "$MODE" != start ]; then
	exit 0
fi

# OpenSSH only cares about inet and inet6. Get ye gone, strange people
# still using ipx.
if [ "$ADDRFAM" != inet ] && [ "$ADDRFAM" != inet6 ]; then
	exit 0
fi

# Is /usr mounted?
if [ ! -e /usr/sbin/sshd ]; then
	exit 0
fi

if [ ! -f /var/run/sshd.pid ] || \
   [ "$(ps -p "$(cat /var/run/sshd.pid)" -o comm=)" != sshd ]; then
	exit 0
fi

# We'd like to use 'reload' here, but it has some problems; see
# #502444.
invoke-rc.d ssh restart >/dev/null 2>&1 || true

exit 0

    
  

Config Details

Location
/etc/network/if-up.d/openssh-server
Operating system
Ubuntu 14.04 LTS (Trusty Tahr)
Length
37 lines
MD5 checksum
91e764631983aab83a9e08bd9e00a9f9

Usage

Download the raw file with wget or curl

Wget

wget -O openssh-server.example http://exampleconfig.com/static/raw/openssh/ubuntu14.04/etc/network/if-up.d/openssh-server

cURL

curl http://exampleconfig.com/static/raw/openssh/ubuntu14.04/etc/network/if-up.d/openssh-server > openssh-server.example