Merge "Restart Docker After Changing Proxy Settings"

This commit is contained in:
Zuul 2019-08-08 15:03:18 +00:00 committed by Gerrit Code Review
commit c2f8ada350
1 changed files with 5 additions and 0 deletions

View File

@ -27,6 +27,11 @@ class platform::docker::config
mode => '0644',
content => template('platform/dockerproxy.conf.erb'),
}
~> exec { 'perform systemctl daemon reload for docker proxy':
command => 'systemctl daemon-reload',
logoutput => true,
refreshonly => true,
} ~> Service['docker']
}
Class['::platform::filesystem::docker'] ~> Class[$name]