From f54ca21bb5823e935f7fc910b3883ef630052297 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 7 Dec 2004 16:53:18 +0000 Subject: move stuff into trunk git-svn-id: file:///home/lennart/svn/public/fooconf/trunk@5 a3b0ba65-a9ea-0310-aec1-fe512e4e1665 --- fooconf-cron | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 fooconf-cron (limited to 'fooconf-cron') diff --git a/fooconf-cron b/fooconf-cron new file mode 100755 index 0000000..04726b2 --- /dev/null +++ b/fooconf-cron @@ -0,0 +1,22 @@ +#!/usr/bin/env python +# Hey Emacs, this is -*-python-*- code! + +from fooconflib import * + +def generateCronFragment(ctx = FooConfContext()) : + cursor = ctx.db.cursor() + + cursor.execute("SELECT name "+ + "FROM account, permission "+ + "WHERE enabled=\"t\" "+ + "AND permission.id=account.id "+ + "AND action=\"cron\"") + + while 1: + row = cursor.fetchone() + if row is None: break + + print ctx.makeSysUserName(row["name"]) + +if __name__ == "__main__": + generateCronFragment() -- cgit