Sha256: f6a061255e7a02c9ba9f43d828a7c7b690f9dcacf0a694cb466b810b3ec60371

Contents?: true

Size: 1.07 KB

Versions: 3

Compression:

Stored size: 1.07 KB

Contents

class Specinfra::Command::Freebsd::Base::Interface < Specinfra::Command::Base::Interface 
  class << self
    def check_exists(name)
      "ifconfig #{name}"
    end

    def check_has_ipv4_address(interface, ip_address)
      ip_address = ip_address.dup
      if ip_address =~ /\/\d+$/
        # remove the prefix - better would be to calculate the netmask
        ip_address.gsub!(/\/\d+$/, "") 
      end
      ip_address << " "
      ip_address.gsub!(".", "\\.")
      "ifconfig #{interface} inet | grep 'inet #{ip_address}'"
    end

    def check_has_ipv6_address(interface, ip_address)
      ip_address = ip_address.dup
      (ip_address, prefixlen) = ip_address.split(/\//)
      ip_address.downcase!
      if ip_address =~ /^fe80::/i
        # link local needs the scope (interface) appended 
        ip_address << "%#{interface}"
      end 
      unless prefixlen.to_s.empty? 
        # append prefixlen 
        ip_address << " prefixlen #{prefixlen}"
      else 
        ip_address << " "
      end
      "ifconfig #{interface} inet6 | grep 'inet6 #{ip_address}'"
    end
  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
specinfra-cisco-2.41.0 lib/specinfra/command/freebsd/base/interface.rb
specinfra-cisco-2.40.2 lib/specinfra/command/freebsd/base/interface.rb
specinfra-2.40.1 lib/specinfra/command/freebsd/base/interface.rb