Fix integration test role syntax.

This does not fix the tests themselves, only the syntax (converting from playbooks to roles).
The aix_devices test fails due to use of unsupported state values.
pull/55901/head
Matt Clay 5 years ago
parent 94ef24974a
commit cb0ca89994

@ -1,77 +1,71 @@
--- - name: Scan new devices.
- name: AIX devices tests aix_devices:
hosts: localhost device: all
connection: local state: present
tasks: - name: Scan new virtual devices (vio0).
- name: Scan new devices. aix_devices:
aix_devices: device: vio0
device: all state: present
state: present
- name: Scan new virtual devices (vio0). - name: Removing IP alias to en0
aix_devices: aix_devices:
device: vio0 device: en0
state: present attributes:
delalias4: 10.0.0.100,255.255.255.0
- name: Removing IP alias to en0 - name: Removes ent2.
aix_devices: aix_devices:
device: en0 device: ent2
attributes: state: absent
delalias4: 10.0.0.100,255.255.255.0
- name: Removes ent2. - name: Put device en2 in Defined
aix_devices: aix_devices:
device: ent2 device: en2
state: absent state: defined
- name: Put device en2 in Defined - name: Removes ent4 (inexistent).
aix_devices: aix_devices:
device: en2 device: ent4
state: defined state: absent
- name: Removes ent4 (inexistent). - name: Put device en4 in Defined (inexistent)
aix_devices: aix_devices:
device: ent4 device: en4
state: absent state: defined
- name: Put device en4 in Defined (inexistent) - name: Put vscsi1 and children devices in Defined state.
aix_devices: aix_devices:
device: en4 device: vscsi1
state: defined recursive: yes
state: defined
- name: Put vscsi1 and children devices in Defined state. - name: Removes vscsi1 and children devices.
aix_devices: aix_devices:
device: vscsi1 device: vscsi1
recursive: yes recursive: yes
state: defined state: absent
- name: Removes vscsi1 and children devices. - name: Changes en1 mtu to 9000 and disables arp.
aix_devices: aix_devices:
device: vscsi1 device: en1
recursive: yes attributes:
state: absent mtu: 900
arp: off
state: present
- name: Changes en1 mtu to 9000 and disables arp. - name: Configure IP, netmask and set en1 up.
aix_devices: aix_devices:
device: en1 device: en1
attributes: attributes:
mtu: 900 netaddr: 192.168.0.100
arp: off netmask: 255.255.255.0
state: present state: up
state: present
- name: Configure IP, netmask and set en1 up. - name: Adding IP alias to en0
aix_devices: aix_devices:
device: en1 device: en0
attributes: attributes:
netaddr: 192.168.0.100 alias4: 10.0.0.100,255.255.255.0
netmask: 255.255.255.0 state: present
state: up
state: present
- name: Adding IP alias to en0
aix_devices:
device: en0
attributes:
alias4: 10.0.0.100,255.255.255.0
state: present

@ -1,124 +1,120 @@
--- - name: Umounting /testfs
- name: Testing aix_filesystem module. aix_filesystem:
hosts: lpar24 filesystem: /testfs
tasks: state: unmounted
- name: Umounting /testfs
aix_filesystem: - name: Removing /testfs
filesystem: /testfs aix_filesystem:
state: unmounted filesystem: /testfs
state: absent
- name: Removing /testfs
aix_filesystem: - name: Creating a new file system
filesystem: /testfs aix_filesystem:
state: absent filesystem: /newfs
size: 1G
- name: Creating a new file system state: present
aix_filesystem: vg: datavg
filesystem: /newfs
size: 1G # It requires a host (nfshost) exporting the NFS
state: present - name: Creating NFS filesystem from nfshost (Linux NFS server)
vg: datavg aix_filesystem:
device: /home/ftp
# It requires a host (nfshost) exporting the NFS nfs_server: nfshost
- name: Creating NFS filesystem from nfshost (Linux NFS server) filesystem: /nfs/ftp
aix_filesystem: state: present
device: /home/ftp
nfs_server: nfshost # It requires a volume group named datavg (next three actions)
filesystem: /nfs/ftp - name: Creating a logical volume testlv (aix_lvol module)
state: present aix_lvol:
vg: datavg
# It requires a volume group named datavg (next three actions) lv: testlv
- name: Creating a logical volume testlv (aix_lvol module) size: 2G
aix_lvol: state: present
vg: datavg
lv: testlv - name: Create filesystem in a previously defined logical volume
size: 2G aix_filesystem:
state: present device: testlv
filesystem: /testfs
- name: Create filesystem in a previously defined logical volume state: present
aix_filesystem:
device: testlv - name: Create an already existing filesystem using existing logical volume.
filesystem: /testfs aix_filesystem:
state: present vg: datavg
device: mksysblv
- name: Create an already existing filesystem using existing logical volume. filesystem: /mksysb
aix_filesystem: state: present
vg: datavg
device: mksysblv - name: Create a filesystem in a non-existing VG
filesystem: /mksysb aix_filesystem:
state: present vg: nonexistvg
filesystem: /newlv
- name: Create a filesystem in a non-existing VG state: present
aix_filesystem:
vg: nonexistvg - name: Resizing /mksysb to 1G
filesystem: /newlv aix_filesystem:
state: present filesystem: /mksysb
size: 1G
- name: Resizing /mksysb to 1G state: present
aix_filesystem:
filesystem: /mksysb - name: Resizing /mksysb to +512M
size: 1G aix_filesystem:
state: present filesystem: /mksysb
size: +512M
- name: Resizing /mksysb to +512M state: present
aix_filesystem:
filesystem: /mksysb - name: Resizing /mksysb to 11G
size: +512M aix_filesystem:
state: present filesystem: /mksysb
size: 11G
- name: Resizing /mksysb to 11G state: present
aix_filesystem:
filesystem: /mksysb - name: Resizing /mksysb to 11G (already done)
size: 11G aix_filesystem:
state: present filesystem: /mksysb
size: 11G
- name: Resizing /mksysb to 11G (already done) state: present
aix_filesystem:
filesystem: /mksysb - name: Resizing /mksysb to -2G
size: 11G aix_filesystem:
state: present filesystem: /mksysb
size: -2G
- name: Resizing /mksysb to -2G state: present
aix_filesystem:
filesystem: /mksysb - name: Resizing /mksysb to 100G (no enought space)
size: -2G aix_filesystem:
state: present filesystem: /mksysb
size: +100G
- name: Resizing /mksysb to 100G (no enought space) state: present
aix_filesystem:
filesystem: /mksysb - name: Unmount filesystem /home/ftp
size: +100G aix_filesystem:
state: present filesystem: /home/ftp
state: unmounted
- name: Unmount filesystem /home/ftp
aix_filesystem: - name: Remove NFS filesystem /home/ftp
filesystem: /home/ftp aix_filesystem:
state: unmounted filesystem: /home/ftp
rm_mount_point: yes
- name: Remove NFS filesystem /home/ftp state: absent
aix_filesystem:
filesystem: /home/ftp - name: Mount filesystem /newfs
rm_mount_point: yes aix_filesystem:
state: absent filesystem: /newfs
state: mounted
- name: Mount filesystem /newfs
aix_filesystem: - name: Remove mounted /newfs
filesystem: /newfs aix_filesystem:
state: mounted filesystem: /newfs
rm_mount_point: yes
- name: Remove mounted /newfs state: absent
aix_filesystem:
filesystem: /newfs - name: Umount /newfs
rm_mount_point: yes aix_filesystem:
state: absent filesystem: /newfs
state: unmounted
- name: Umount /newfs
aix_filesystem: - name: Remove /newfs
filesystem: /newfs aix_filesystem:
state: unmounted filesystem: /newfs
rm_mount_point: yes
- name: Remove /newfs state: absent
aix_filesystem:
filesystem: /newfs
rm_mount_point: yes
state: absent

Loading…
Cancel
Save