Changeset 68
- Timestamp:
- 04/08/09 23:35:18 (16 months ago)
- Location:
- ethervendors
- Files:
-
- 2 removed
- 9 modified
-
bin/ethervendor (modified) (3 diffs)
-
bin/ethervendorids (modified) (3 diffs)
-
bin/ethervendorsfind (modified) (3 diffs)
-
bin/update-ethervendor (deleted)
-
debian/changelog (modified) (1 diff)
-
debian/control (modified) (1 diff)
-
debian/manpages (modified) (1 diff)
-
doc/ethervendor.1 (modified) (1 diff)
-
doc/ethervendorids.1 (modified) (1 diff)
-
doc/ethervendorsfind.1 (modified) (1 diff)
-
doc/update-ethervendor.1 (deleted)
Legend:
- Unmodified
- Added
- Removed
-
ethervendors/bin/ethervendor
r42 r68 9 9 10 10 11 MAC_ID_FILE="/usr/share/misc/ethervendors.ids"11 OUI_FILE="/usr/share/oui/oui.txt" 12 12 13 13 … … 20 20 dest='ouifile', 21 21 action='store', 22 default= MAC_ID_FILE,23 help='IEEE OUI and Company_id Assignments file, default "%s"' % MAC_ID_FILE)22 default=OUI_FILE, 23 help='IEEE OUI and Company_id Assignments file, default "%s"' % OUI_FILE) 24 24 25 25 … … 30 30 def no_mac_file(): 31 31 print "Error reading %s or file not found" % options.ouifile 32 print "Use update- ethervendorsto create it"32 print "Use update-oui to create it" 33 33 34 34 def normalize_mac(mac): -
ethervendors/bin/ethervendorids
r42 r68 10 10 11 11 12 MAC_ID_FILE="/usr/share/misc/ethervendors.ids" 13 12 OUI_FILE="/usr/share/oui/oui.txt" 14 13 15 14 opt_parser=OptionParser(usage="Usage: %prog vendor [options]", … … 24 23 dest='ouifile', 25 24 action='store', 26 default= MAC_ID_FILE,27 help='IEEE OUI and Company_id Assignments file, default "%s"' % MAC_ID_FILE)25 default=OUI_FILE, 26 help='IEEE OUI and Company_id Assignments file, default "%s"' % OUI_FILE) 28 27 29 28 … … 34 33 def no_mac_file(): 35 34 print "Error reading %s or file not found" % options.ouifile 36 print "Use update- ethervendorto create it"35 print "Use update-oui to create it" 37 36 38 37 def extract_vendor(line): -
ethervendors/bin/ethervendorsfind
r42 r68 9 9 from optparse import OptionParser 10 10 11 12 ETHERVENDORS_FILE="/usr/share/misc/ethervendors.ids" 11 OUI_FILE="/usr/share/oui/oui.txt" 13 12 14 13 … … 21 20 dest='ouifile', 22 21 action='store', 23 default= ETHERVENDORS_FILE,24 help='IEEE OUI and Company_id Assignments file, default "%s"' % ETHERVENDORS_FILE)22 default=OUI_FILE, 23 help='IEEE OUI and Company_id Assignments file, default "%s"' % OUI_FILE) 25 24 26 25 (options, args)=opt_parser.parse_args() … … 28 27 def no_mac_file(): 29 28 print "Error reading %s or file not found" % options.ouifile 30 print "Use update- ethervendorsto create it"29 print "Use update-oui to create it" 31 30 32 31 def extract_vendor(line): -
ethervendors/debian/changelog
r48 r68 1 ethervendors (1.0.0-1) UNRELEASED; urgency=low 1 ethervendors (1.0.0-2) unstable; urgency=low 2 3 * Remove update script and added dep over oui to avoid duplication 4 5 -- Eduardo Ferro <eferro@alea-soluciones.com> Thu, 09 Apr 2009 00:26:26 +0200 6 7 ethervendors (1.0.0-1) unstable; urgency=low 2 8 3 9 * Initial release. (Closes: #522642) -
ethervendors/debian/control
r48 r68 9 9 Package: ethervendors 10 10 Architecture: all 11 Depends: ${shlibs:Depends}, python 11 Depends: ${shlibs:Depends}, python, oui 12 12 Description: Ehernet Vendor utils 13 13 Simple Ehernet Vendor ids utilities. Includes programs for lookup the -
ethervendors/debian/manpages
r43 r68 2 2 doc/ethervendorids.1 3 3 doc/ethervendor.1 4 doc/update-ethervendor.1 4 -
ethervendors/doc/ethervendor.1
r43 r68 33 33 There is NO WARRANTY, to the extent permitted by law. 34 34 .SH "SEE ALSO" 35 ethervendorsfind(1) ethervendors(1) update- ethervendor(1)35 ethervendorsfind(1) ethervendors(1) update-oui(8) -
ethervendors/doc/ethervendorids.1
r43 r68 34 34 There is NO WARRANTY, to the extent permitted by law. 35 35 .SH "SEE ALSO" 36 ethervendor(1) ethervendorsfind(1) update- ethervendor(1)36 ethervendor(1) ethervendorsfind(1) update-oui(8) -
ethervendors/doc/ethervendorsfind.1
r43 r68 33 33 There is NO WARRANTY, to the extent permitted by law. 34 34 .SH "SEE ALSO" 35 ethervendor(1) ethervendors(1) update- ethervendor(1)35 ethervendor(1) ethervendors(1) update-oui(8) 36 36
