summaryrefslogtreecommitdiff
path: root/network/ios/ios_facts.py
diff options
context:
space:
mode:
Diffstat (limited to 'network/ios/ios_facts.py')
-rw-r--r--network/ios/ios_facts.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/network/ios/ios_facts.py b/network/ios/ios_facts.py
index 699637d9..c1516cec 100644
--- a/network/ios/ios_facts.py
+++ b/network/ios/ios_facts.py
@@ -195,12 +195,12 @@ class Default(FactsBase):
class Hardware(FactsBase):
def commands(self):
- add_command(self.runner, 'dir all-filesystems | include Directory')
+ add_command(self.runner, 'dir | include Directory')
add_command(self.runner, 'show version')
add_command(self.runner, 'show memory statistics | include Processor')
def populate(self):
- data = self.runner.get_command('dir all-filesystems | include Directory')
+ data = self.runner.get_command('dir | include Directory')
self.facts['filesystems'] = self.parse_filesystems(data)
data = self.runner.get_command('show memory statistics | include Processor')