diff options
author | Jamis Buck <jamis@37signals.com> | 2005-08-27 14:42:58 +0000 |
---|---|---|
committer | Jamis Buck <jamis@37signals.com> | 2005-08-27 14:42:58 +0000 |
commit | 959e06a0fc1dd3b85aeb5d0d005eff2a02eb547e (patch) | |
tree | 0e141dd1f36a31edd6c3683bbc08df5956f1e520 /switchtower/lib | |
parent | b80f0e2ff3a51e6166e4e29b87a7380f42529e7a (diff) | |
download | rails-959e06a0fc1dd3b85aeb5d0d005eff2a02eb547e.tar.gz rails-959e06a0fc1dd3b85aeb5d0d005eff2a02eb547e.tar.bz2 rails-959e06a0fc1dd3b85aeb5d0d005eff2a02eb547e.zip |
SwitchTower: log checkouts to a "revisions.log" file
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2060 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'switchtower/lib')
-rw-r--r-- | switchtower/lib/switchtower/scm/base.rb | 21 | ||||
-rw-r--r-- | switchtower/lib/switchtower/scm/cvs.rb | 11 | ||||
-rw-r--r-- | switchtower/lib/switchtower/scm/darcs.rb | 8 | ||||
-rw-r--r-- | switchtower/lib/switchtower/scm/subversion.rb | 13 |
4 files changed, 29 insertions, 24 deletions
diff --git a/switchtower/lib/switchtower/scm/base.rb b/switchtower/lib/switchtower/scm/base.rb index 4e079d2758..4e325aa155 100644 --- a/switchtower/lib/switchtower/scm/base.rb +++ b/switchtower/lib/switchtower/scm/base.rb @@ -9,9 +9,26 @@ module SwitchTower @configuration = configuration end - def checkout(actor) - raise NotImplementedError, "subclasses must implement checkout" + def latest_revision + nil end + + private + + def run_checkout(actor, guts, &block) + log = "#{configuration.deploy_to}/revisions.log" + directory = File.basename(configuration.release_path) + + command = <<-STR + if [[ ! -d #{configuration.release_path} ]]; then + #{guts} + echo `date +"%Y-%m-%d %H:%M:%S"` $USER #{latest_revision} #{directory} >> #{log}; + chmod 666 #{log}; + fi + STR + + actor.run(command, &block) + end end end diff --git a/switchtower/lib/switchtower/scm/cvs.rb b/switchtower/lib/switchtower/scm/cvs.rb index db3eae9261..794a3b5212 100644 --- a/switchtower/lib/switchtower/scm/cvs.rb +++ b/switchtower/lib/switchtower/scm/cvs.rb @@ -44,12 +44,11 @@ module SwitchTower cvs_rsh = configuration[:cvs_rsh] || ENV['CVS_RSH'] || "ssh" command = <<-CMD - if [[ ! -d #{actor.release_path} ]]; then - cd #{configuration.releases_path}; - CVS_RSH="#{cvs_rsh}" #{cvs} -d #{configuration.repository} -Q co -D "#{latest_revision}" -d #{File.basename(actor.release_path)} #{actor.application}; - fi + cd #{configuration.releases_path}; + CVS_RSH="#{cvs_rsh}" #{cvs} -d #{configuration.repository} -Q co -D "#{latest_revision}" -d #{File.basename(actor.release_path)} #{actor.application}; CMD - actor.run(command) do |ch, stream, out| + + run_checkout(actor, command) do |ch, stream, out| prefix = "#{stream} :: #{ch[:host]}" actor.logger.info out, prefix if out =~ %r{password:} @@ -64,7 +63,7 @@ module SwitchTower end private - + def cvs_log(path) `cd #{path || "."} && cvs -q log -N -rHEAD` end diff --git a/switchtower/lib/switchtower/scm/darcs.rb b/switchtower/lib/switchtower/scm/darcs.rb index acaa006951..ebc2f02549 100644 --- a/switchtower/lib/switchtower/scm/darcs.rb +++ b/switchtower/lib/switchtower/scm/darcs.rb @@ -18,13 +18,7 @@ module SwitchTower # revision. Uses the given actor instance to execute the command. def checkout(actor) darcs = configuration[:darcs] ? configuration[:darcs] : "darcs" - - command = <<-CMD - if [[ ! -d #{actor.release_path} ]]; then - #{darcs} get -q --set-scripts-executable #{configuration.repository} #{actor.release_path}; - fi - CMD - actor.run(command) + run_checkout(actor, "#{darcs} get -q --set-scripts-executable #{configuration.repository} #{actor.release_path};") end end diff --git a/switchtower/lib/switchtower/scm/subversion.rb b/switchtower/lib/switchtower/scm/subversion.rb index 368c965dec..7656cfe3f8 100644 --- a/switchtower/lib/switchtower/scm/subversion.rb +++ b/switchtower/lib/switchtower/scm/subversion.rb @@ -42,14 +42,9 @@ module SwitchTower def checkout(actor) svn = configuration[:svn] ? configuration[:svn] : "svn" - command = <<-CMD - if [[ -d #{actor.release_path} ]]; then - #{svn} up -q -r#{latest_revision} #{actor.release_path}; - else - #{svn} co -q -r#{latest_revision} #{configuration.repository} #{actor.release_path}; - fi - CMD - actor.run(command) do |ch, stream, out| + command = "#{svn} co -q -r#{latest_revision} #{configuration.repository} #{actor.release_path};" + + run_checkout(actor, command) do |ch, stream, out| prefix = "#{stream} :: #{ch[:host]}" actor.logger.info out, prefix if out =~ /^Password.*:/ @@ -72,7 +67,7 @@ module SwitchTower end private - + def svn_log(path) `svn log -q -rhead #{path}` end |