Update file run_before_01-add-temporary-includes.tmpl
This commit is contained in:
parent
449993033a
commit
6c7abd656b
1 changed files with 14 additions and 8 deletions
|
@ -1,22 +1,28 @@
|
||||||
{{- if (ne .host.distro.family "windows") -}}
|
{{- if (ne .host.distro.family "windows") -}}
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
### Ensure /tmp/tmp-profile is created and owned by root
|
||||||
if [ ! -f /tmp/tmp-profile ]; then
|
if [ ! -f /tmp/tmp-profile ]; then
|
||||||
### Add pre-scaffolding profile to /tmp/tmp-profile so it's easier to navigate through scripts
|
# Add pre-scaffolding profile to /tmp/tmp-profile so it's easier to navigate through scripts
|
||||||
cat << EOF > /tmp/tmp-profile
|
cat << EOF > /tmp/tmp-profile
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
{{ includeTemplate "universal/profile-inline" }}
|
{{ includeTemplate "universal/profile-inline" }}
|
||||||
EOF
|
EOF
|
||||||
### Make /tmp/tmp-profile owned by root to prevent tampering
|
|
||||||
sudo chown root /tmp/tmp-profile
|
# Make /tmp/tmp-profile owned by root to prevent tampering
|
||||||
|
sudo chown root /tmp/tmp-profile
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
### Ensure /tmp/tmp-logg is created and owned by root
|
||||||
if [ ! -f /tmp/tmp-logg ]; then
|
if [ ! -f /tmp/tmp-logg ]; then
|
||||||
### Add pre-scaffolding /tmp/tmp-logg
|
# Add pre-scaffolding /tmp/tmp-logg
|
||||||
cat << EOF > /tmp/tmp-logg
|
cat << EOF > /tmp/tmp-logg
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
{{ includeTemplate "universal/logg-inline" }}
|
{{ includeTemplate "universal/logg-inline" }}
|
||||||
EOF
|
EOF
|
||||||
### Make /tmp/tmp-logg owned by root to prevent tampering
|
|
||||||
sudo chown root /tmp/tmp-logg
|
# Make /tmp/tmp-logg owned by root to prevent tampering
|
||||||
|
sudo chown root /tmp/tmp-logg
|
||||||
fi
|
fi
|
||||||
|
|
||||||
{{ end -}}
|
{{ end -}}
|
Loading…
Reference in a new issue