Sha256: 902cf81dc055be478215a61060a3691d1820bdf03802c11e35f33bc1524efa57
Contents?: true
Size: 519 Bytes
Versions: 10
Compression:
Stored size: 519 Bytes
Contents
require_relative '../../linux/cap/change_host_name' module VagrantPlugins module GuestSlackware module Cap class ChangeHostName extend VagrantPlugins::GuestLinux::Cap::ChangeHostName def self.change_name_command(name) return <<-EOH.gsub(/^ {14}/, "") # Set the hostname chmod o+w /etc/hostname echo '#{name}' > /etc/hostname chmod o-w /etc/hostname hostname -F /etc/hostname EOH end end end end end
Version data entries
10 entries across 10 versions & 3 rubygems