summaryrefslogtreecommitdiffstats
path: root/vagrant_support/use-nytprof
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2017-12-31 18:37:08 +0100
committerGitHub <noreply@github.com>2017-12-31 18:37:08 +0100
commit125e0612222925486c7911433fb286092add98a7 (patch)
tree5f97e0a74dab8701194b34f9b46d44e891f2bf59 /vagrant_support/use-nytprof
parent67bcfc3fe5a24e48bb9d0720d5ea7b687db4e368 (diff)
downloadbugzilla-125e0612222925486c7911433fb286092add98a7.tar.gz
bugzilla-125e0612222925486c7911433fb286092add98a7.tar.xz
no bug - add utility to toggle USE_NYTPROF (#323)
Diffstat (limited to 'vagrant_support/use-nytprof')
-rw-r--r--vagrant_support/use-nytprof12
1 files changed, 12 insertions, 0 deletions
diff --git a/vagrant_support/use-nytprof b/vagrant_support/use-nytprof
new file mode 100644
index 000000000..7c9dd3fba
--- /dev/null
+++ b/vagrant_support/use-nytprof
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+USE_NYTPROF="$1"
+if [[ -z $USE_NYTPROF ]]; then
+ USE_NYTPROF=1
+fi
+
+perl -e 'warn "Devel::NYTProf is ", $ARGV[0] ? "enabled" : "disabled", "\n";' "$USE_NYTPROF"
+
+sudo env USE_NYTPROF="$USE_NYTPROF" perl -i -pe 's/^\s*(PerlSetEnv\s+USE_NYTPROF\b).*$/$1 $ENV{USE_NYTPROF}/gmi' \
+ /etc/httpd/conf.d/bugzilla.conf
+sudo service httpd restart \ No newline at end of file