From 4e9653f95e7b5810a3a53ecc8fb2f1e16d2d0ea0 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 30 Apr 2010 23:35:30 -0700 Subject: [PATCH] Made `last_updated_at` `created_at` instead --- lib/vagrant/active_list.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/active_list.rb b/lib/vagrant/active_list.rb index 6efcc6521..334ef7c8a 100644 --- a/lib/vagrant/active_list.rb +++ b/lib/vagrant/active_list.rb @@ -50,7 +50,7 @@ module Vagrant def add(vm) list[vm.uuid] = { :path => env.root_path, - :last_updated => Time.now.to_i + :created_at => Time.now.to_i } save