You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
459 B
31 lines
459 B
#!/usr/bin/env python3
|
|
from pyln.client import Plugin
|
|
import os
|
|
import threading
|
|
import time
|
|
|
|
plugin = Plugin()
|
|
|
|
|
|
class FailThread(threading.Thread):
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.start()
|
|
|
|
def run(self):
|
|
time.sleep(1)
|
|
print("Exiting!")
|
|
os._exit(1)
|
|
|
|
|
|
@plugin.init()
|
|
def init(options, configuration, plugin):
|
|
FailThread()
|
|
|
|
|
|
@plugin.method('failcmd')
|
|
def failcmd(plugin):
|
|
pass
|
|
|
|
|
|
plugin.run()
|
|
|