diff options
author | Dan Fandrich <danf@mageia.org> | 2024-11-20 15:36:06 -0800 |
---|---|---|
committer | Dan Fandrich <danf@mageia.org> | 2024-11-20 15:36:06 -0800 |
commit | 727145ed50d60655590c0199656c2378d32bfffc (patch) | |
tree | 3a95f1ba2f64656879be8c857470155c7bde398d /modules/git | |
parent | 7766681f7ef95a3ad7e6c7c1a26f829ec02d776b (diff) | |
download | puppet-727145ed50d60655590c0199656c2378d32bfffc.tar puppet-727145ed50d60655590c0199656c2378d32bfffc.tar.gz puppet-727145ed50d60655590c0199656c2378d32bfffc.tar.bz2 puppet-727145ed50d60655590c0199656c2378d32bfffc.tar.xz puppet-727145ed50d60655590c0199656c2378d32bfffc.zip |
Use @ when accessing variables in templates
Access without the @ symbol is the older method and is discouraged.
This take leaves alone accesses of variables that are defined within the
template, which don't seem to allow an @.
This is the second batch of files.
Diffstat (limited to 'modules/git')
-rw-r--r-- | modules/git/templates/xinetd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/git/templates/xinetd b/modules/git/templates/xinetd index 2cbf78e3..654ae2be 100644 --- a/modules/git/templates/xinetd +++ b/modules/git/templates/xinetd @@ -4,10 +4,10 @@ service git type = UNLISTED port = 9418 socket_type = stream - server = <%= lib_dir %>/git-core/git-daemon + server = <%= @lib_dir %>/git-core/git-daemon wait = no user = nobody - server_args = --inetd --verbose --export-all --base-path=<%= git_base_path %> + server_args = --inetd --verbose --export-all --base-path=<%= @git_base_path %> log_on_failure += HOST flags = IPv6 } |