summaryrefslogtreecommitdiff
path: root/manifests/server/account_security.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/server/account_security.pp')
-rw-r--r--manifests/server/account_security.pp12
1 files changed, 6 insertions, 6 deletions
diff --git a/manifests/server/account_security.pp b/manifests/server/account_security.pp
index 23d1cb7..b5d75ca 100644
--- a/manifests/server/account_security.pp
+++ b/manifests/server/account_security.pp
@@ -1,8 +1,8 @@
class mysql::server::account_security {
- # some installations have some default users which are not required.
- # We remove them here. You can subclass this class to overwrite this behavior.
- mysql_user{ [ "root@${fqdn}", "root@127.0.0.1", "@${fqdn}", "@localhost", "@%" ]:
- ensure => 'absent',
- require => Service['mysql'],
- }
+ # some installations have some default users which are not required.
+ # We remove them here. You can subclass this class to overwrite this behavior.
+ mysql_user{ [ "root@${::fqdn}", "root@127.0.0.1", "@${::fqdn}", "@localhost", "@%" ]:
+ ensure => 'absent',
+ require => Service['mysql'],
+ }
}