summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Berto <roberto.berto@under.com.br>2024-03-10 19:35:58 -0300
committerRoberto Berto <roberto.berto@under.com.br>2024-03-10 19:35:58 -0300
commit49013d83ce053912fe58edf007dddd78172b7f31 (patch)
treee9c0bdeaa91ba960a597462221184c66eea8e497
parente8e0ecfd07f624100fa0e5d3fed1a737ae8b14f7 (diff)
downloadpyvyos-0.2.1.tar.gz
pyvyos-0.2.1.zip
vagrant infra to test and developmentv0.2.1
-rw-r--r--vagrant/VAGRANT.md4
-rw-r--r--vagrant/Vagrantfile11
2 files changed, 14 insertions, 1 deletions
diff --git a/vagrant/VAGRANT.md b/vagrant/VAGRANT.md
index fab5e59..69a28f5 100644
--- a/vagrant/VAGRANT.md
+++ b/vagrant/VAGRANT.md
@@ -10,9 +10,11 @@ If you want to only use pyvyos you dont need to install vagrant
1. Install Vagrant
2. Install VirtualBox
-3. Install Vagrant plugin for vyos
+3. Install Vagrant plugins
```
vagrant plugin install vagrant-vyos
+vagrant plugin install vagrant-dotenv
+
```
4. Install mkisofs
```
diff --git a/vagrant/Vagrantfile b/vagrant/Vagrantfile
index 89edbf3..1b20c97 100644
--- a/vagrant/Vagrantfile
+++ b/vagrant/Vagrantfile
@@ -33,6 +33,17 @@ Vagrant.configure("2") do |config|
# first boot is not necessary
pyvyos.ssh.insert_key = true
+ # mkdir /opt/vyatta/config/certs
+ # chmod 0700 /opt/vyatta/config/certs
+
+ # generate pki certificate self-signed file /opt/vyatta/config/certs/certself
+ # set pki certificate certself certificate "$(cat /opt/vyatta/config/certs/certself.pem | tail -n +2 | head -n -1 | tr -d '\n')"
+ # set pki certificate certself private key "$(cat /opt/vyatta/config/certs/certself.key | tail -n +2 | head -n -1 | tr -d '\n')"
+
+ # generate pki ca file /opt/vyatta/config/certs/certca
+ # set pki ca certca certificate "$(cat /opt/vyatta/config/certs/certca.pem | tail -n +2 | head -n -1 | tr -d '\n')"
+ # set pki ca certca private key "$(cat /opt/vyatta/config/certs/certca.key | tail -n +2 | head -n -1 | tr -d '\n')"
+
# shell script to provision the vyos vm
pyvyos.vm.provision "shell", inline: <<-SHELL
#!/bin/vbash