1
0
mirror of https://github.com/krislamo/graylog_demo synced 2024-09-19 21:50:36 +00:00

Private IP variable and rsyslog forwarding

This commit is contained in:
Kris Lamoureux 2020-01-27 15:44:38 -05:00
parent ea1931ca0a
commit 7e0c6b1c43
Signed by: kris
GPG Key ID: A30022791E1719A4

10
Vagrantfile vendored
View File

@ -1,8 +1,10 @@
# vi: set ft=ruby :
PRIVATE_NET_IP = "172.28.128.30"
Vagrant.configure("2") do |config|
config.vm.box = "centos/7"
config.vm.network "private_network", ip: "172.28.128.30"
config.vm.network "private_network", ip: PRIVATE_NET_IP
config.vm.synced_folder ".", "/vagrant", type: "nfs"
config.vm.provider "virtualbox" do |vbox|
@ -32,6 +34,12 @@ Vagrant.configure("2") do |config|
systemctl start rsyslog
systemctl -q enable rsyslog
# Add rsyslog forwarding option if it does not exist
if ! grep -q "#{PRIVATE_NET_IP}:1514" /etc/rsyslog.conf; then
echo "*.* @@#{PRIVATE_NET_IP}:1514;RSYSLOG_SyslogProtocol23Format" >> /etc/rsyslog.conf
systemctl restart rsyslog
fi
SHELL
# Install newest docker-compose