Skip to content

Commit a3bc259

Browse files
author
Ashley Penney
committed
Merge pull request #358 from apenney/fix/anchor
Fix the broken anchoring.
2 parents ae32cdf + a4d329f commit a3bc259

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

manifests/client.pp

+5-8
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,11 @@
1717
}
1818
}
1919

20-
anchor { 'mysql::client::start': }
21-
anchor { 'mysql::client::end': }
2220

23-
# Anchor pattern workaround to avoid resources of mysql::client::install
24-
# to "float off" outside mysql::client
25-
Anchor['mysql::client::start'] ->
26-
Class['mysql::client'] ->
27-
Class['mysql::client::install'] ->
28-
Anchor['mysql::client::end']
21+
# Anchor pattern workaround to avoid resources of mysql::client::install to
22+
# "float off" outside mysql::client
23+
anchor { 'mysql::client::start': } ->
24+
Class['mysql::client::install'] ->
25+
anchor { 'mysql::client::end': }
2926

3027
}

0 commit comments

Comments
 (0)