From 77950eb55c5d54cf2da41cff86e8cb701ae780a3 Mon Sep 17 00:00:00 2001 From: Jorge Schrauwen Date: Thu, 26 Nov 2015 21:36:39 +0000 Subject: [PATCH] fix docstring for get_bufsize #29235 --- salt/modules/network.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/salt/modules/network.py b/salt/modules/network.py index 9335d97642..541c2b9202 100644 --- a/salt/modules/network.py +++ b/salt/modules/network.py @@ -1158,13 +1158,13 @@ def _get_bufsize_linux(iface): def get_bufsize(iface): ''' - Return network buffer sizes as a dict + Return network buffer sizes as a dict (currently linux only) CLI Example: .. code-block:: bash - salt '*' network.getbufsize + salt '*' network.ge_tbufsize ''' if __grains__['kernel'] == 'Linux': if os.path.exists('/sbin/ethtool'):