Commit 6ed177ff181377745e2ef6e9bbcfb19d90e3bb85

Authored by Antonio Terceiro
1 parent 7762d3f6

Very first steps

.gitignore
1 1 /utils/obs/isv*
  2 +/Gemfile.lock
  3 +/.ssh_config
  4 +/.tmp
... ...
Gemfile 0 → 100644
... ... @@ -0,0 +1 @@
  1 +gem 'chake', '>= 0.2.1'
... ...
Rakefile 0 → 100644
... ... @@ -0,0 +1,5 @@
  1 +if !File.exist?('.ssh_config')
  2 + sh "vagrant ssh-config > .ssh_config"
  3 +end
  4 +
  5 +require 'chake'
... ...
config.rb 0 → 100644
... ... @@ -0,0 +1,4 @@
  1 +root = File.expand_path(File.dirname(__FILE__))
  2 +file_cache_path root + '/cache'
  3 +cookbook_path root + '/cookbooks'
  4 +role_path root + '/config/roles'
... ...
cookbooks/basics/recipes/default.rb 0 → 100644
... ... @@ -0,0 +1 @@
  1 +package 'vim'
... ...
nodes.yaml 0 → 100644
... ... @@ -0,0 +1,3 @@
  1 +vagrant@default:
  2 + run_list:
  3 + - recipe[basics]
... ...