From 8bbc156ca9a4bf3bfff8a9b7014a002808b1b7f0 Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Wed, 23 Dec 2015 20:46:43 +0100 Subject: Bug 1201113: Support to run Bugzilla as a PSGI application r=dylan --- shutdown.cgi | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 shutdown.cgi (limited to 'shutdown.cgi') diff --git a/shutdown.cgi b/shutdown.cgi new file mode 100755 index 000000000..7b33ec7c4 --- /dev/null +++ b/shutdown.cgi @@ -0,0 +1,17 @@ +#!/usr/bin/perl -T +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +# This Source Code Form is "Incompatible With Secondary Licenses", as +# defined by the Mozilla Public License, v. 2.0. + +use 5.10.1; +use strict; +use warnings; + +use lib qw(. lib); + +use Bugzilla; + +Bugzilla::_shutdown(); -- cgit v1.2.3-24-g4f1b