mirror of
https://github.com/saltstack-formulas/sysctl-formula.git
synced 2024-11-27 23:07:54 +01:00
a8bbd2538f
```bash Examining sysctl/package.sls of type state [209] Jinja comment should have spaces before and after: {# comment #} sysctl/package.sls:4 {## import settings from map.jinja ##} ```
11 lines
233 B
Plaintext
11 lines
233 B
Plaintext
# -*- coding: utf-8 -*-
|
|
# vim: ft=sls
|
|
|
|
{#- import settings from map.jinja #}
|
|
{%- from "sysctl/map.jinja" import sysctl_settings with context %}
|
|
|
|
sysctl-pkg:
|
|
pkg.installed:
|
|
- name: {{ sysctl_settings.pkg }}
|
|
- failhard: True
|