summaryrefslogtreecommitdiffstats
path: root/census
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2011-07-31 04:28:03 +0200
committermakefu <github@syntax-fehler.de>2011-07-31 04:28:03 +0200
commit91fb1ceeb631b2b0eaced5126c3008b33f59aba9 (patch)
tree1146ff3a3681d7ab6f5a4886979a2b62ef5cd2e1 /census
parent102bc2fac260f4bdc5c5710a3d9f8f971cad4a45 (diff)
arping_users.py: replaced verbose with quiet flag
Diffstat (limited to 'census')
-rwxr-xr-xcensus/arping_users.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/census/arping_users.py b/census/arping_users.py
index 008fe337..ec3557d4 100755
--- a/census/arping_users.py
+++ b/census/arping_users.py
@@ -7,10 +7,10 @@ DEV='eth0'
MAC_NAMES='mac_names.lst'
data = []
ret = {}
-verb = False
+quiet=False
-if len(sys.argv) > 1 and sys.argv[1] == 'v':
- verb = True
+if len(sys.argv) > 1 and sys.argv[1] == 'q':
+ quiet=True
def get_own_addr():
data = subprocess.Popen(['/sbin/ifconfig',DEV],
stdout=subprocess.PIPE).communicate()[0].replace('\n','')
@@ -46,7 +46,7 @@ except Exception as e:
for p in ret:
- if verb:
+ if not quiet:
print p[0] + " => " + p[1]
if p[1] in names:
print names[p[1]]+ " is online"