remove conflicting notify dep from resource

The db sync resource had a notify set that was leading to
a conflict with the arrow syntax.
This commit is contained in:
Dan Bode 2012-10-14 17:56:17 -07:00
parent c4a051e99c
commit b3190b143e
1 changed files with 2 additions and 1 deletions

View File

@ -81,6 +81,8 @@ class glance::registry(
if $enabled {
Exec['glance-manage db_sync'] ~> Service['glance-registry']
exec { 'glance-manage db_sync':
command => $::glance::params::db_sync_command,
path => '/usr/bin',
@ -88,7 +90,6 @@ class glance::registry(
refreshonly => true,
logoutput => on_failure,
subscribe => [Package['glance'], File['/etc/glance/glance-registry.conf']],
notify => Service['glance-registry'],
}
$service_ensure = 'running'
} else {