From d71a666dbb0fec181a894367d785722896fccb0d Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Tue, 9 Aug 2011 22:30:23 +0200 Subject: [PATCH 1/4] map: Inverted two lines. --- qasim/map.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qasim/map.rb b/qasim/map.rb index 926e1bf..b2dd843 100644 --- a/qasim/map.rb +++ b/qasim/map.rb @@ -143,8 +143,8 @@ module Qasim # # FIXME: test connexion with Net::SSH + timeout or ask password @links.each do |name, remotepath| - FileUtils.mkdir_p localpath localpath = File.join ENV['HOME'], "mnt", name + FileUtils.mkdir_p localpath cmd = "sshfs" cmd_args = [ "-o","allow_root" , From f9f5b5e9594c5a6798ab0fb64feb16a9c5a26ee7 Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Tue, 9 Aug 2011 22:35:32 +0200 Subject: [PATCH 2/4] Updated debian changelog. --- debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index 86bfd1c..582eed9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +qasim (0.1.4) unstable; urgency=low + + * Fixed localpath bug. + + -- Glenn ROLLAND Tue, 09 Aug 2011 22:35:10 +0200 + qasim (0.1.3) unstable; urgency=low * Create mountpoint if non-existant. From 5f773441de9b13e5a8139cb7181547ec7b5709a3 Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Tue, 9 Aug 2011 22:45:12 +0200 Subject: [PATCH 3/4] map: Added missing require for fileutils. --- qasim/map.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/qasim/map.rb b/qasim/map.rb index b2dd843..35ab34e 100644 --- a/qasim/map.rb +++ b/qasim/map.rb @@ -1,4 +1,5 @@ +require 'fileutils' require 'rubygems' #require 'rdebug/base' require 'qasim/config' From 4ec7504ed5b0bd2b6fb7169b8e941c2468e4deb9 Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Tue, 9 Aug 2011 22:46:43 +0200 Subject: [PATCH 4/4] Updated changelog. --- debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index 582eed9..b30213b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +qasim (0.1.5) unstable; urgency=low + + * map: Added missing require for fileutils. + + -- Glenn ROLLAND Tue, 09 Aug 2011 22:46:33 +0200 + qasim (0.1.4) unstable; urgency=low * Fixed localpath bug.