bundlewrap/bundles/openssh/metadata.py
Franzi e36a352a42
All checks were successful
bundlewrap/pipeline/head This commit looks good
bundles: fix usage of set() vs {}
2021-04-04 10:34:55 +02:00

29 lines
552 B
Python

from bundlewrap.metadata import atomic
defaults = {
'apt': {
'packages': {
'openssh-client': {},
'openssh-server': {},
'openssh-sftp-server': {},
},
},
'pacman': {
'packages': {
'openssh': {},
},
},
}
@metadata_reactor.provides(
'iptables/port_rules/22',
)
def iptables(metadata):
return {
'iptables': {
'port_rules': {
'22': atomic(metadata.get('openssh/restrict-to', {'*'})),
},
},
}