diff options
author | Bryan Quigley <bryan.quigley@canonical.com> | 2019-02-15 11:48:21 -0800 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2019-03-04 16:31:21 +0000 |
commit | f3896c51c256f6effaaeb4dcec14130556dd9ce5 (patch) | |
tree | 553e3e217a765ec6c7117d1c24c847b948beac4a | |
parent | 4b004ba3e4fd83da5d7fbea617478918d9ee2ec2 (diff) | |
download | sos-f3896c51c256f6effaaeb4dcec14130556dd9ce5.tar.gz |
[services] add rc.local
Resolves: #1566
Closes: #1545
Signed-off-by: Bryan Quigley <bryan.quigley@canonical.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/services.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sos/plugins/services.py b/sos/plugins/services.py index e08f1a5f..372e4342 100644 --- a/sos/plugins/services.py +++ b/sos/plugins/services.py @@ -22,7 +22,8 @@ class Services(Plugin): def setup(self): self.add_copy_spec([ "/etc/inittab", - "/etc/rc.d" + "/etc/rc.d", + "/etc/rc.local" ]) if self.get_option('servicestatus'): self.add_cmd_output("/sbin/service --status-all") |