From 763389ac4effe1921dc3de38188678232c690bc2 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 23 Jun 2010 00:02:32 -0700 Subject: [PATCH] Crontab entry appends to log file instead of creating every time --- templates/unison/crontab_entry.erb | 2 +- vagrant.gemspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/unison/crontab_entry.erb b/templates/unison/crontab_entry.erb index 5c4770641..c4df476cd 100644 --- a/templates/unison/crontab_entry.erb +++ b/templates/unison/crontab_entry.erb @@ -1 +1 @@ -* * * * * <%= script %> '<%= from %>' '<%= to %>' '<%= options %>' > <%= log_file %> 2>&1 +* * * * * <%= script %> '<%= from %>' '<%= to %>' '<%= options %>' >> <%= log_file %> 2>&1 diff --git a/vagrant.gemspec b/vagrant.gemspec index 23e86da96..57df0184f 100644 --- a/vagrant.gemspec +++ b/vagrant.gemspec @@ -9,7 +9,7 @@ Gem::Specification.new do |s| s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version= s.authors = ["Mitchell Hashimoto", "John Bender"] - s.date = %q{2010-06-22} + s.date = %q{2010-06-23} s.default_executable = %q{vagrant} s.description = %q{Vagrant is a tool for building and distributing virtualized development environments.} s.email = ["mitchell.hashimoto@gmail.com", "john.m.bender@gmail.com"]