openssh: accept optional service/conf in the sshd runit service.
This commit is contained in:
parent
7da49487e5
commit
7afff7b80b
|
@ -1,3 +1,4 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
ssh-keygen -A # Will generate host keys if they don't already exist
|
ssh-keygen -A >/dev/null 2>&1 # Will generate host keys if they don't already exist
|
||||||
exec /usr/sbin/sshd -D
|
[ -r conf ] && . ./conf
|
||||||
|
exec /usr/sbin/sshd -D $OPTS
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'openssh'
|
# Template file for 'openssh'
|
||||||
pkgname=openssh
|
pkgname=openssh
|
||||||
version=6.7p1
|
version=6.7p1
|
||||||
revision=8
|
revision=9
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--without-tcp-wrappers --datadir=/usr/share/openssh
|
configure_args="--without-tcp-wrappers --datadir=/usr/share/openssh
|
||||||
--sysconfdir=/etc/ssh --without-selinux --with-privsep-user=nobody
|
--sysconfdir=/etc/ssh --without-selinux --with-privsep-user=nobody
|
||||||
|
|
Loading…
Reference in New Issue