13 lines
394 B
Python
13 lines
394 B
Python
from os import environ
|
|
description = 'frappy main setup'
|
|
group = 'optional'
|
|
|
|
devices = {
|
|
'se_main':
|
|
device('nicos_sinq.frappy_sinq.devices.FrappyNode',
|
|
description='main SEC node', unit='', async_only=True,
|
|
prefix=environ.get('SE_PREFIX', 'se_'), auto_create=True, service='main',
|
|
general_stop_whitelist=['om', 'stickrot'],
|
|
),
|
|
}
|