Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
suitpuppet
su_apache
Commits
48f96a58
Commit
48f96a58
authored
Mar 28, 2019
by
Adam Lewenberg
Browse files
first commit
parents
Changes
2
Hide whitespace changes
Inline
Side-by-side
manifests/public_tmp.pp
0 → 100644
View file @
48f96a58
# Override systemd's apache configiuration.
class
su_apache::systemd_override
(
$private_tmp
=
true
)
{
systemd::dropin_file
{
'apache2.conf'
:
unit
=>
'apache2.service'
,
content
=>
template
(
'su_apache/systemd-dropin/apache2.conf.erb'
),
}
}
templates/systemd-dropin/apache2.conf.erb
0 → 100644
View file @
48f96a58
<%-
if
(
@private_tmp
)
then
privatetmp
=
'true'
else
privatetmp
=
'false'
end
-%>
[Service]
PrivateTmp=
<%=
privatetmp
%>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment