tweak some small things

This commit is contained in:
John Bintz 2012-06-12 17:00:41 -04:00
parent 1fc6f377fd
commit e7c3681d1e
2 changed files with 2 additions and 4 deletions

View File

@ -23,8 +23,8 @@ class base {
} }
define init_d { define init_d {
$init_d_prerun = template("${name}/${osfamily}/init_d_prerun") $init_d_prerun = template("${name}/${::osfamily}/init_d_prerun")
$init_d_prolog = template("${name}/${osfamily}/init_d_prolog") $init_d_prolog = template("${name}/${::osfamily}/init_d_prolog")
file { "/etc/init.d/${name}": file { "/etc/init.d/${name}":
content => template("${name}/${name}-init.d"), content => template("${name}/${name}-init.d"),

View File

@ -4,5 +4,3 @@ ulimit -n ${NFILES:-131072}
# Maxiumum locked memory size for shared memory log # Maxiumum locked memory size for shared memory log
ulimit -l ${MEMLOCK:-82000} ulimit -l ${MEMLOCK:-82000}
USER=<%= varnish_user %>
GROUP=<%= varnish_group %>