]> git.apps.os.sepia.ceph.com Git - ceph-cm-ansible.git/commitdiff
tasks/main.yml: convert comments into names
authorNathan Cutler <ncutler@suse.com>
Sun, 15 May 2016 20:31:57 +0000 (22:31 +0200)
committerRicardo Dias <rdias@suse.com>
Mon, 5 Dec 2016 14:50:48 +0000 (14:50 +0000)
Signed-off-by: Nathan Cutler <ncutler@suse.com>
roles/testnode/tasks/main.yml

index a72a45381fc2d1535bfa449ce35e0d46eba46e14..d0dc2113daed33872a93cb60d0d6b6591d07e866 100644 (file)
   tags:
     - zap
 
-# partition drives, if any are requested
-- include: drive_partitioning.yml
+- name: partition drives, if any are requested
+  include: drive_partitioning.yml
   when: drive_to_partition is defined
   tags:
     - partition
 
-# configure ssh
-- include: ssh.yml
+- name: configure ssh
+  include: ssh.yml
   tags:
     - ssh
 
-# configure things specific to yum systems
-- include: yum_systems.yml
+- name: configure things specific to yum systems
+  include: yum_systems.yml
   when: ansible_pkg_mgr == "yum"
 
-# configure things specific to apt systems
-- include: apt_systems.yml
+- name: configure things specific to apt systems
+  include: apt_systems.yml
   when: ansible_pkg_mgr == "apt"
 
-# configure centos specific things
-- include: setup-centos.yml
+- name: configure centos specific things
+  include: setup-centos.yml
   when: ansible_distribution == "CentOS"
 
-# configure red hat specific things
-- include: setup-redhat.yml
+- name: configure red hat specific things
+  include: setup-redhat.yml
   when: ansible_distribution == 'RedHat'
 
-# configure fedora specific things
-- include: setup-fedora.yml
+- name: configure fedora specific things
+  include: setup-fedora.yml
   when: ansible_distribution == "Fedora"
 
-# configure ubuntu specific things
-- include: setup-ubuntu.yml
+- name: configure ubuntu specific things
+  include: setup-ubuntu.yml
   when: ansible_distribution == "Ubuntu"
 
-- include: setup-ubuntu-non-aarch64.yml
+- name: configure ubuntu non-aarch64 specific things
+  include: setup-ubuntu-non-aarch64.yml
   when:
     ansible_distribution == "Ubuntu" and
     ansible_architecture != "aarch64"
 
-# configure debian specific things
-- include: setup-debian.yml
+- name: configure debian specific things
+  include: setup-debian.yml
   when: ansible_distribution == "Debian"
 
 # Install and configure cpan and Amazon::S3
   tags:
     - ntp-client
 
-# configure pip to use our mirror
-- include: pip.yml
+- name: configure pip to use our mirror
+  include: pip.yml
   tags:
     - pip
 
-# include resolv.conf setup
-- include: resolvconf.yml
+- name: include resolv.conf setup
+  include: resolvconf.yml
   tags:
     - resolvconf