Skip to content

Commit

Permalink
fixup! fixup! Fixes #36495 - Extend Windows templates for Puppet and …
Browse files Browse the repository at this point in the history
…Ansible
  • Loading branch information
nadjaheitmann committed Jul 3, 2024
1 parent 65803f9 commit 10c3f6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ description: |
<LocalAccounts>
<LocalAccount wcm:action="add">
<Password>
<Value><%= host_param('ansible_ssh_pass') %></Value>
<Value>![CDATA[<%= host_param('ansible_ssh_pass') %>]]</Value>
<PlainText>true</PlainText>
</Password>
<Description>Ansible login service user</Description>
Expand Down
2 changes: 1 addition & 1 deletion test/factories/host_related.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def set_nic_attributes(host, attributes, evaluator)

trait :windows do
sequence(:name) { |n| "windows default#{n}" }
layout { "select disk 0\nclean\nconvert gpt\ncreate partition efi size=100\nformat quick fs=fat32 label=\"System\"\nassign letter=\"S\"\ncreate partition msr size=16\ncreate partition primary\nformat quick fs=ntfs label=\"Windows\"\nassign letter=\"W\"\nlist volume\nexit" }
layout { "select disk 0\nclean\nconvert gpt\ncreate partition efi size=200\nformat quick fs=fat32 label=\"System\"\nassign letter=\"S\"\ncreate partition msr size=16\ncreate partition primary\nformat quick fs=ntfs label=\"Windows\"\nassign letter=\"W\"\nlist volume\nexit" }
os_family { 'Windows' }
end
end
Expand Down

0 comments on commit 10c3f6a

Please sign in to comment.