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
See https://github.com/voi-inc/ops/commit/0e0623ca7ddd5277e1571ead6ae01cc6664392b7
# SSL Certificates certificate_names = Dir.glob("/opt/ops/certs/*.crt").map {|f| File.basename(f)} certificate_names.each do |file| self["locations"]["users"]["root"].merge!({ file => { "src" => self.in_ops("certs/") + file, "dest" => "/etc/ssl/certs/" + file, "mode" => "0664", } }) end # SSL Certificate Keys key_names = Dir.glob("/opt/ops/certs/*.key").map {|f| File.basename(f)} key_names.each do |file| self["locations"]["users"]["root"].merge!({ file => { "src" => self.in_ops("certs/") + file, "dest" => "/etc/ssl/private/" + file, "mode" => "0640", "group" => "ssl-cert", } }) end
From PRIVATE_REPO_ISSUE#31 by @fotopher on mar 2016
The text was updated successfully, but these errors were encountered:
No branches or pull requests
See https://github.com/voi-inc/ops/commit/0e0623ca7ddd5277e1571ead6ae01cc6664392b7
From PRIVATE_REPO_ISSUE#31 by @fotopher on mar 2016
The text was updated successfully, but these errors were encountered: