Configure Vagrant for dirsrv

This commit is contained in:
2020-12-08 13:24:54 +01:00
parent bc80540c14
commit 26db8597fd

6
Vagrantfile vendored
View File

@@ -35,11 +35,11 @@ Vagrant.configure(2) do |config|
# Create a forwarded port mapping which allows access to a specific port # 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, # 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. # accessing "localhost:8080" will access port 80 on the guest machine.
# config.vm.network "forwarded_port", guest: 80, host: 8080 # config.vm.network "forwarded_port", guest: 389, host: 389
# Create a private network, which allows host-only access to the machine # Create a private network, which allows host-only access to the machine
# using a specific IP. # using a specific IP.
# config.vm.network "private_network", ip: "192.168.33.10" config.vm.network "private_network", ip: "192.168.33.10"
# Create a public network, which generally matched to bridged network. # Create a public network, which generally matched to bridged network.
# Bridged networks make the machine appear as another physical device on # Bridged networks make the machine appear as another physical device on
@@ -94,7 +94,7 @@ Vagrant.configure(2) do |config|
chef.encrypted_data_bag_secret_key_path = '.chef/encrypted_data_bag_secret' chef.encrypted_data_bag_secret_key_path = '.chef/encrypted_data_bag_secret'
chef.environment = 'development' chef.environment = 'development'
chef.add_recipe 'kosmos-base' chef.add_recipe 'kosmos-base'
chef.add_recipe 'kosmos_encfs' chef.add_recipe 'kosmos-dirsrv'
# chef.add_recipe 'kosmos-bitcoin::source' # chef.add_recipe 'kosmos-bitcoin::source'
# chef.add_recipe 'kosmos-mediawiki' # chef.add_recipe 'kosmos-mediawiki'
# chef.add_recipe 'kosmos-wordpress' # chef.add_recipe 'kosmos-wordpress'