diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-09-18 21:58:53 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-09-18 21:58:53 +0100 |
commit | 79e5c7bf81ecf01d1cc2751e81b6ffb81d751e66 (patch) | |
tree | 0e5e65ae64a4ae35ee8b6d54b305ca58b52cce11 | |
parent | 45954d982ea447f4cff74e88f8e50b53e8848c0d (diff) | |
download | sos-79e5c7bf81ecf01d1cc2751e81b6ffb81d751e66.tar.gz |
[general] fix typo in hostname symlink
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/general.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/general.py b/sos/plugins/general.py index 070bff78..0c43c8aa 100644 --- a/sos/plugins/general.py +++ b/sos/plugins/general.py @@ -33,7 +33,7 @@ class General(Plugin): ]) self.add_cmd_output("hostname -f") - self.add_cmd_output("hostname", root_symlink=hostname) + self.add_cmd_output("hostname", root_symlink='hostname') self.add_cmd_output("date", root_symlink="date") self.add_cmd_output("uptime", root_symlink="uptime") |