Class: OsCtld::DistConfig::Distributions::OpenSuse

Inherits:
Base
  • Object
show all
Defined in:
lib/osctld/dist_config/distributions/opensuse.rb

Defined Under Namespace

Classes: Configurator

Instance Attribute Summary

Attributes inherited from Base

#configurator, #ct, #ctrc, #distribution, #version

Instance Method Summary collapse

Methods inherited from Base

#add_netif, #bin_path, #configurator_class, distribution, #dns_resolvers, #initialize, #log_type, #network, #passwd, #post_mount, #pre_start, #remove_netif, #rename_netif, #set_hostname, #start, #stop, #unset_etc_hosts, #update_etc_hosts, #volatile_is_systemd?, #with_rootfs

Methods included from Utils::SwitchUser

#ct_attach, #ct_syscmd

Constructor Details

This class inherits a constructor from OsCtld::DistConfig::Distributions::Base

Instance Method Details

#apply_hostnameObject



23
24
25
26
27
28
29
30
# File 'lib/osctld/dist_config/distributions/opensuse.rb', line 23

def apply_hostname
  begin
    ct_syscmd(ct, ['hostname', ct.hostname.fqdn])

  rescue SystemCommandFailed => e
    log(:warn, ct, "Unable to apply hostname: #{e.message}")
  end
end