From 231ef515b22aa0204c625340f492eba651ef4bae Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Thu, 29 Nov 2007 14:58:46 -0500 Subject: Initial application of Tim V's patch to enable post install triggers. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 04ba3ec..2a1acfc 100644 --- a/setup.py +++ b/setup.py @@ -63,7 +63,7 @@ if __name__ == "__main__": # cgi files (cgipath, ['scripts/findks.cgi', 'scripts/nopxe.cgi']), - (cgipath, ['scripts/webui.cgi']), + (cgipath, ['scripts/webui.cgi', 'scripts/postinstalltrigger.cgi']), # miscellaneous config files (cgipath, ['config/.htaccess']), @@ -192,6 +192,7 @@ if __name__ == "__main__": ("%sdelete/repo/pre" % trigpath, []), ("%sdelete/repo/post" % trigpath, []), ("%sdelete/repo/post" % trigpath, []), + ("%sinstall/post" % trigpath, []), ("%ssync/pre" % trigpath, []), ("%ssync/post" % trigpath, [ "triggers/restart-services.trigger" ]) ], -- cgit