bundlewrap/bundles/apt/items.py

162 lines
3.5 KiB
Python
Raw Normal View History

supported_os = {
'debian': {
10: 'buster',
2020-11-12 17:40:19 +00:00
11: 'bullseye',
2020-10-09 16:12:49 +00:00
99: 'unstable',
},
'raspbian': {
10: 'buster',
},
}
assert supported_os[node.os][node.os_version[0]], '{}: OS {} {} is not supported by bundle:apt'.format(node.name, node.os, node.os_version)
2020-02-29 14:42:29 +00:00
actions = {
'apt_update': {
'command': 'apt-get update',
2020-08-20 08:59:45 +00:00
'needed_by': {
2020-02-29 14:42:29 +00:00
'pkg_apt:',
2020-08-20 08:59:45 +00:00
},
2020-02-29 14:42:29 +00:00
'triggered': True,
'cascade_skip': False,
},
}
files = {
'/usr/local/share/icinga/plugins/check_unattended_upgrades': {
'mode': '0755',
},
'/usr/local/sbin/upgrade-and-reboot': {
2020-02-29 14:42:29 +00:00
'content_type': 'mako',
'mode': '0700',
'context': {
'data': node.metadata.get('apt/unattended-upgrades', {}),
}
2020-02-29 14:42:29 +00:00
},
2020-08-20 09:07:18 +00:00
'/etc/cloud': {
'delete': True,
},
'/etc/netplan': {
'delete': True,
},
'/var/lib/cloud': {
'delete': True,
},
'/etc/apt/sources.list': {
'source': 'sources.list-{}-{}'.format(node.os, supported_os[node.os][node.os_version[0]]),
'triggers': {
'action:apt_update',
},
},
'/etc/kernel/postinst.d/unattended-upgrades': {
'source': 'kernel-postinst.d',
},
2020-02-29 14:42:29 +00:00
}
directories = {
'/etc/apt/sources.list.d': {
'purge': True,
'triggers': {
'action:apt_update',
},
},
2020-02-29 14:42:29 +00:00
}
svc_systemd = {
'apt-daily.timer': {
'running': False,
'enabled': False,
},
'apt-daily-upgrade.timer': {
'running': False,
'enabled': False,
},
}
2020-02-29 14:42:29 +00:00
pkg_apt = {
'apt-transport-https': {},
2020-08-18 13:46:42 +00:00
'arping': {},
'at': {},
'build-essential': {},
2020-08-18 13:46:42 +00:00
'bzip2': {},
'curl': {},
'diffutils': {},
'dnsutils': {},
'git': {},
2020-08-18 13:46:42 +00:00
'grep': {},
'gzip': {},
'htop': {},
'jq': {},
'less': {},
'logrotate': {},
'lsof': {},
'mailutils': {},
'manpages': {},
'molly-guard': {},
'moreutils': {},
'mount': {},
'mtr': {},
'ncdu': {},
'netcat': {},
'nmap': {},
'python3': {},
'python3-dev': {},
'python3-pip': {},
'python3-virtualenv': {},
2020-11-13 11:37:26 +00:00
'rsync': {},
2020-08-18 13:46:42 +00:00
'tar': {},
'tcpdump': {},
'telnet': {},
'tmux': {},
'tree': {},
'unzip': {},
'vim': {},
2020-08-18 13:46:42 +00:00
'wget': {},
'whois': {},
'zip': {},
2020-08-20 09:07:18 +00:00
'cloud-init': {
'installed': False,
},
'netplan.io': {
'installed': False,
},
'popularity-contest': {
'installed': False,
},
'unattended-upgrades': {
'installed': False,
},
2020-02-29 14:42:29 +00:00
}
2020-08-20 09:07:18 +00:00
for name, data in node.metadata.get('apt/repos', {}).items():
2020-02-29 14:42:29 +00:00
files['/etc/apt/sources.list.d/{}.list'.format(name)] = {
'content_type': 'mako',
'content': ("\n".join(sorted(data['items']))).format(
os=node.os,
os_release=supported_os[node.os][node.os_version[0]],
),
2020-08-20 08:59:45 +00:00
'triggers': {
2020-02-29 14:42:29 +00:00
'action:apt_update',
2020-08-20 08:59:45 +00:00
},
2020-02-29 14:42:29 +00:00
}
2020-08-20 08:59:45 +00:00
if data.get('install_gpg_key', True):
files['/etc/apt/sources.list.d/{}.list'.format(name)]['needs'] = {
'file:/etc/apt/trusted.gpg.d/{}.list.asc'.format(name),
}
2020-02-29 14:42:29 +00:00
2020-08-20 08:59:45 +00:00
files['/etc/apt/trusted.gpg.d/{}.list.asc'.format(name)] = {
'source': 'gpg-keys/{}.asc'.format(name),
'triggers': {
'action:apt_update',
},
}
2020-02-29 14:42:29 +00:00
if node.metadata.get('apt/packages', {}):
2020-02-29 14:42:29 +00:00
for package, options in node.metadata['apt']['packages'].items():
pkg_apt[package] = options