mirror of
https://github.com/ben-grande/qusal.git
synced 2024-10-01 02:35:49 -04:00
b01f2d213a
The script can be used with sys-cacher, sys-pihole, sys-syncthing, sys-ssh and many services you'd want to forward, make it reusable.
19 lines
421 B
Plaintext
19 lines
421 B
Plaintext
{#
|
|
SPDX-FileCopyrightText: 2024 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
#}
|
|
|
|
{% if grains['nodename'] == 'dom0' -%}
|
|
|
|
"{{ slsdotpath }}-port-forward-script":
|
|
file.managed:
|
|
- name: /usr/local/bin/qvm-port-forward
|
|
- source: salt://{{ slsdotpath }}/files/bin/qvm-port-forward
|
|
- mode: "0755"
|
|
- user: root
|
|
- group: root
|
|
- makedirs: True
|
|
|
|
{% endif -%}
|