summaryrefslogtreecommitdiffstats
path: root/fooconf-cron
diff options
context:
space:
mode:
Diffstat (limited to 'fooconf-cron')
-rwxr-xr-xfooconf-cron22
1 files changed, 22 insertions, 0 deletions
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()