You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
619 B
22 lines
619 B
2 years ago
|
[global]
|
||
|
|
||
|
{%- for option in (smb_cfg | d({}) | dict2items) -%}
|
||
|
{% if option.value is boolean -%}
|
||
|
{{ option.key | replace('_', ' ') | lower }} = {{ 'yes' if option.value else 'no' }}
|
||
|
{% elif (option.value | type_debug == 'list') -%}
|
||
|
{{ option.key | replace('_', ' ') | lower }} = {{ option.value | join(', ') }}
|
||
|
{% else -%}
|
||
|
{{ option.key | replace('_', ' ') | lower }} = {{ option.value }}
|
||
|
{% endif -%}
|
||
|
{% endfor %}
|
||
|
|
||
|
{% for share in smb_shares -%}
|
||
|
[{{ share.name }}]
|
||
|
path = {{ smb_storage_dir }}/{{ share.name }}
|
||
|
{% if share.comment is defined -%}
|
||
|
comment = {{ share.comment }}
|
||
|
{%- endif %}
|
||
|
|
||
|
|
||
|
{% endfor %}
|