mirror of
https://github.com/jbowdre/vagrant-saltlab.git
synced 2024-12-18 07:22:17 +00:00
insert format declaration in salt files
This commit is contained in:
parent
c3f229ad89
commit
fc50bd1884
12 changed files with 36 additions and 0 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: ft=yaml
|
||||||
|
---
|
||||||
pkgs:
|
pkgs:
|
||||||
{% if grains['os_family'] == 'RedHat' %}
|
{% if grains['os_family'] == 'RedHat' %}
|
||||||
apache: httpd
|
apache: httpd
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: ft=yaml
|
||||||
|
---
|
||||||
base:
|
base:
|
||||||
'*':
|
'*':
|
||||||
- users
|
- users
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: ft=yaml
|
||||||
|
---
|
||||||
users:
|
users:
|
||||||
jake: 1001
|
jake: 1001
|
||||||
jason: 1002
|
jason: 1002
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: ft=yaml
|
||||||
|
---
|
||||||
sync_grains:
|
sync_grains:
|
||||||
local.saltutil.sync_grains:
|
local.saltutil.sync_grains:
|
||||||
- tgt: {{ data['id'] }}
|
- tgt: {{ data['id'] }}
|
|
@ -1,3 +1,6 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: ft=yaml
|
||||||
|
---
|
||||||
base:
|
base:
|
||||||
'*':
|
'*':
|
||||||
- vim
|
- vim
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: ft=yaml
|
||||||
|
---
|
||||||
{% for user, uid in pillar.get('users', {}).items() %}
|
{% for user, uid in pillar.get('users', {}).items() %}
|
||||||
{{user}}:
|
{{user}}:
|
||||||
user.present:
|
user.present:
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: ft=yaml
|
||||||
|
---
|
||||||
install_vim:
|
install_vim:
|
||||||
pkg.installed:
|
pkg.installed:
|
||||||
- name: {{ pillar['pkgs']['vim'] }}
|
- name: {{ pillar['pkgs']['vim'] }}
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: ft=yaml
|
||||||
|
---
|
||||||
uninstall_vim:
|
uninstall_vim:
|
||||||
pkg.removed:
|
pkg.removed:
|
||||||
- name: {{ pillar['pkgs']['vim'] }}
|
- name: {{ pillar['pkgs']['vim'] }}
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: ft=yaml
|
||||||
|
---
|
||||||
install_apache:
|
install_apache:
|
||||||
pkg.installed:
|
pkg.installed:
|
||||||
- name: {{ pillar['pkgs']['apache'] }}
|
- name: {{ pillar['pkgs']['apache'] }}
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: ft=yaml
|
||||||
|
---
|
||||||
uninstall_apache:
|
uninstall_apache:
|
||||||
pkg.removed:
|
pkg.removed:
|
||||||
- name: {{ pillar['pkgs']['apache'] }}
|
- name: {{ pillar['pkgs']['apache'] }}
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: ft=yaml
|
||||||
|
---
|
||||||
{% if grains['os_family'] == 'RedHat' %}
|
{% if grains['os_family'] == 'RedHat' %}
|
||||||
install_epel_repo:
|
install_epel_repo:
|
||||||
pkg.installed:
|
pkg.installed:
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: ft=yaml
|
||||||
|
---
|
||||||
uninstall_neofetch:
|
uninstall_neofetch:
|
||||||
pkg.removed:
|
pkg.removed:
|
||||||
- name: neofetch
|
- name: neofetch
|
||||||
|
|
Loading…
Reference in a new issue