Add srvmail
This commit is contained in:
parent
31b92d645f
commit
19bb36be3d
3 changed files with 8 additions and 2 deletions
|
@ -4,9 +4,9 @@
|
||||||
|
|
||||||
### Testing
|
### Testing
|
||||||
|
|
||||||
#### lime2-test
|
#### *-test
|
||||||
|
|
||||||
The lime2-test machine is a test VM managed by Vagrant.
|
Each machine from the inventory has a *-test variant defined in Vagrantfile for tests.
|
||||||
To connect, we need to tell Ansible the connection details:
|
To connect, we need to tell Ansible the connection details:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|
4
Vagrantfile
vendored
4
Vagrantfile
vendored
|
@ -6,4 +6,8 @@ Vagrant.configure("2") do |config|
|
||||||
lime2.vm.box = "debian/bookworm64"
|
lime2.vm.box = "debian/bookworm64"
|
||||||
lime2.vm.hostname = "lime2-test"
|
lime2.vm.hostname = "lime2-test"
|
||||||
end
|
end
|
||||||
|
config.vm.define "srvmail-test" do |srvmail|
|
||||||
|
srvmail.vm.box = "debian/bookworm64"
|
||||||
|
srvmail.vm.hostname = "srvmail-test"
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,2 +1,4 @@
|
||||||
lime2
|
lime2
|
||||||
lime2-test remote_user=vagrant
|
lime2-test remote_user=vagrant
|
||||||
|
srvmail
|
||||||
|
srvmail-test remote_user=vagrant
|
||||||
|
|
Loading…
Reference in a new issue