openssh: added ssh-copy-id script and man page

This commit is contained in:
Matt Housh 2017-08-08 14:29:58 -05:00
parent 357299e28d
commit f3d02ef58c
3 changed files with 9 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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
}