lib/avm/instances/base/auto_values/system.rb in avm-tools-0.71.0 vs lib/avm/instances/base/auto_values/system.rb in avm-tools-0.72.0
- old
+ new
@@ -6,15 +6,15 @@
module Instances
class Base
module AutoValues
module System
def auto_system_username
- inherited_entry_value(:host_id, 'system.username') ||
+ inherited_entry_value(::Avm::Instances::EntryKeys::HOST_ID, 'system.username') ||
read_entry_optional('ssh.username')
end
def auto_system_groupname
- inherited_entry_value(:host_id, 'system.groupname') ||
+ inherited_entry_value(::Avm::Instances::EntryKeys::HOST_ID, 'system.groupname') ||
read_entry_optional('system.username')
end
end
end
end