Lines Matching +full:down +full:- +full:counting

1 	    FreeBSD maintainer's guide to OpenSSH-portable
12 02) Download the latest OpenSSH-portable tarball and signature from
17 $ gpg --verify openssh-X.YpZ.tar.gz.asc
21 $ tar xf openssh-X.YpZ.tar.gz
28 $ rsync --archive --delete --exclude=.git /path/to/openssh-X.YpZ/ ./
32 $ git add -A
36 $ git commit -m "Vendor import of OpenSSH X.YpZ"
40 $ git tag -a -m "Tag OpenSSH X.YpZ" vendor/openssh/X.YpZ
51 --dry-run first to ensure that no undesired tags will be pushed:
53 $ git push --dry-run --follow-tags freebsd vendor/openssh
54 $ git push --follow-tags freebsd vendor/openssh
61 $ git subtree merge -P crypto/openssh vendor/openssh
74 $ git diff --diff-filter=M vendor/openssh/X.YpZ HEAD:crypto/openssh
81 $ sh freebsd-configure.sh
94 $ sh freebsd-namespace.sh
105 18) Commit, and hunker down for the inevitable storm of complaints.
109 An overview of FreeBSD changes to OpenSSH-portable
112 1) Modified server-side defaults
116 - UsePAM defaults to "yes".
117 - PermitRootLogin defaults to "no".
118 - PasswordAuthentication defaults to "no".
119 - VersionAddendum defaults to "FreeBSD-YYYYMMDD".
120 - UseDNS defaults to "yes".
122 2) Modified client-side defaults
125 now made the same change, and we no longer have any modified client-side
136 similar purpose but they require environment-specific configuration.
151 6) Agent client reference counting
153 We've added code to ssh-agent.c to implement client reference
154 counting; the agent will automatically exit when the last client
169 We added support for client-side VersionAddendum in 2002 (commit
170 9e2cbe04ff4f) and provided a default value (e.g. FreeBSD-20220415).
183 https://lists.mindrot.org/pipermail/openssh-unix-dev/2022-May/040242.html
187 We use the non-portable feature_present(3) API to determine which
197 -- des@FreeBSD.org