/usr/share/pyshared/reconfigure/items/netatalk.py is in python-reconfigure 0.1.29-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | from reconfigure.nodes import Node, PropertyNode
from reconfigure.items.bound import BoundData
from util import yn_getter, yn_setter
class NetatalkData (BoundData):
pass
class GlobalData (BoundData):
pass
class ShareData (BoundData):
fields = ['path', 'appledouble', 'valid users', 'cnid scheme', 'ea', 'password']
defaults = ['', 'ea', '', 'dbd', 'none', '']
def template(self):
return Node(
'share',
*[PropertyNode(x, y) for x, y in zip(ShareData.fields, ShareData.defaults)]
)
NetatalkData.bind_child('global', lambda x: x.get('Global'), item_class=GlobalData)
NetatalkData.bind_collection('shares', selector=lambda x: x.name != 'Global', item_class=ShareData)
GlobalData.bind_property('afp port', 'afp_port', default='548')
GlobalData.bind_property('cnid listen', 'cnid_listen', default='localhost:4700')
GlobalData.bind_property(
'zeroconf', 'zeroconf', default=True,
getter=yn_getter, setter=yn_setter)
ShareData.bind_name('name')
ShareData.bind_attribute('comment', 'comment', path=lambda x: x.get('path'), default='')
for f, d in zip(ShareData.fields, ShareData.defaults):
ShareData.bind_property(f, f.replace(' ', '_'), default=d)
|