20 lines
328 B
Python
20 lines
328 B
Python
|
|
class implementation_notification_channel_file_touch(interface_notification_channel):
|
||
|
|
|
||
|
|
'''
|
||
|
|
[implementation]
|
||
|
|
'''
|
||
|
|
def normalize_conf_node(self, node):
|
||
|
|
return dict_merge(
|
||
|
|
{
|
||
|
|
},
|
||
|
|
node
|
||
|
|
)
|
||
|
|
|
||
|
|
|
||
|
|
'''
|
||
|
|
[implementation]
|
||
|
|
'''
|
||
|
|
def notify(self, parameters, name, data, state, output):
|
||
|
|
_os.path.touch(parameters["path"])
|
||
|
|
|