better directory struct

This commit is contained in:
2019-05-16 14:14:42 -04:00
parent b49dfa915e
commit 977318fbe4
71 changed files with 33 additions and 11 deletions

9
Vagrantfile vendored
View File

@ -42,9 +42,12 @@ Vagrant.configure("2") do |config|
config.vm.provision "chef_solo" do |chef|
chef.version = "14.12.3" # version 14.12.9 fails to run
chef.cookbooks_path = "cookbooks/"
chef.roles_path = "roles"
chef.add_role("gitea")
chef.cookbooks_path = [
'ops/cookbooks/',
'ops/cookbooks/vendor'
]
chef.roles_path = 'ops/roles'
chef.add_role('gitea')
chef.json = {
'custom-domain': 'localhost.vm42.us',
'custom-title': 'My gitea server!',