diff options
author | seb <seb> | 2002-04-02 10:14:42 +0000 |
---|---|---|
committer | seb <seb> | 2002-04-02 10:14:42 +0000 |
commit | dae0652a68c7d684489b15ca39b775a97e3f3402 (patch) | |
tree | 2427838ee84f64db439b5a289034cb13dba63203 /security/openssh/files | |
parent | bfc146246bde8749ee7901705105fc9b392c7c59 (diff) | |
download | pkgsrc-dae0652a68c7d684489b15ca39b775a97e3f3402.tar.gz |
Add a `keygen' "target" for non-rc.subr systems so sshd_precmd() actually works.
Diffstat (limited to 'security/openssh/files')
-rw-r--r-- | security/openssh/files/sshd.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/security/openssh/files/sshd.sh b/security/openssh/files/sshd.sh index 43b637d08d1..e05a74d4d73 100644 --- a/security/openssh/files/sshd.sh +++ b/security/openssh/files/sshd.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# $NetBSD: sshd.sh,v 1.7 2002/02/05 04:17:32 jlam Exp $ +# $NetBSD: sshd.sh,v 1.8 2002/04/02 10:14:42 seb Exp $ # # PROVIDE: sshd # REQUIRE: DAEMON LOGIN @@ -93,5 +93,8 @@ else @ECHO@ "${name} is not running." fi ;; + keygen) + eval ${keygen_cmd} + ;; esac fi |