-
-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle sysctl VLANs #405
Handle sysctl VLANs #405
Conversation
Hi @sgnsys3 and thanks for the PR. Syntax Error while loading YAML.
found unknown escape character Please test with |
Hi again @sgnsys3 |
@konstruktoid Hi Sorry for the late reply, Last month was very tight for me. In Vagrantfile, I have updated the serial connection method because I have run it on Windows and it always failed |
No worries at all :)
Nah, it can be connected when needed. |
Just one comment regarding the |
diff --git a/Vagrantfile b/Vagrantfile
index eb900cd..7c5c24b 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -22,10 +22,10 @@ Vagrant.configure("2") do |config|
a.extra_vars = {
"ansible_become_pass" => "vagrant",
"ansible_python_interpreter" => "/usr/bin/python3",
- "sshd_admin_net" => "0.0.0.0/0",
- "sshd_allow_groups" => "vagrant sudo debian ubuntu",
- "system_upgrade" => "no",
- "install_aide" => "false"
+ "sshd_admin_net" => ["0.0.0.0/0"],
+ "sshd_allow_groups" => ["vagrant", "sudo", "debian", "ubuntu"],
+ "system_upgrade" => "false",
+ "install_aide" => "false",
}
end
end
@@ -47,7 +47,7 @@ Vagrant.configure("2") do |config|
"ansible_python_interpreter" => "/usr/bin/python3",
"sshd_admin_net" => ["0.0.0.0/0"],
"sshd_allow_groups" => ["vagrant", "sudo", "debian", "ubuntu"],
- "system_upgrade" => "no",
+ "system_upgrade" => "false",
}
end
end |
Closes #404 |
@konstruktoid Updated |
Vagrantfile
Outdated
"ansible_become_pass" => "vagrant", | ||
"ansible_python_interpreter" => "/usr/bin/python3", | ||
"sshd_admin_net" => "0.0.0.0/0", | ||
"sshd_allow_groups" => "vagrant sudo debian ubuntu", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be ["vagrant", "sudo", "debian", "ubuntu"],
@@ -17,6 +17,12 @@ provisioner: | |||
log: true | |||
inventory: | |||
host_vars: | |||
bullseye_vlan: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to add bullseye_vlan
since no VLAN is actually configured
Thanks @sgnsys3! |
Referring to Issue #404
If the Interface name has a "." in the name then replace "." with "/".