Saltstack Official Linux Formula
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

17 lines
366B

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