test: remove support debian 10
This commit is contained in:
parent
d70542cf69
commit
02a216ed56
4 changed files with 13 additions and 18 deletions
|
@ -21,6 +21,7 @@ chore: use FQCN module name
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
- support debian 9
|
- support debian 9
|
||||||
|
- support debian 10
|
||||||
|
|
||||||
## v1.0.0 - 2019-03-16
|
## v1.0.0 - 2019-03-16
|
||||||
|
|
||||||
|
|
21
README.md
21
README.md
|
@ -7,14 +7,13 @@ Encrypt device with luks
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
* Ansible >= 2.9
|
- Ansible >= 2.9
|
||||||
* Debian
|
- Debian
|
||||||
* Buster
|
- Bullseye
|
||||||
* Bullseye
|
|
||||||
|
|
||||||
## Role variables
|
## Role variables
|
||||||
|
|
||||||
* `luks_devices` - array with the devices to encrypt
|
- `luks_devices` - array with the devices to encrypt
|
||||||
|
|
||||||
```
|
```
|
||||||
- name: data_encrypted
|
- name: data_encrypted
|
||||||
|
@ -38,12 +37,12 @@ Encrypt device with luks
|
||||||
|
|
||||||
### Test with molecule and docker
|
### Test with molecule and docker
|
||||||
|
|
||||||
* install libvirt on debian `apt install libvirt-dev qemu-system libvirt-clients libvirt-daemon-system`
|
- install libvirt on debian `apt install libvirt-dev qemu-system libvirt-clients libvirt-daemon-system`
|
||||||
* install [vagrant](https://www.vagrantup.com/docs/installation)
|
- install [vagrant](https://www.vagrantup.com/docs/installation)
|
||||||
* install vagrant libvirt plusin `vagrant plugin install vagrant-libvirt`
|
- install vagrant libvirt plusin `vagrant plugin install vagrant-libvirt`
|
||||||
* install `python3` and `python3-pip`
|
- install `python3` and `python3-pip`
|
||||||
* install molecule and dependencies `pip3 install molecule python-vagrant molecule-vagrant ansible-lint pytest-testinfra yamllint`
|
- install molecule and dependencies `pip3 install molecule python-vagrant molecule-vagrant ansible-lint pytest-testinfra yamllint`
|
||||||
* run `molecule test`
|
- run `molecule test`
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,13 @@
|
||||||
---
|
---
|
||||||
galaxy_info:
|
galaxy_info:
|
||||||
role_name: luks
|
role_name: luks
|
||||||
|
namespace: nishiki
|
||||||
author: Adrien Waksberg
|
author: Adrien Waksberg
|
||||||
company: Adrien Waksberg
|
company: Adrien Waksberg
|
||||||
description: Encrypt device with luks
|
description: Encrypt device with luks
|
||||||
license: Apache2
|
license: Apache2
|
||||||
|
|
||||||
min_ansible_version: 2.9
|
min_ansible_version: "2.9"
|
||||||
|
|
||||||
platforms:
|
platforms:
|
||||||
- name: Debian
|
- name: Debian
|
||||||
|
|
|
@ -5,12 +5,6 @@ driver:
|
||||||
name: libvirt
|
name: libvirt
|
||||||
|
|
||||||
platforms:
|
platforms:
|
||||||
- name: debian10
|
|
||||||
box: debian/buster64
|
|
||||||
memory: 512
|
|
||||||
cpus: 1
|
|
||||||
instance_raw_config_args:
|
|
||||||
- vagrant.plugins = ["vagrant-libvirt"]
|
|
||||||
- name: debian11
|
- name: debian11
|
||||||
box: debian/bullseye64
|
box: debian/bullseye64
|
||||||
memory: 512
|
memory: 512
|
||||||
|
|
Loading…
Reference in a new issue