mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-03-02 13:20:31 -05:00
18 lines
421 B
Ruby
18 lines
421 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
require_relative '../../linux/cap/change_host_name'
|
|
|
|
module VagrantPlugins
|
|
module GuestAtomic
|
|
module Cap
|
|
class ChangeHostName
|
|
extend VagrantPlugins::GuestLinux::Cap::ChangeHostName
|
|
|
|
def self.change_name_command(name)
|
|
"hostnamectl set-hostname '#{name.split(".", 2).first}'"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|