From defe28ec26a1903c052c94490a7cd625189e92b6 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Thu, 12 Feb 2009 18:14:24 -0500 Subject: Working on moving stock triggers over to be python based, while still supporting shell triggers. These execute faster and can use native API handles without reloading penalties. Unit tests still have some errors, so we're not done with this. --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index e226c77d..fc500025 100644 --- a/setup.py +++ b/setup.py @@ -342,10 +342,10 @@ if __name__ == "__main__": ("%s/delete/repo/pre" % trigpath, []), ("%s/delete/repo/post" % trigpath, []), ("%s/delete/repo/post" % trigpath, []), - ("%s/install/pre" % trigpath, [ "triggers/status_pre.trigger", "triggers/clear_anamon_logs.trigger"]), - ("%s/install/post" % trigpath, [ "triggers/status_post.trigger", "triggers/build_report.trigger"]), + ("%s/install/pre" % trigpath, []), + ("%s/install/post" % trigpath, []), ("%s/sync/pre" % trigpath, []), - ("%s/sync/post" % trigpath, [ "triggers/restart-services.trigger" ]) + ("%s/sync/post" % trigpath, []) ], description = SHORT_DESC, long_description = LONG_DESC -- cgit