diff options
author | Matt Housh <jaeger@morpheus.net> | 2017-08-08 14:29:58 -0500 |
---|---|---|
committer | Matt Housh <jaeger@morpheus.net> | 2017-08-08 14:29:58 -0500 |
commit | f3d02ef58c14d6e219eb4f06ed8876cc0fed86d4 (patch) | |
tree | 1d824a14be1cfbe957a4d222c4296e50793f8f97 /openssh | |
parent | 357299e28d9af35b29cb2c181f6daf826b3b246b (diff) | |
download | core-f3d02ef58c14d6e219eb4f06ed8876cc0fed86d4.tar.gz core-f3d02ef58c14d6e219eb4f06ed8876cc0fed86d4.tar.xz |
openssh: added ssh-copy-id script and man page
Diffstat (limited to 'openssh')
-rw-r--r-- | openssh/.footprint | 2 | ||||
-rw-r--r-- | openssh/.signature | 6 | ||||
-rw-r--r-- | openssh/Pkgfile | 5 |
3 files changed, 9 insertions, 4 deletions
diff --git a/openssh/.footprint b/openssh/.footprint index 612ba366..d64ee9b6 100644 --- a/openssh/.footprint +++ b/openssh/.footprint @@ -12,6 +12,7 @@ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/ssh -rwxr-xr-x root/root usr/bin/ssh-add -rwxr-xr-x root/root usr/bin/ssh-agent +-rwxr-xr-x root/root usr/bin/ssh-copy-id -rwxr-xr-x root/root usr/bin/ssh-keygen -rwxr-xr-x root/root usr/bin/ssh-keyscan drwxr-xr-x root/root usr/lib/ @@ -28,6 +29,7 @@ drwxr-xr-x root/root usr/share/man/man1/ -rw-r--r-- root/root usr/share/man/man1/sftp.1.gz -rw-r--r-- root/root usr/share/man/man1/ssh-add.1.gz -rw-r--r-- root/root usr/share/man/man1/ssh-agent.1.gz +-rw-r--r-- root/root usr/share/man/man1/ssh-copy-id.1.gz -rw-r--r-- root/root usr/share/man/man1/ssh-keygen.1.gz -rw-r--r-- root/root usr/share/man/man1/ssh-keyscan.1.gz -rw-r--r-- root/root usr/share/man/man1/ssh.1.gz diff --git a/openssh/.signature b/openssh/.signature index d735ec1b..5e06444e 100644 --- a/openssh/.signature +++ b/openssh/.signature @@ -1,6 +1,6 @@ untrusted comment: verify with /etc/ports/core.pub -RWRJc1FUaeVeqqQCL0mTP8DV7YWCLDKhSAD2fpVpsuJTy30oWCcB+c/j77Swoin2c1m5ofIcv9Jt94qwtnaYl4mdzGkqDDY+yAs= -SHA256 (Pkgfile) = 23993c191c8db3eda4657f4e654309b6e0445cfcc2e8cb31bbd96f0c2009a823 -SHA256 (.footprint) = 0e90d0b1cd3c928ad2597c3fd420b2fbd4dbbdba04d1cd11e1c4843c2596f89f +RWRJc1FUaeVeqgePgJ6+/jDWHFULy8z6izWAMiJ0tM65IvmjsyKoVIkh1i3HU84FbRDPpZ3d7IfmLyKbjFxjrvNwWRNvtVQZSg0= +SHA256 (Pkgfile) = bc71960a5bb5a880865d848d7115b92dfeb9f11f7caca3ccb37af1659de16c88 +SHA256 (.footprint) = 49ebea9770f893cbe403018d12a23303ae4652d2af3f1128b25c23df27282324 SHA256 (openssh-7.5p1.tar.gz) = 9846e3c5fab9f0547400b4d2c017992f914222b3fd1f8eee6c7dc6bc5e59f9f0 SHA256 (sshd) = 59cb8cff9890e9f5c617c5bd4e5a15e5e4bcc4bf35eb73a80322825db60bbfd4 diff --git a/openssh/Pkgfile b/openssh/Pkgfile index b5d47971..ed7f6425 100644 --- a/openssh/Pkgfile +++ b/openssh/Pkgfile @@ -5,7 +5,7 @@ name=openssh version=7.5p1 -release=1 +release=2 source=(http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/$name-$version.tar.gz sshd) build() { @@ -23,4 +23,7 @@ build() { make DESTDIR=$PKG install install -D -m 755 $SRC/sshd $PKG/etc/rc.d/sshd rm -r $PKG/var + + install -D -m 755 contrib/ssh-copy-id $PKG/usr/bin/ssh-copy-id + install -D -m 644 contrib/ssh-copy-id.1 $PKG/usr/share/man/man1/ssh-copy-id.1 } |