Checkpoint / the simplest test looks to be working now (~/.vimrc)
[vagrant-dotfiles.git] / lib / copy_my_conf / git.rb
diff --git a/lib/copy_my_conf/git.rb b/lib/copy_my_conf/git.rb
deleted file mode 100644 (file)
index 4ee5240..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-module CopyMyConf
-  class Git
-    def prepare vm, tmp_root
-      `mkdir -p #{tmp_root}/git`
-      `cp ~/.gitconfig #{tmp_root}/git/`
-      vm.synced_folder("#{tmp_root}/git/", "#{tmp_root}/git", :id => "git")
-    end
-
-    def provision channel, user_home, tmp_root
-      puts "Copying your gitconfig"
-      channel.execute("cp #{tmp_root}/git/.gitconfig #{user_home}")
-    end
-  end
-end