1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

Unify shebang for python scripts

This commit is contained in:
Lars Kruse 2020-10-28 23:38:41 +01:00
parent 8542c09283
commit a7139bcaee
42 changed files with 43 additions and 43 deletions

View file

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
#%# family=auto
#%# capabilities=autoconf

View file

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# shorewall_accounting v1.3
#
# A munin plugin for tracking traffic as recorded by shorewall accounting rules.

View file

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# shorewall_ v2.0 - 30 Aug 2008 - Tanguy Pruvot <tanguy.pruvot@gmail.com>
#
# A munin plugin for tracking traffic as recorded by shorewall accounting rules
@ -78,4 +78,4 @@ if len(sys.argv) > 1:
sys.exit(0)
for chain, bytes in getBytesByChain():
print "%s.value %i" % (chain, bytes)
print "%s.value %i" % (chain, bytes)

View file

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# shorewall_accounting
# A munin plugin for tracking traffic as recorded by shorewall accounting rules
# Written by Chris AtLee <chris@atlee.ca>