
Since the two packages share a common history, the installation procedure has been factored into a common base class. Signed-off-by: vsoch <vsoch@users.noreply.github.com>
12 lines
173 B
Django/Jinja
12 lines
173 B
Django/Jinja
#!/bin/sh -eu
|
|
|
|
{% for cf in chown_files %}
|
|
chown root {{ prefix }}/{{ cf }}
|
|
{% endfor %}
|
|
|
|
{% for sf in setuid_files %}
|
|
chmod 4555 {{ prefix }}/{{ sf }}
|
|
{% endfor %}
|
|
|
|
# end
|