diff options
author | Micah Anderson <micah@leap.se> | 2014-04-29 17:49:32 -0400 |
---|---|---|
committer | Micah Anderson <micah@leap.se> | 2014-04-29 17:49:32 -0400 |
commit | da775cb3379384c675887076a608566a5053efad (patch) | |
tree | cc4b4373d1179dae018ae6e4b602979a6b94d483 /puppet/modules/tapicero/manifests | |
parent | e3e44973d6290a0228375135adf88d3271fc4242 (diff) |
fix missing semicolon, causing syntax error
Change-Id: Ic7d0f8cc8c0340fdc24cf5ffa4c7018ebac76c7f
Diffstat (limited to 'puppet/modules/tapicero/manifests')
-rw-r--r-- | puppet/modules/tapicero/manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/puppet/modules/tapicero/manifests/init.pp b/puppet/modules/tapicero/manifests/init.pp index cac74597..af1a96ac 100644 --- a/puppet/modules/tapicero/manifests/init.pp +++ b/puppet/modules/tapicero/manifests/init.pp @@ -61,7 +61,7 @@ class tapicero { ensure => directory, owner => 'tapicero', group => 'tapicero', - require => User['tapicero'] + require => User['tapicero']; ## ## TAPICERO CONFIG |