Skip to content

Commit ae32cdf

Browse files
author
Ashley Penney
committed
Merge pull request #343 from Bit-Doctor/patch-1
Add Anchor pattern to client.pp
2 parents 56c2639 + 62ef656 commit ae32cdf

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

manifests/client.pp

+10
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,14 @@
1717
}
1818
}
1919

20+
anchor { 'mysql::client::start': }
21+
anchor { 'mysql::client::end': }
22+
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']
29+
2030
}

0 commit comments

Comments
 (0)