From 05acbc55ab8ca0e2eefcbd988d32869dc6162597 Mon Sep 17 00:00:00 2001 From: frank Date: Mon, 12 Sep 2011 18:07:53 -0700 Subject: [PATCH] make /root writable in ubuntu --- python/lib/cloudutils/serviceConfig.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/lib/cloudutils/serviceConfig.py b/python/lib/cloudutils/serviceConfig.py index 24e78dab54b..256866b45e9 100755 --- a/python/lib/cloudutils/serviceConfig.py +++ b/python/lib/cloudutils/serviceConfig.py @@ -667,6 +667,9 @@ class ubuntuFirewallConfigServer(firewallConfigServer): try: for port in self.ports: self.allowPort(port) + + #FIXME: urgly make /root writable + bash("sudo chmod 0777 /root") return True except: