From 1e3f8604797459a1cb45db617958256557cde9d8 Mon Sep 17 00:00:00 2001 From: Narayan Desai Date: Mon, 2 Mar 2009 04:05:06 +0000 Subject: Snapshots update - storage of packages works from clients (old-style statistics) git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@5092 ce84e21b-d406-0410-9b95-82705330c041 --- src/lib/Server/Admin/Snapshots.py | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/lib/Server/Admin/Snapshots.py (limited to 'src/lib/Server/Admin/Snapshots.py') diff --git a/src/lib/Server/Admin/Snapshots.py b/src/lib/Server/Admin/Snapshots.py new file mode 100644 index 000000000..17db0af62 --- /dev/null +++ b/src/lib/Server/Admin/Snapshots.py @@ -0,0 +1,29 @@ +import Bcfg2.Server.Admin +import sqlalchemy, sqlalchemy.orm +import Bcfg2.Server.Snapshots +import Bcfg2.Server.Snapshots.model + +class Snapshots(Bcfg2.Server.Admin.Mode): + __shorthelp__ = "Interact with the Snapshots system" + __longhelp__ = (__shorthelp__) + __usage__ = ("bcfg2-admin snapshots [init|query qtype] ") + + q_dispatch = {'client':Bcfg2.Server.Snapshots.model.Client, + 'group':Bcfg2.Server.Snapshots.model.Group, + 'snapshot':Bcfg2.Server.Snapshots.model.Snapshot, + } + + def __init__(self, configfile): + Bcfg2.Server.Admin.Mode.__init__(self, configfile) + self.session = Bcfg2.Server.Snapshots.setup_session(debug=True) + + def __call__(self, args): + if args[0] == 'query': + if args[1] in self.q_dispatch: + q_obj = self.q_dispatch[args[1]] + results = self.session.query(q_obj).all() + else: + print 'error' + raise SystemExit, 1 + for result in results: + print result.name -- cgit v1.2.3-1-g7c22