diff --git a/bts_annee_2/vagrantfiles/README.md b/bts_annee_2/vagrantfiles/README.md index 6001a77..3cfd9d0 100644 --- a/bts_annee_2/vagrantfiles/README.md +++ b/bts_annee_2/vagrantfiles/README.md @@ -1 +1,2 @@ -# Ce répertoire contient les vagrantfiles et répertoires de celles-ci utilisés lors de TPs et des séances, que ce soit en SISR ou en Cyber. \ No newline at end of file +# Ce répertoire contient les vagrantfiles et répertoires de celles-ci utilisés lors de TPs et des séances, que ce soit en SISR ou en Cyber. +Le fichier Vagrantfile dans la racine est une base "universelle" qu'il faut modifier en fonction des besoins. \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/Vagrantfile b/bts_annee_2/vagrantfiles/Vagrantfile new file mode 100644 index 0000000..8a64af6 --- /dev/null +++ b/bts_annee_2/vagrantfiles/Vagrantfile @@ -0,0 +1,79 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +# All Vagrant configuration is done below. The "2" in Vagrant.configure +# configures the configuration version (we support older styles for +# backwards compatibility). Please don't change it unless you know what +# you're doing. +Vagrant.configure("2") do |config| + # The most common configuration options are documented and commented below. + # For a complete reference, please see the online documentation at + # https://docs.vagrantup.com. + + # Every Vagrant development environment requires a box. You can search for + # boxes at https://vagrantcloud.com/search. + config.vm.box = "debian/bookworm64" + config.vm.hostname = "renommer" + + # Disable automatic box update checking. If you disable this, then + # boxes will only be checked for updates when the user runs + # `vagrant box outdated`. This is not recommended. + # config.vm.box_check_update = false + + # Create a forwarded port mapping which allows access to a specific port + # within the machine from a port on the host machine. In the example below, + # accessing "localhost:8080" will access port 80 on the guest machine. + # NOTE: This will enable public access to the opened port + # config.vm.network "forwarded_port", guest: 80, host: 8080 + + # Create a forwarded port mapping which allows access to a specific port + # within the machine from a port on the host machine and only allow access + # via 127.0.0.1 to disable public access + # config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1" + + # Create a private network, which allows host-only access to the machine + # using a specific IP. + # config.vm.network "private_network", ip: "192.168.33.10" + + # Create a public network, which generally matched to bridged network. + # Bridged networks make the machine appear as another physical device on + # your network. + config.vm.network "public_network" + + # Share an additional folder to the guest VM. The first argument is + # the path on the host to the actual folder. The second argument is + # the path on the guest to mount the folder. And the optional third + # argument is a set of non-required options. + # config.vm.synced_folder "../data", "/vagrant_data" + + # Disable the default share of the current code directory. Doing this + # provides improved isolation between the vagrant box and your host + # by making sure your Vagrantfile isn't accessable to the vagrant box. + # If you use this you may want to enable additional shared subfolders as + # shown above. + # config.vm.synced_folder ".", "/vagrant", disabled: true + + # Provider-specific configuration so you can fine-tune various + # backing providers for Vagrant. These expose provider-specific options. + # Example for VirtualBox: + # + config.vm.provider "virtualbox" do |vb| + # Display the VirtualBox GUI when booting the machine + vb.gui = true + + # Customize the amount of memory on the VM: + vb.memory = "1024" + end + # + # View the documentation for the provider you are using for more + # information on available options. + + # Enable provisioning with a shell script. Additional provisioners such as + # Ansible, Chef, Docker, Puppet and Salt are also available. Please see the + # documentation for more information about their specific syntax and use. + config.vm.provision "shell", inline: <<-SHELL + timedatectl set-timezone Europe/Paris + apt-get update + apt-get install -y vim wget curl neovim mc git + SHELL +end \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/action_provision b/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/action_provision new file mode 100644 index 0000000..96016f8 --- /dev/null +++ b/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/action_provision @@ -0,0 +1 @@ +1.5:9cf9dbdc-932d-4347-8376-a635a52efc63 \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/action_set_name b/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/action_set_name new file mode 100644 index 0000000..b389a62 --- /dev/null +++ b/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/action_set_name @@ -0,0 +1 @@ +1733996561 \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/box_meta b/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/box_meta new file mode 100644 index 0000000..8f728b2 --- /dev/null +++ b/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/box_meta @@ -0,0 +1 @@ +{"name":"debian/bookworm64","version":"12.20240905.1","provider":"virtualbox","directory":"boxes/debian-VAGRANTSLASH-bookworm64/12.20240905.1/virtualbox"} \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/creator_uid b/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/creator_uid new file mode 100644 index 0000000..028ead5 --- /dev/null +++ b/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/creator_uid @@ -0,0 +1 @@ +1010 \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/id b/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/id new file mode 100644 index 0000000..23171d0 --- /dev/null +++ b/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/id @@ -0,0 +1 @@ +9cf9dbdc-932d-4347-8376-a635a52efc63 \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/index_uuid b/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/index_uuid new file mode 100644 index 0000000..8055d15 --- /dev/null +++ b/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/index_uuid @@ -0,0 +1 @@ +5f104f0a5e054a46acb8fd97f702e8e4 \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/private_key b/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/private_key new file mode 100644 index 0000000..de91153 --- /dev/null +++ b/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/private_key @@ -0,0 +1,8 @@ +-----BEGIN OPENSSH PRIVATE KEY----- +b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAAAMwAA +AAtzc2gtZWQyNTUxOQAAACCYILH3XIv6eFpL1r4A6I8dRGpDlYQqsAqU1o3Y +MmnL+AAAAJAXHrdFFx63RQAAAAtzc2gtZWQyNTUxOQAAACCYILH3XIv6eFpL +1r4A6I8dRGpDlYQqsAqU1o3YMmnL+AAAAEDoVzDwOjhTUVHCJqYT2TSYNkb/ +KZEKQd1kekQA5H8zkpggsfdci/p4WkvWvgDojx1EakOVhCqwCpTWjdgyacv4 +AAAAB3ZhZ3JhbnQBAgMEBQY= +-----END OPENSSH PRIVATE KEY----- diff --git a/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/synced_folders b/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/synced_folders new file mode 100644 index 0000000..da6b8d1 --- /dev/null +++ b/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/synced_folders @@ -0,0 +1 @@ +{"virtualbox":{"/vagrant":{"guestpath":"/vagrant","hostpath":"/home/guillaume.emorine/vagrant/kubernetes","disabled":false,"__vagrantfile":true}}} \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/vagrant_cwd b/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/vagrant_cwd new file mode 100644 index 0000000..ffe89d3 --- /dev/null +++ b/bts_annee_2/vagrantfiles/kubernetes/.vagrant/machines/default/virtualbox/vagrant_cwd @@ -0,0 +1 @@ +/home/guillaume.emorine/vagrant/kubernetes \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/kubernetes/.vagrant/rgloader/loader.rb b/bts_annee_2/vagrantfiles/kubernetes/.vagrant/rgloader/loader.rb new file mode 100644 index 0000000..b6c81bf --- /dev/null +++ b/bts_annee_2/vagrantfiles/kubernetes/.vagrant/rgloader/loader.rb @@ -0,0 +1,12 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: BUSL-1.1 + +# This file loads the proper rgloader/loader.rb file that comes packaged +# with Vagrant so that encoded files can properly run with Vagrant. + +if ENV["VAGRANT_INSTALLER_EMBEDDED_DIR"] + require File.expand_path( + "rgloader/loader", ENV["VAGRANT_INSTALLER_EMBEDDED_DIR"]) +else + raise "Encoded files can't be read outside of the Vagrant installer." +end diff --git a/bts_annee_2/vagrantfiles/kubernetes/awx/Vagrantfile b/bts_annee_2/vagrantfiles/kubernetes/awx/Vagrantfile new file mode 100644 index 0000000..b4d5296 --- /dev/null +++ b/bts_annee_2/vagrantfiles/kubernetes/awx/Vagrantfile @@ -0,0 +1,84 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +# All Vagrant configuration is done below. The "2" in Vagrant.configure +# configures the configuration version (we support older styles for +# backwards compatibility). Please don't change it unless you know what +# you're doing. +Vagrant.configure("2") do |config| + # The most common configuration options are documented and commented below. + # For a complete reference, please see the online documentation at + # https://docs.vagrantup.com. + + # Every Vagrant development environment requires a box. You can search for + # boxes at https://vagrantcloud.com/search. + config.vm.box = "debian/bookworm64" + config.vm.hostname = "kubernetes-k3s" + + # Disable automatic box update checking. If you disable this, then + # boxes will only be checked for updates when the user runs + # `vagrant box outdated`. This is not recommended. + # config.vm.box_check_update = false + + # Create a forwarded port mapping which allows access to a specific port + # within the machine from a port on the host machine. In the example below, + # accessing "localhost:8080" will access port 80 on the guest machine. + # NOTE: This will enable public access to the opened port + # config.vm.network "forwarded_port", guest: 80, host: 8080 + + # Create a forwarded port mapping which allows access to a specific port + # within the machine from a port on the host machine and only allow access + # via 127.0.0.1 to disable public access + # config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1" + + # Create a private network, which allows host-only access to the machine + # using a specific IP. + # config.vm.network "private_network", ip: "192.168.33.10" + + # Create a public network, which generally matched to bridged network. + # Bridged networks make the machine appear as another physical device on + # your network. + config.vm.network "public_network" + + # Share an additional folder to the guest VM. The first argument is + # the path on the host to the actual folder. The second argument is + # the path on the guest to mount the folder. And the optional third + # argument is a set of non-required options. + # config.vm.synced_folder "../data", "/vagrant_data" + + # Disable the default share of the current code directory. Doing this + # provides improved isolation between the vagrant box and your host + # by making sure your Vagrantfile isn't accessable to the vagrant box. + # If you use this you may want to enable additional shared subfolders as + # shown above. + # config.vm.synced_folder ".", "/vagrant", disabled: true + + # Provider-specific configuration so you can fine-tune various + # backing providers for Vagrant. These expose provider-specific options. + # Example for VirtualBox: + # + config.vm.provider "virtualbox" do |vb| + # Display the VirtualBox GUI when booting the machine + vb.gui = false + + # Customize the amount of memory on the VM: + vb.memory = "6144" + + # Amount of cores for the VM: + vb.cpus = 2 + end + # + # View the documentation for the provider you are using for more + # information on available options. + + # Enable provisioning with a shell script. Additional provisioners such as + # Ansible, Chef, Docker, Puppet and Salt are also available. Please see the + # documentation for more information about their specific syntax and use. + config.vm.provision "shell", inline: <<-SHELL + timedatectl set-timezone Europe/Paris + apt-get update + apt-get install -y vim wget curl neovim mc git + export http_proxy=http://10.121.38.1:8080 + export https_proxy=http://10.121.38.1:8080 + SHELL +end \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/action_provision b/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/action_provision new file mode 100644 index 0000000..5844ded --- /dev/null +++ b/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/action_provision @@ -0,0 +1 @@ +1.5:1639f9f3-ba4b-4fa4-81fe-740684fc82e1 \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/action_set_name b/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/action_set_name new file mode 100644 index 0000000..2572557 --- /dev/null +++ b/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/action_set_name @@ -0,0 +1 @@ +1733998855 \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/box_meta b/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/box_meta new file mode 100644 index 0000000..8f728b2 --- /dev/null +++ b/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/box_meta @@ -0,0 +1 @@ +{"name":"debian/bookworm64","version":"12.20240905.1","provider":"virtualbox","directory":"boxes/debian-VAGRANTSLASH-bookworm64/12.20240905.1/virtualbox"} \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/creator_uid b/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/creator_uid new file mode 100644 index 0000000..028ead5 --- /dev/null +++ b/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/creator_uid @@ -0,0 +1 @@ +1010 \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/id b/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/id new file mode 100644 index 0000000..a983c36 --- /dev/null +++ b/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/id @@ -0,0 +1 @@ +1639f9f3-ba4b-4fa4-81fe-740684fc82e1 \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/index_uuid b/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/index_uuid new file mode 100644 index 0000000..884e890 --- /dev/null +++ b/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/index_uuid @@ -0,0 +1 @@ +dc8b423f3f2542ddb6f499b6a7109d71 \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/private_key b/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/private_key new file mode 100644 index 0000000..15c19c5 --- /dev/null +++ b/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/private_key @@ -0,0 +1,8 @@ +-----BEGIN OPENSSH PRIVATE KEY----- +b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAAAMwAA +AAtzc2gtZWQyNTUxOQAAACDaSd4UME4d+Ru7lGHn3vbkeunGCbXd9RSuDYKF +8K2qWgAAAJBDe2qbQ3tqmwAAAAtzc2gtZWQyNTUxOQAAACDaSd4UME4d+Ru7 +lGHn3vbkeunGCbXd9RSuDYKF8K2qWgAAAEA8KrXiI13mCEf0xXogttRVTO1R +RbcjiDBwgoJlylt3ltpJ3hQwTh35G7uUYefe9uR66cYJtd31FK4NgoXwrapa +AAAAB3ZhZ3JhbnQBAgMEBQY= +-----END OPENSSH PRIVATE KEY----- diff --git a/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/synced_folders b/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/synced_folders new file mode 100644 index 0000000..f26a4c3 --- /dev/null +++ b/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/synced_folders @@ -0,0 +1 @@ +{"virtualbox":{"/vagrant":{"guestpath":"/vagrant","hostpath":"/home/guillaume.emorine/vagrant/kubernetes/awx_client","disabled":false,"__vagrantfile":true}}} \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/vagrant_cwd b/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/vagrant_cwd new file mode 100644 index 0000000..f9c71b3 --- /dev/null +++ b/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/machines/default/virtualbox/vagrant_cwd @@ -0,0 +1 @@ +/home/guillaume.emorine/vagrant/kubernetes/awx_client \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/rgloader/loader.rb b/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/rgloader/loader.rb new file mode 100644 index 0000000..b6c81bf --- /dev/null +++ b/bts_annee_2/vagrantfiles/kubernetes/awx_client/.vagrant/rgloader/loader.rb @@ -0,0 +1,12 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: BUSL-1.1 + +# This file loads the proper rgloader/loader.rb file that comes packaged +# with Vagrant so that encoded files can properly run with Vagrant. + +if ENV["VAGRANT_INSTALLER_EMBEDDED_DIR"] + require File.expand_path( + "rgloader/loader", ENV["VAGRANT_INSTALLER_EMBEDDED_DIR"]) +else + raise "Encoded files can't be read outside of the Vagrant installer." +end diff --git a/bts_annee_2/vagrantfiles/kubernetes/awx_client/Vagrantfile b/bts_annee_2/vagrantfiles/kubernetes/awx_client/Vagrantfile new file mode 100644 index 0000000..488b6c6 --- /dev/null +++ b/bts_annee_2/vagrantfiles/kubernetes/awx_client/Vagrantfile @@ -0,0 +1,79 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +# All Vagrant configuration is done below. The "2" in Vagrant.configure +# configures the configuration version (we support older styles for +# backwards compatibility). Please don't change it unless you know what +# you're doing. +Vagrant.configure("2") do |config| + # The most common configuration options are documented and commented below. + # For a complete reference, please see the online documentation at + # https://docs.vagrantup.com. + + # Every Vagrant development environment requires a box. You can search for + # boxes at https://vagrantcloud.com/search. + config.vm.box = "debian/bookworm64" + config.vm.hostname = "awx-cli" + + # Disable automatic box update checking. If you disable this, then + # boxes will only be checked for updates when the user runs + # `vagrant box outdated`. This is not recommended. + # config.vm.box_check_update = false + + # Create a forwarded port mapping which allows access to a specific port + # within the machine from a port on the host machine. In the example below, + # accessing "localhost:8080" will access port 80 on the guest machine. + # NOTE: This will enable public access to the opened port + # config.vm.network "forwarded_port", guest: 80, host: 8080 + + # Create a forwarded port mapping which allows access to a specific port + # within the machine from a port on the host machine and only allow access + # via 127.0.0.1 to disable public access + # config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1" + + # Create a private network, which allows host-only access to the machine + # using a specific IP. + # config.vm.network "private_network", ip: "192.168.33.10" + + # Create a public network, which generally matched to bridged network. + # Bridged networks make the machine appear as another physical device on + # your network. + config.vm.network "public_network" + + # Share an additional folder to the guest VM. The first argument is + # the path on the host to the actual folder. The second argument is + # the path on the guest to mount the folder. And the optional third + # argument is a set of non-required options. + # config.vm.synced_folder "../data", "/vagrant_data" + + # Disable the default share of the current code directory. Doing this + # provides improved isolation between the vagrant box and your host + # by making sure your Vagrantfile isn't accessable to the vagrant box. + # If you use this you may want to enable additional shared subfolders as + # shown above. + # config.vm.synced_folder ".", "/vagrant", disabled: true + + # Provider-specific configuration so you can fine-tune various + # backing providers for Vagrant. These expose provider-specific options. + # Example for VirtualBox: + # + config.vm.provider "virtualbox" do |vb| + # Display the VirtualBox GUI when booting the machine + vb.gui = false + + # Customize the amount of memory on the VM: + vb.memory = "1024" + end + # + # View the documentation for the provider you are using for more + # information on available options. + + # Enable provisioning with a shell script. Additional provisioners such as + # Ansible, Chef, Docker, Puppet and Salt are also available. Please see the + # documentation for more information about their specific syntax and use. + config.vm.provision "shell", inline: <<-SHELL + timedatectl set-timezone Europe/Paris + apt-get update + apt-get install -y vim wget curl neovim mc git + SHELL +end diff --git a/bts_annee_2/vagrantfiles/securisation-linux/devsec-ansible/Vagrantfile b/bts_annee_2/vagrantfiles/securisation-linux/devsec-ansible/Vagrantfile new file mode 100644 index 0000000..e5dd811 --- /dev/null +++ b/bts_annee_2/vagrantfiles/securisation-linux/devsec-ansible/Vagrantfile @@ -0,0 +1,79 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +# All Vagrant configuration is done below. The "2" in Vagrant.configure +# configures the configuration version (we support older styles for +# backwards compatibility). Please don't change it unless you know what +# you're doing. +Vagrant.configure("2") do |config| + # The most common configuration options are documented and commented below. + # For a complete reference, please see the online documentation at + # https://docs.vagrantup.com. + + # Every Vagrant development environment requires a box. You can search for + # boxes at https://vagrantcloud.com/search. + config.vm.box = "debian/bookworm64" + config.vm.hostname = "devsec" + + # Disable automatic box update checking. If you disable this, then + # boxes will only be checked for updates when the user runs + # `vagrant box outdated`. This is not recommended. + # config.vm.box_check_update = false + + # Create a forwarded port mapping which allows access to a specific port + # within the machine from a port on the host machine. In the example below, + # accessing "localhost:8080" will access port 80 on the guest machine. + # NOTE: This will enable public access to the opened port + # config.vm.network "forwarded_port", guest: 80, host: 8080 + + # Create a forwarded port mapping which allows access to a specific port + # within the machine from a port on the host machine and only allow access + # via 127.0.0.1 to disable public access + # config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1" + + # Create a private network, which allows host-only access to the machine + # using a specific IP. + # config.vm.network "private_network", ip: "192.168.33.10" + + # Create a public network, which generally matched to bridged network. + # Bridged networks make the machine appear as another physical device on + # your network. + config.vm.network "public_network" + + # Share an additional folder to the guest VM. The first argument is + # the path on the host to the actual folder. The second argument is + # the path on the guest to mount the folder. And the optional third + # argument is a set of non-required options. + # config.vm.synced_folder "../data", "/vagrant_data" + + # Disable the default share of the current code directory. Doing this + # provides improved isolation between the vagrant box and your host + # by making sure your Vagrantfile isn't accessable to the vagrant box. + # If you use this you may want to enable additional shared subfolders as + # shown above. + # config.vm.synced_folder ".", "/vagrant", disabled: true + + # Provider-specific configuration so you can fine-tune various + # backing providers for Vagrant. These expose provider-specific options. + # Example for VirtualBox: + # + config.vm.provider "virtualbox" do |vb| + # Display the VirtualBox GUI when booting the machine + vb.gui = false + + # Customize the amount of memory on the VM: + vb.memory = "1024" + end + # + # View the documentation for the provider you are using for more + # information on available options. + + # Enable provisioning with a shell script. Additional provisioners such as + # Ansible, Chef, Docker, Puppet and Salt are also available. Please see the + # documentation for more information about their specific syntax and use. + config.vm.provision "shell", inline: <<-SHELL + timedatectl set-timezone Europe/Paris + apt-get update + apt-get install -y vim wget curl neovim mc git + SHELL +end \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/securisation-linux/lynis-srv/Vagrantfile b/bts_annee_2/vagrantfiles/securisation-linux/lynis-srv/Vagrantfile new file mode 100644 index 0000000..790a822 --- /dev/null +++ b/bts_annee_2/vagrantfiles/securisation-linux/lynis-srv/Vagrantfile @@ -0,0 +1,79 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +# All Vagrant configuration is done below. The "2" in Vagrant.configure +# configures the configuration version (we support older styles for +# backwards compatibility). Please don't change it unless you know what +# you're doing. +Vagrant.configure("2") do |config| + # The most common configuration options are documented and commented below. + # For a complete reference, please see the online documentation at + # https://docs.vagrantup.com. + + # Every Vagrant development environment requires a box. You can search for + # boxes at https://vagrantcloud.com/search. + config.vm.box = "debian/bookworm64" + config.vm.hostname = "srv" + + # Disable automatic box update checking. If you disable this, then + # boxes will only be checked for updates when the user runs + # `vagrant box outdated`. This is not recommended. + # config.vm.box_check_update = false + + # Create a forwarded port mapping which allows access to a specific port + # within the machine from a port on the host machine. In the example below, + # accessing "localhost:8080" will access port 80 on the guest machine. + # NOTE: This will enable public access to the opened port + # config.vm.network "forwarded_port", guest: 80, host: 8080 + + # Create a forwarded port mapping which allows access to a specific port + # within the machine from a port on the host machine and only allow access + # via 127.0.0.1 to disable public access + # config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1" + + # Create a private network, which allows host-only access to the machine + # using a specific IP. + # config.vm.network "private_network", ip: "192.168.33.10" + + # Create a public network, which generally matched to bridged network. + # Bridged networks make the machine appear as another physical device on + # your network. + config.vm.network "public_network" + + # Share an additional folder to the guest VM. The first argument is + # the path on the host to the actual folder. The second argument is + # the path on the guest to mount the folder. And the optional third + # argument is a set of non-required options. + # config.vm.synced_folder "../data", "/vagrant_data" + + # Disable the default share of the current code directory. Doing this + # provides improved isolation between the vagrant box and your host + # by making sure your Vagrantfile isn't accessable to the vagrant box. + # If you use this you may want to enable additional shared subfolders as + # shown above. + # config.vm.synced_folder ".", "/vagrant", disabled: true + + # Provider-specific configuration so you can fine-tune various + # backing providers for Vagrant. These expose provider-specific options. + # Example for VirtualBox: + # + config.vm.provider "virtualbox" do |vb| + # Display the VirtualBox GUI when booting the machine + vb.gui = false + + # Customize the amount of memory on the VM: + vb.memory = "1024" + end + # + # View the documentation for the provider you are using for more + # information on available options. + + # Enable provisioning with a shell script. Additional provisioners such as + # Ansible, Chef, Docker, Puppet and Salt are also available. Please see the + # documentation for more information about their specific syntax and use. + config.vm.provision "shell", inline: <<-SHELL + timedatectl set-timezone Europe/Paris + apt-get update + apt-get install -y vim wget curl neovim mc git + SHELL +end \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/action_provision b/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/action_provision new file mode 100644 index 0000000..c1d5bbc --- /dev/null +++ b/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/action_provision @@ -0,0 +1 @@ +1.5:b9aeb3d1-4407-4d82-80b9-86c7b87e3ed9 \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/action_set_name b/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/action_set_name new file mode 100644 index 0000000..0743bbc --- /dev/null +++ b/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/action_set_name @@ -0,0 +1 @@ +1733148968 \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/box_meta b/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/box_meta new file mode 100644 index 0000000..8f728b2 --- /dev/null +++ b/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/box_meta @@ -0,0 +1 @@ +{"name":"debian/bookworm64","version":"12.20240905.1","provider":"virtualbox","directory":"boxes/debian-VAGRANTSLASH-bookworm64/12.20240905.1/virtualbox"} \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/creator_uid b/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/creator_uid new file mode 100644 index 0000000..028ead5 --- /dev/null +++ b/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/creator_uid @@ -0,0 +1 @@ +1010 \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/id b/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/id new file mode 100644 index 0000000..96b289f --- /dev/null +++ b/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/id @@ -0,0 +1 @@ +b9aeb3d1-4407-4d82-80b9-86c7b87e3ed9 \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/index_uuid b/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/index_uuid new file mode 100644 index 0000000..89633d4 --- /dev/null +++ b/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/index_uuid @@ -0,0 +1 @@ +e9b668cf954346fea75c8148eb78fcc7 \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/private_key b/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/private_key new file mode 100644 index 0000000..657b770 --- /dev/null +++ b/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/private_key @@ -0,0 +1,8 @@ +-----BEGIN OPENSSH PRIVATE KEY----- +b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAAAMwAA +AAtzc2gtZWQyNTUxOQAAACARgX8gJRfa6oFNsshyAxHz+1PWlsbpG+KrEsbx +LPQgIgAAAJAGI+l2BiPpdgAAAAtzc2gtZWQyNTUxOQAAACARgX8gJRfa6oFN +sshyAxHz+1PWlsbpG+KrEsbxLPQgIgAAAECjMGeE018GlW9SHQFsDb0szA4z +K1XNkHPEZEKf75hY5xGBfyAlF9rqgU2yyHIDEfP7U9aWxukb4qsSxvEs9CAi +AAAAB3ZhZ3JhbnQBAgMEBQY= +-----END OPENSSH PRIVATE KEY----- diff --git a/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/synced_folders b/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/synced_folders new file mode 100644 index 0000000..ed1953f --- /dev/null +++ b/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/synced_folders @@ -0,0 +1 @@ +{"virtualbox":{"/vagrant":{"guestpath":"/vagrant","hostpath":"/home/guillaume.emorine/vagrant/terraform","disabled":false,"__vagrantfile":true}}} \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/vagrant_cwd b/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/vagrant_cwd new file mode 100644 index 0000000..37d2f92 --- /dev/null +++ b/bts_annee_2/vagrantfiles/terraform/.vagrant/machines/default/virtualbox/vagrant_cwd @@ -0,0 +1 @@ +/home/guillaume.emorine/vagrant/terraform \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/terraform/.vagrant/rgloader/loader.rb b/bts_annee_2/vagrantfiles/terraform/.vagrant/rgloader/loader.rb new file mode 100644 index 0000000..b6c81bf --- /dev/null +++ b/bts_annee_2/vagrantfiles/terraform/.vagrant/rgloader/loader.rb @@ -0,0 +1,12 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: BUSL-1.1 + +# This file loads the proper rgloader/loader.rb file that comes packaged +# with Vagrant so that encoded files can properly run with Vagrant. + +if ENV["VAGRANT_INSTALLER_EMBEDDED_DIR"] + require File.expand_path( + "rgloader/loader", ENV["VAGRANT_INSTALLER_EMBEDDED_DIR"]) +else + raise "Encoded files can't be read outside of the Vagrant installer." +end diff --git a/bts_annee_2/vagrantfiles/terraform/Vagrantfile b/bts_annee_2/vagrantfiles/terraform/Vagrantfile new file mode 100644 index 0000000..7e2fb5c --- /dev/null +++ b/bts_annee_2/vagrantfiles/terraform/Vagrantfile @@ -0,0 +1,79 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +# All Vagrant configuration is done below. The "2" in Vagrant.configure +# configures the configuration version (we support older styles for +# backwards compatibility). Please don't change it unless you know what +# you're doing. +Vagrant.configure("2") do |config| + # The most common configuration options are documented and commented below. + # For a complete reference, please see the online documentation at + # https://docs.vagrantup.com. + + # Every Vagrant development environment requires a box. You can search for + # boxes at https://vagrantcloud.com/search. + config.vm.box = "debian/bookworm64" + config.vm.hostname = "terraform" + + # Disable automatic box update checking. If you disable this, then + # boxes will only be checked for updates when the user runs + # `vagrant box outdated`. This is not recommended. + # config.vm.box_check_update = false + + # Create a forwarded port mapping which allows access to a specific port + # within the machine from a port on the host machine. In the example below, + # accessing "localhost:8080" will access port 80 on the guest machine. + # NOTE: This will enable public access to the opened port + # config.vm.network "forwarded_port", guest: 80, host: 8080 + + # Create a forwarded port mapping which allows access to a specific port + # within the machine from a port on the host machine and only allow access + # via 127.0.0.1 to disable public access + # config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1" + + # Create a private network, which allows host-only access to the machine + # using a specific IP. + # config.vm.network "private_network", ip: "192.168.33.10" + + # Create a public network, which generally matched to bridged network. + # Bridged networks make the machine appear as another physical device on + # your network. + config.vm.network "public_network" + + # Share an additional folder to the guest VM. The first argument is + # the path on the host to the actual folder. The second argument is + # the path on the guest to mount the folder. And the optional third + # argument is a set of non-required options. + # config.vm.synced_folder "../data", "/vagrant_data" + + # Disable the default share of the current code directory. Doing this + # provides improved isolation between the vagrant box and your host + # by making sure your Vagrantfile isn't accessable to the vagrant box. + # If you use this you may want to enable additional shared subfolders as + # shown above. + # config.vm.synced_folder ".", "/vagrant", disabled: true + + # Provider-specific configuration so you can fine-tune various + # backing providers for Vagrant. These expose provider-specific options. + # Example for VirtualBox: + # + config.vm.provider "virtualbox" do |vb| + # # Display the VirtualBox GUI when booting the machine + # # vb.gui = true + # + # # Customize the amount of memory on the VM: + vb.memory = "1024" + end + # + # View the documentation for the provider you are using for more + # information on available options. + + # Enable provisioning with a shell script. Additional provisioners such as + # Ansible, Chef, Docker, Puppet and Salt are also available. Please see the + # documentation for more information about their specific syntax and use. + config.vm.provision "shell", inline: <<-SHELL + timedatectl set-timezone Europe/Paris + apt-get update && apt-get upgrade + apt-get install -y gpg vim wget curl neovim mc git + SHELL +end diff --git a/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/action_provision b/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/action_provision new file mode 100644 index 0000000..6600b3f --- /dev/null +++ b/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/action_provision @@ -0,0 +1 @@ +1.5:3b6256ab-67ca-4d72-9280-2f3d496867cc \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/action_set_name b/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/action_set_name new file mode 100644 index 0000000..893083e --- /dev/null +++ b/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/action_set_name @@ -0,0 +1 @@ +1733131100 \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/box_meta b/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/box_meta new file mode 100644 index 0000000..8f728b2 --- /dev/null +++ b/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/box_meta @@ -0,0 +1 @@ +{"name":"debian/bookworm64","version":"12.20240905.1","provider":"virtualbox","directory":"boxes/debian-VAGRANTSLASH-bookworm64/12.20240905.1/virtualbox"} \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/creator_uid b/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/creator_uid new file mode 100644 index 0000000..028ead5 --- /dev/null +++ b/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/creator_uid @@ -0,0 +1 @@ +1010 \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/id b/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/id new file mode 100644 index 0000000..abacf1e --- /dev/null +++ b/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/id @@ -0,0 +1 @@ +3b6256ab-67ca-4d72-9280-2f3d496867cc \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/index_uuid b/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/index_uuid new file mode 100644 index 0000000..f02a153 --- /dev/null +++ b/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/index_uuid @@ -0,0 +1 @@ +48536ea7a68c4d07b248826db13f98cb \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/private_key b/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/private_key new file mode 100644 index 0000000..ae4a39a --- /dev/null +++ b/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/private_key @@ -0,0 +1,8 @@ +-----BEGIN OPENSSH PRIVATE KEY----- +b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAAAMwAA +AAtzc2gtZWQyNTUxOQAAACBS9gznrYoh8+E0NWVW3GQkiz2qR/h+jgajI1L1 +SN18pQAAAJBh5Ct2YeQrdgAAAAtzc2gtZWQyNTUxOQAAACBS9gznrYoh8+E0 +NWVW3GQkiz2qR/h+jgajI1L1SN18pQAAAED+YwoKm7T6WR+NiVl1drxikMUx +ZQ24vE6tCd9c+aqzkFL2DOetiiHz4TQ1ZVbcZCSLPapH+H6OBqMjUvVI3Xyl +AAAAB3ZhZ3JhbnQBAgMEBQY= +-----END OPENSSH PRIVATE KEY----- diff --git a/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/synced_folders b/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/synced_folders new file mode 100644 index 0000000..bb42749 --- /dev/null +++ b/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/synced_folders @@ -0,0 +1 @@ +{"virtualbox":{"/vagrant":{"guestpath":"/vagrant","hostpath":"/home/guillaume.emorine/vagrant/waf-modsecurity","disabled":false,"__vagrantfile":true}}} \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/vagrant_cwd b/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/vagrant_cwd new file mode 100644 index 0000000..e1437fd --- /dev/null +++ b/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/machines/default/virtualbox/vagrant_cwd @@ -0,0 +1 @@ +/home/guillaume.emorine/vagrant/waf-modsecurity \ No newline at end of file diff --git a/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/rgloader/loader.rb b/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/rgloader/loader.rb new file mode 100644 index 0000000..b6c81bf --- /dev/null +++ b/bts_annee_2/vagrantfiles/waf-modsecurity/.vagrant/rgloader/loader.rb @@ -0,0 +1,12 @@ +# Copyright (c) HashiCorp, Inc. +# SPDX-License-Identifier: BUSL-1.1 + +# This file loads the proper rgloader/loader.rb file that comes packaged +# with Vagrant so that encoded files can properly run with Vagrant. + +if ENV["VAGRANT_INSTALLER_EMBEDDED_DIR"] + require File.expand_path( + "rgloader/loader", ENV["VAGRANT_INSTALLER_EMBEDDED_DIR"]) +else + raise "Encoded files can't be read outside of the Vagrant installer." +end diff --git a/bts_annee_2/vagrantfiles/waf-modsecurity/Vagrantfile b/bts_annee_2/vagrantfiles/waf-modsecurity/Vagrantfile new file mode 100644 index 0000000..57c0613 --- /dev/null +++ b/bts_annee_2/vagrantfiles/waf-modsecurity/Vagrantfile @@ -0,0 +1,79 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +# All Vagrant configuration is done below. The "2" in Vagrant.configure +# configures the configuration version (we support older styles for +# backwards compatibility). Please don't change it unless you know what +# you're doing. +Vagrant.configure("2") do |config| + # The most common configuration options are documented and commented below. + # For a complete reference, please see the online documentation at + # https://docs.vagrantup.com. + + # Every Vagrant development environment requires a box. You can search for + # boxes at https://vagrantcloud.com/search. + config.vm.box = "debian/bookworm64" + config.vm.hostname = "modsecurity" + + # Disable automatic box update checking. If you disable this, then + # boxes will only be checked for updates when the user runs + # `vagrant box outdated`. This is not recommended. + # config.vm.box_check_update = false + + # Create a forwarded port mapping which allows access to a specific port + # within the machine from a port on the host machine. In the example below, + # accessing "localhost:8080" will access port 80 on the guest machine. + # NOTE: This will enable public access to the opened port + # config.vm.network "forwarded_port", guest: 80, host: 8080 + + # Create a forwarded port mapping which allows access to a specific port + # within the machine from a port on the host machine and only allow access + # via 127.0.0.1 to disable public access + # config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1" + + # Create a private network, which allows host-only access to the machine + # using a specific IP. + # config.vm.network "private_network", ip: "192.168.33.10" + + # Create a public network, which generally matched to bridged network. + # Bridged networks make the machine appear as another physical device on + # your network. + config.vm.network "public_network" + + # Share an additional folder to the guest VM. The first argument is + # the path on the host to the actual folder. The second argument is + # the path on the guest to mount the folder. And the optional third + # argument is a set of non-required options. + # config.vm.synced_folder "../data", "/vagrant_data" + + # Disable the default share of the current code directory. Doing this + # provides improved isolation between the vagrant box and your host + # by making sure your Vagrantfile isn't accessable to the vagrant box. + # If you use this you may want to enable additional shared subfolders as + # shown above. + # config.vm.synced_folder ".", "/vagrant", disabled: true + + # Provider-specific configuration so you can fine-tune various + # backing providers for Vagrant. These expose provider-specific options. + # Example for VirtualBox: + # + config.vm.provider "virtualbox" do |vb| + # # Display the VirtualBox GUI when booting the machine + # # vb.gui = true + # + # # Customize the amount of memory on the VM: + # vb.memory = "1024" + end + # + # View the documentation for the provider you are using for more + # information on available options. + + # Enable provisioning with a shell script. Additional provisioners such as + # Ansible, Chef, Docker, Puppet and Salt are also available. Please see the + # documentation for more information about their specific syntax and use. + config.vm.provision "shell", inline: <<-SHELL + timedatectl set-timezone Europe/Paris + apt-get update && apt-get upgrade + apt-get install -y vim wget curl neovim mc apache2 libapache2-mod-security2 + SHELL +end \ No newline at end of file