backupgem 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +9 -3
- data/lib/backup/recipes/standard.rb +1 -1
- metadata +2 -2
data/CHANGELOG
CHANGED
@@ -1,12 +1,18 @@
|
|
1
1
|
= Backup Changelog
|
2
2
|
|
3
|
-
== Version 0.0.
|
3
|
+
== Version 0.0.4
|
4
4
|
|
5
|
-
*
|
6
|
-
|
5
|
+
* Fixed a bug in 'scp' in the standard recipe that ignored the user when using
|
6
|
+
scp. Thanks to Colin Slater for catching this.
|
7
7
|
|
8
8
|
== Version 0.0.3
|
9
9
|
|
10
10
|
* Fixed a critical bug that did not allow re-defining the :delivery or :rotate
|
11
11
|
methods. Thanks to James Healy for pointing this out.
|
12
12
|
|
13
|
+
== Version 0.0.2
|
14
|
+
|
15
|
+
* First stable code in place.
|
16
|
+
* Packaged in an gem format
|
17
|
+
|
18
|
+
|
@@ -69,7 +69,7 @@ action(:scp) do
|
|
69
69
|
# scp the local file to the foreign directory. same name.
|
70
70
|
c[:servers].each do |server|
|
71
71
|
host = server =~ /localhost/ ? "" : "#{server}:"
|
72
|
-
sh "scp #{last_result} #{host}#{c[:backup_path]}/"
|
72
|
+
sh "scp #{last_result} #{c[:ssh_user]}@#{host}#{c[:backup_path]}/"
|
73
73
|
end
|
74
74
|
c[:backup_path] + "/" + File.basename(last_result)
|
75
75
|
end
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
|
|
3
3
|
specification_version: 1
|
4
4
|
name: backupgem
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.0.
|
7
|
-
date: 2006-10-
|
6
|
+
version: 0.0.4
|
7
|
+
date: 2006-10-16 00:00:00 -07:00
|
8
8
|
summary: Beginning-to-end solution for backups and rotation.
|
9
9
|
require_paths:
|
10
10
|
- lib
|