1
0
mirror of https://github.com/altlinux/gpupdate.git synced 2025-03-21 18:50:38 +03:00

Signature usage added to autofs templates

This commit is contained in:
Valery Sinelnikov 2022-12-02 14:30:51 +04:00
parent ccb3dd53a8
commit 418d182726
2 changed files with 8 additions and 0 deletions

View File

@ -18,6 +18,10 @@
#}
{%- for drv in drives %}
{% if (drv.thisDrive != 'HIDE') %}
{% if drv.label %}
{{ drv.label }} -fstype=cifs,cruid=$USER,sec=krb5,noperm :{{ drv.path }}
{% else %}
{{ drv.dir }} -fstype=cifs,cruid=$USER,sec=krb5,noperm :{{ drv.path }}
{% endif %}
{% endif %}
{% endfor %}

View File

@ -18,6 +18,10 @@
#}
{%- for drv in drives %}
{% if (drv.thisDrive == 'HIDE') %}
{% if drv.label %}
{{ drv.label }} -fstype=cifs,cruid=$USER,sec=krb5,noperm :{{ drv.path }}
{% else %}
{{ drv.dir }} -fstype=cifs,cruid=$USER,sec=krb5,noperm :{{ drv.path }}
{% endif %}
{% endif %}
{% endfor %}