File: helpers.rb

package info (click to toggle)
ruby-puppetserver-ca-cli 2.7.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 696 kB
  • sloc: ruby: 6,970; sh: 4; makefile: 3
file content (10 lines) | stat: -rw-r--r-- 237 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10

module Utils
  module Helpers
    def self.remove_cadir_deprecation(io)
      io.string.each_line.reject do |line|
        line =~ /migrate out from the puppet confdir to the \/etc\/puppet\/puppetserver\/ca/
      end
    end
  end
end