Saltstack Official Linux Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
355B

  1. # -*- coding: utf-8 -*-
  2. import re
  3. _alphanum_re = re.compile(r'^[a-z0-9]+$')
  4. _lo_re = re.compile(r'^lo$')
  5. def _filter(interface):
  6. return _alphanum_re.match(interface) and not _lo_re.match(interface)
  7. def ls():
  8. """
  9. Provide a list of network interfaces.
  10. """
  11. return filter(_filter, __salt__['grains.get']('ip_interfaces', {}).keys())