bundles: fix dependencies
This commit is contained in:
parent
8dc66421c0
commit
46f7aa93ef
3 changed files with 13 additions and 16 deletions
|
@ -26,7 +26,16 @@ pkg_apt = {
|
||||||
'netcat': {},
|
'netcat': {},
|
||||||
'python3': {},
|
'python3': {},
|
||||||
'python3-dev': {},
|
'python3-dev': {},
|
||||||
'python3-pip': {},
|
'python3-setuptools': {
|
||||||
|
'needed_by': {
|
||||||
|
'pkg_pip:',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
'python3-pip': {
|
||||||
|
'needed_by': {
|
||||||
|
'pkg_pip:',
|
||||||
|
},
|
||||||
|
},
|
||||||
'python3-virtualenv': {},
|
'python3-virtualenv': {},
|
||||||
'rsync': {},
|
'rsync': {},
|
||||||
'tar': {},
|
'tar': {},
|
||||||
|
|
|
@ -11,24 +11,11 @@ files = {
|
||||||
if node.metadata.get('systemd-networkd/enable-resolved', False):
|
if node.metadata.get('systemd-networkd/enable-resolved', False):
|
||||||
symlinks['/etc/resolv.conf'] = {
|
symlinks['/etc/resolv.conf'] = {
|
||||||
'target': '/run/systemd/resolve/stub-resolv.conf',
|
'target': '/run/systemd/resolve/stub-resolv.conf',
|
||||||
'needed_by': {
|
|
||||||
'pkg_apt:',
|
|
||||||
'pkg_pacman:',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
svc_systemd['systemd-resolved'] = {
|
|
||||||
'needed_by': {
|
|
||||||
'pkg_apt:',
|
|
||||||
'pkg_pacman:',
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
svc_systemd['systemd-resolved'] = {}
|
||||||
else:
|
else:
|
||||||
files['/etc/resolv.conf'] = {
|
files['/etc/resolv.conf'] = {
|
||||||
'content_type': 'mako',
|
'content_type': 'mako',
|
||||||
'needed_by': {
|
|
||||||
'pkg_apt:',
|
|
||||||
'pkg_pacman:',
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -64,5 +64,6 @@ nodes['voc.pretalx'] = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
'os': 'debian',
|
'os': 'debian',
|
||||||
'os_version': (10,)
|
'os_version': (10,),
|
||||||
|
'pip_command': 'pip3',
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue