Skip to content

Commit

Permalink
Add back closing curly braces for puppet type snippets
Browse files Browse the repository at this point in the history
This braces got lost when honza#70 was merged
  • Loading branch information
Sebastian Röder authored and SirVer committed Mar 4, 2014
1 parent b327c8a commit 215c567
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions UltiSnips/puppet.snippets
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ snippet file "File resource type" b
file { '${1:name}':
source => "puppet://${2:path}",
mode => ${3:mode},
}
endsnippet

snippet File "Defaults for file" b
Expand All @@ -88,6 +89,7 @@ snippet group "Group resource type" b
group { '${1:groupname}':
ensure => ${3:present},
gid => ${2:gid},
}
endsnippet

snippet mount "Mount resource type" b
Expand All @@ -114,6 +116,7 @@ user { '${1:username}':
home => ${6:homedirectory},
managehome => false,
require => Group['${7:group'}],
}
endsnippet

snippet service "Service resource type" b
Expand Down

0 comments on commit 215c567

Please sign in to comment.