Skip to content

Commit

Permalink
Fixes #37903 - Parse Ansible password in Windows default provisioning…
Browse files Browse the repository at this point in the history
… template correctly
  • Loading branch information
nadjaheitmann committed Oct 10, 2024
1 parent 699995e commit 4c92dc4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ gem 'jwt', '>= 2.2.2', '< 3.0'
gem 'graphql', '~> 1.13.0'
gem 'graphql-batch'

gem 'coffee-rails', '~> 5.0.0'

# A bundled gem since Ruby 3.0
gem 'rss' if RUBY_VERSION >= '3.0'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ description: |
<LocalAccounts>
<LocalAccount wcm:action="add">
<Password>
<Value>![CDATA[<%= 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
1 change: 1 addition & 0 deletions config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ class Application < Rails::Application
config.autoload_paths += %W(#{config.root}/app/models/parameters)
config.autoload_paths += %W(#{config.root}/app/models/taxonomies)
config.autoload_paths += %W(#{config.root}/app/models/mail_notifications)
config.eager_load_paths += ["#{config.root}/lib"]

# Custom directories that will only be loaded once
# Should only contain classes with class-level data set by initializers (registries etc.)
Expand Down

0 comments on commit 4c92dc4

Please sign in to comment.