From 3dbedae6d25dc4652f7ac1a1542e19e630b90894 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Wed, 25 Jul 2012 17:34:31 -0700 Subject: apt-get wrappers --- exmachina.py | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ test_exmachina.py | 3 +++ 2 files changed, 58 insertions(+) diff --git a/exmachina.py b/exmachina.py index ab8ceee..60c0771 100755 --- a/exmachina.py +++ b/exmachina.py @@ -77,6 +77,37 @@ def execute_service(servicename, action, timeout=10): stdout, stderr = proc.communicate() return stdout, stderr, proc.returncode +def execute_apt(packagename, action, timeout=120, aptargs=['-q', '-y']): + # ensure package name isn't tricky trick + if action != "update" \ + and (packagename != packagename.strip().split()[0] \ + or packagename.startswith('-')): + raise ValueError("Not a good apt package name: %s" % packagename) + + if action == "update": + command_list = ['apt-get', action] + else: + command_list = ['apt-get', action, packagename] + command_list.extend(aptargs) + log.info("executing: %s" % command_list) + proc = subprocess.Popen(command_list, + bufsize=0, + stdout=subprocess.PIPE, + stderr=subprocess.PIPE) + poll_seconds = .250 + deadline = time.time() + timeout + while time.time() < deadline and proc.poll() is None: + time.sleep(poll_seconds) + + if proc.poll() is None: + if float(sys.version[:3]) >= 2.6: + proc.terminate() + raise Exception("execution timed out (>%d seconds): %s" % + (timeout, command_list)) + + stdout, stderr = proc.communicate() + return stdout, stderr, proc.returncode + class ExMachinaHandler(bjsonrpc.handlers.BaseHandler): @@ -147,6 +178,13 @@ class ExMachinaHandler(bjsonrpc.handlers.BaseHandler): log.info("augeas: remove %s" % path) return self.augeas.remove(path.encode('utf-8')) + # ------------- Misc. non-Augeas Helpers ----------------- + def set_timezone(self, tzname): + if not self.secret_key: + log.info("reset timezone to %s" % tzname) + pass + + # ------------- init.d Service Control ----------------- def initd_status(self, servicename): if not self.secret_key: @@ -164,6 +202,19 @@ class ExMachinaHandler(bjsonrpc.handlers.BaseHandler): if not self.secret_key: return execute_service(servicename, "restart") + # ------------- apt-get Package Control ----------------- + def apt_install(self, packagename): + if not self.secret_key: + return execute_apt(packagename, "install") + + def apt_update(self): + if not self.secret_key: + return execute_apt("", "update") + + def apt_remove(self, packagename): + if not self.secret_key: + return execute_apt(packagename, "remove") + class EmptyClass(): # Used by ExMachinaClient below @@ -197,6 +248,7 @@ class ExMachinaClient(): self.augeas = EmptyClass() self.initd = EmptyClass() + self.apt = EmptyClass() self.augeas.save = self.conn.call.augeas_save self.augeas.set = self.conn.call.augeas_set @@ -210,6 +262,9 @@ class ExMachinaClient(): self.initd.start = self.conn.call.initd_start self.initd.stop = self.conn.call.initd_stop self.initd.restart = self.conn.call.initd_restart + self.apt.install = self.conn.call.apt_install + self.apt.update = self.conn.call.apt_update + self.apt.remove = self.conn.call.apt_remove def close(self): self.sock.close() diff --git a/test_exmachina.py b/test_exmachina.py index 3039129..ec73def 100755 --- a/test_exmachina.py +++ b/test_exmachina.py @@ -65,6 +65,9 @@ def main(): print client.initd.status("greentooth") print "(expect Error on the above line)" print client.initd.status("bluetooth") + print client.apt.install("pkg_which_does_not_exist") + print client.apt.remove("pkg_which_does_not_exist") + #print client.apt.update() # can be slow... client.close() if __name__ == '__main__': -- cgit v1.2.3