diff options
author | Chris St. Pierre <chris.a.st.pierre@gmail.com> | 2011-07-15 08:02:12 -0400 |
---|---|---|
committer | Chris St. Pierre <chris.a.st.pierre@gmail.com> | 2011-07-15 08:02:12 -0400 |
commit | a5877a79f6dbde1ea4be49b3b38a71f3749e219d (patch) | |
tree | 53422131060370b40af829d5e8087fd8c828416a | |
parent | 9e8e92a6ff91d2e1a90e33b698208f9df68ea283 (diff) | |
download | bcfg2-a5877a79f6dbde1ea4be49b3b38a71f3749e219d.tar.gz bcfg2-a5877a79f6dbde1ea4be49b3b38a71f3749e219d.tar.bz2 bcfg2-a5877a79f6dbde1ea4be49b3b38a71f3749e219d.zip |
fixed output from ohai plugin when ohai not installed
-rw-r--r-- | src/lib/Server/Plugins/Ohai.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/Server/Plugins/Ohai.py b/src/lib/Server/Plugins/Ohai.py index 049aadd4f..301d01193 100644 --- a/src/lib/Server/Plugins/Ohai.py +++ b/src/lib/Server/Plugins/Ohai.py @@ -24,7 +24,6 @@ probecode = """#!/bin/sh if type ohai >& /dev/null; then ohai else - echo group:ohai-not-installed # an empty dict, so "'foo' in metadata.Ohai" tests succeed echo '{}' fi |