File Manager

Path: /opt/chef.upgrade/embedded/lib/ruby/gems/2.3.0/gems/specinfra-2.68.0/lib/specinfra/helper/

Viewing File: lxc.rb

module Specinfra
  module Helper
    module Lxc
      def self.included(klass)
        require 'lxc/extra' unless defined?(::LXC::Extra)
      rescue LoadError
        fail "LXC client library is not available. Try installing `ruby-lxc' gem."
      end
    end
  end
end