Saltstack Official Linux Formula
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

18 行
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())