From 4edf3ccf9922b3febaff946307621e60569e3bea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iwan=20Cl=C3=A9ment?= Date: Sat, 12 May 2018 15:48:38 +0200 Subject: [PATCH] Indent --- softwares/dockerCE-Ubuntu.sls | 38 +++++++++++++++++------------------ 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/softwares/dockerCE-Ubuntu.sls b/softwares/dockerCE-Ubuntu.sls index 271b63a..7082344 100644 --- a/softwares/dockerCE-Ubuntu.sls +++ b/softwares/dockerCE-Ubuntu.sls @@ -1,26 +1,26 @@ {% if grains['kernel'] == 'Linux' %} {% if grains['os'] == 'Ubuntu' %} - {% set UBUVER = salt['grains.get']('oscodename') %} - Ubuntu Docker PreRequisites: - pkg.installed: - - pkgs: - - apt-transport-https - - ca-certificates - - curl - - gnupg2 + {% set UBUVER = salt['grains.get']('oscodename') %} + Ubuntu Docker PreRequisites: + pkg.installed: + - pkgs: + - apt-transport-https + - ca-certificates + - curl + - gnupg2 - Ubuntu Docker Add Repo: - pkgrepo.managed: - - name: deb [arch=amd64] https://download.docker.com/linux/ubuntu {{UBUVER}} stable - - file: /etc/apt/sources.list.d/docker-ce.list - - enable: 1 - - key_url: https://download.docker.com/linux/ubuntu/gpg + Ubuntu Docker Add Repo: + pkgrepo.managed: + - name: deb [arch=amd64] https://download.docker.com/linux/ubuntu {{UBUVER}} stable + - file: /etc/apt/sources.list.d/docker-ce.list + - enable: 1 + - key_url: https://download.docker.com/linux/ubuntu/gpg - Ubuntu Docker CE installation: - pkg.installed: - - pkgs: - - docker-ce - - docker-compose + Ubuntu Docker CE installation: + pkg.installed: + - pkgs: + - docker-ce + - docker-compose {% endif %} {% endif %}