We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The puppet facter releases a os version number https://docs.puppetlabs.com/facter/2.3/core_facts.html#operatingsystemrelease, that we use in https://github.com/hardening-io/puppet-ssh-hardening/blob/master/lib/puppet/parser/functions/use_privilege_separation.rb#L19
This does not work as intended in debian 8 prerelease due to the fact that
$ cat /etc/debian_version jessie/sid
does not return a number like on debian 7:
$ cat /etc/debian_version 7.7
Therefore the server config will include UsePrivilegeSeparation yes instead of the intended UsePrivilegeSeparation sandbox
UsePrivilegeSeparation yes
UsePrivilegeSeparation sandbox
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The puppet facter releases a os version number https://docs.puppetlabs.com/facter/2.3/core_facts.html#operatingsystemrelease, that we use in https://github.com/hardening-io/puppet-ssh-hardening/blob/master/lib/puppet/parser/functions/use_privilege_separation.rb#L19
This does not work as intended in debian 8 prerelease due to the fact that
does not return a number like on debian 7:
Therefore the server config will include
UsePrivilegeSeparation yes
instead of the intendedUsePrivilegeSeparation sandbox
The text was updated successfully, but these errors were encountered: