summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authork clair <kclair@riseup.net>2012-09-26 15:19:56 -0700
committerk clair <kclair@riseup.net>2012-09-26 15:19:56 -0700
commit6d6960713315ea52b12ca1d4cf696c3fb7c816fa (patch)
tree4b9573beec020ab8067c8eb2f8706da975515c3f
parent374b05161220e6907b2f6010b083bc7970c6c9fc (diff)
variable PASSENGER_STATUS does not need to be quoted with backticks.
-rwxr-xr-xfiles/munin/passenger_stats2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/munin/passenger_stats b/files/munin/passenger_stats
index f06e88a..726cb6a 100755
--- a/files/munin/passenger_stats
+++ b/files/munin/passenger_stats
@@ -18,7 +18,7 @@ END
end
def output_values
- status = `#{PASSENGER_STATUS}`
+ status = PASSENGER_STATUS
unless $?.success?
$stderr.puts "failed executing passenger-status"
exit 1