modif Vagrantfile pour bookworm, tests non termines
This commit is contained in:
parent
c97b7846ce
commit
6206d9c866
11
nagios4/Vagrantfile
vendored
11
nagios4/Vagrantfile
vendored
@ -12,7 +12,9 @@ Vagrant.configure("2") do |config|
|
|||||||
|
|
||||||
# Every Vagrant development environment requires a box. You can search for
|
# Every Vagrant development environment requires a box. You can search for
|
||||||
# boxes at https://vagrantcloud.com/search.
|
# boxes at https://vagrantcloud.com/search.
|
||||||
config.vm.box = "debian/bullseye64"
|
config.vm.box = "debian/bookworm64"
|
||||||
|
config.vm.hostname = "nagios4"
|
||||||
|
|
||||||
|
|
||||||
# Disable automatic box update checking. If you disable this, then
|
# Disable automatic box update checking. If you disable this, then
|
||||||
# boxes will only be checked for updates when the user runs
|
# boxes will only be checked for updates when the user runs
|
||||||
@ -65,12 +67,15 @@ Vagrant.configure("2") do |config|
|
|||||||
# documentation for more information about their specific syntax and use.
|
# documentation for more information about their specific syntax and use.
|
||||||
config.vm.provision "shell", inline: <<-SHELL
|
config.vm.provision "shell", inline: <<-SHELL
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install -y curl wget
|
apt-get install -y vim curl wget apache2 php nagios4 nagios-plugins-contrib
|
||||||
apt-get install -y nagios4
|
|
||||||
cp /etc/nagios4/apache2.conf /etc/apache2/sites-available/nagios4.conf
|
cp /etc/nagios4/apache2.conf /etc/apache2/sites-available/nagios4.conf
|
||||||
a2ensite nagios4.conf
|
a2ensite nagios4.conf
|
||||||
a2enmod rewrite cgi
|
a2enmod rewrite cgi
|
||||||
|
sed -i 's/Require all/#Require all/' /etc/apache2/conf-enabled/nagios4-cgi.conf
|
||||||
|
sed -i 's/#Require\tvalid-user/Require\tvalid-user/' /etc/apache2/conf-enabled/nagios4-cgi.conf
|
||||||
systemctl reload apache2
|
systemctl reload apache2
|
||||||
|
htdigest -b -c /etc/nagios4/htdigest.users "Nagios4" nagiosadmin admin
|
||||||
|
|
||||||
SHELL
|
SHELL
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user