[X2go-Commits] pyhoca-cli.git - master (branch) updated: 0.2.0.1-3-g406d0b9

X2Go dev team git-admin at x2go.org
Mon Jul 23 21:42:48 CEST 2012


The branch, master has been updated
       via  406d0b9b7f4708f96d94bd6e98c382397dd94874 (commit)
       via  391558b4a7469a8daf4bfbda3c064aea5b7e5ccb (commit)
      from  14c601faad831198ca89c882071f7443d9a33017 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 406d0b9b7f4708f96d94bd6e98c382397dd94874
Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
Date:   Mon Jul 23 21:42:44 2012 +0200

    release 0.2.0.2

commit 391558b4a7469a8daf4bfbda3c064aea5b7e5ccb
Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
Date:   Mon Jul 23 21:42:30 2012 +0200

    Do not fail if HOME dir is read-only, needed for building with sbuild.

-----------------------------------------------------------------------

Summary of changes:
 debian/changelog       |    8 +++++---
 pyhoca/cli/frontend.py |    6 ++++--
 2 files changed, 9 insertions(+), 5 deletions(-)

The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 4468c85..27a3d84 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,10 @@
-pyhoca-cli (0.2.0.2-0~x2go1) UNRELEASED; urgency=low
+pyhoca-cli (0.2.0.2-0~x2go1) unstable; urgency=low
 
-  * Continue development...
+  * New upstream version (0.2.0.2):
+    - Do not fail if HOME dir is read-only, needed for building with
+      sbuild.
 
- -- Mike Gabriel <mike.gabriel at das-netzwerkteam.de>  Mon, 11 Jun 2012 07:48:22 +0200
+ -- Mike Gabriel <mike.gabriel at das-netzwerkteam.de>  Mon, 23 Jul 2012 21:42:33 +0200
 
 pyhoca-cli (0.2.0.1-0~x2go1) unstable; urgency=low
 
diff --git a/pyhoca/cli/frontend.py b/pyhoca/cli/frontend.py
index b957fae..7636399 100644
--- a/pyhoca/cli/frontend.py
+++ b/pyhoca/cli/frontend.py
@@ -44,11 +44,13 @@ from x2go.utils import touch_file as _touch_file
 # define and create known_hosts file (if not there)
 ssh_known_hosts_filename = os.path.join(x2go.LOCAL_HOME, x2go.X2GO_SSH_ROOTDIR, 'known_hosts')
 if not os.path.isfile(ssh_known_hosts_filename):
-    _touch_file(ssh_known_hosts_filename)
+    try: _touch_file(ssh_known_hosts_filename)
+    except OSError: pass
 # define and create ssh_config file (if not there)
 ssh_config_filename = os.path.join(x2go.LOCAL_HOME, x2go.X2GO_SSH_ROOTDIR, 'config')
 if not os.path.isfile(ssh_config_filename):
-    _touch_file(ssh_config_filename)
+    try: _touch_file(ssh_config_filename)
+    except OSError: pass
 
 
 # sometimes we have to fail...


hooks/post-receive
-- 
pyhoca-cli.git (Python X2Go Client (command line client))

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "pyhoca-cli.git" (Python X2Go Client (command line client)).




More information about the x2go-commits mailing list