commit | 42b64a1f29a8f447d3e9e5a77db99bee85f87d2a | [log] [tgz] |
---|---|---|
author | azvyagintsev <azvyagintsev@mirantis.com> | Fri Aug 17 11:47:45 2018 +0300 |
committer | azvyagintsev <azvyagintsev@mirantis.com> | Fri Aug 17 11:48:36 2018 +0300 |
tree | 6daf0ac103f97db204e4c7af9c4c7e06e64d5ca5 | |
parent | 081647356fe40bda9cde9336d5acfc9eb0bcd18e [diff] [blame] |
Misc fixes * Add\fix __virtual__ for modules * Remove unneded multiline for repo.sls Change-Id: I1f8d321b68dfe6a44264b4ddcd6cd0c576938da1
diff --git a/_modules/linux_hosts.py b/_modules/linux_hosts.py index 78853bd..e66bb67 100644 --- a/_modules/linux_hosts.py +++ b/_modules/linux_hosts.py
@@ -6,6 +6,9 @@ from jinja2 import Undefined +def __virtual__(): + return 'linux_hosts' + def fqdn_sort_fn(n1, n2): l1 = n1.split('.') l2 = n2.split('.')