Browse Source

current

master
parent
commit
3769491d2e
2 changed files with 2 additions and 4 deletions
  1. +2
    -3
      tasks/main.yml
  2. +0
    -1
      tasks/setup_Debian.yml

+ 2
- 3
tasks/main.yml View File

@@ -3,8 +3,7 @@
- setup: - setup:
gather_subset: "!all" gather_subset: "!all"


- name: debian
include: debian.yml
- include: setup_Debian.yml
when: ansible_os_family == "Debian" when: ansible_os_family == "Debian"


#- include: gdisk.yml #- include: gdisk.yml
@@ -20,5 +19,5 @@
command: sync command: sync


- name: reread partition tables - name: reread partition tables
command: hdparm -z {{ item.device }}
command: partprobe {{ item.device }}
with_items: "{{ hard_disks }}" with_items: "{{ hard_disks }}"

tasks/debian.yml → tasks/setup_Debian.yml View File

@@ -5,5 +5,4 @@
pkg: "{{ item }}" pkg: "{{ item }}"
state: installed state: installed
with_items: with_items:
- hdparm
- parted - parted

Loading…
Cancel
Save