タグ

ブックマーク / debianj.com (1)

  • OpenSSH の起動

    #! /bin/sh set -e # /etc/init.d/ssh: start and stop the OpenBSD “secure shell(tm)” daemon test -x /usr/local/openssh/sbin/sshd || exit 0 ( /usr/local/openssh/sbin/sshd -\? 2>&1 | grep -q OpenSSH ) 2>/dev/null || exit 0 if test -f /etc/default/ssh; then . /etc/default/ssh fi check_for_no_start() { # forget it if we’re trying to start, and /etc/ssh/sshd_not_to_be_run exists if [ -e /etc/ssh/sshd_not

    OpenSSH の起動
    fermi
    fermi 2011/03/28
    PostgreSQL の自動起動スクリプトは PostgreSQL のソースファイル(contrib/start-scripts/linux)に含まれています。
  • 1