Franziska Kunsmann
e36a352a42
All checks were successful
bundlewrap/pipeline/head This commit looks good
28 lines
552 B
Python
28 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', {'*'})),
|
|
},
|
|
},
|
|
}
|