|
8 년 전 | |
---|---|---|
.. | ||
tests | 8 년 전 | |
README.md | 8 년 전 | |
__init__.py | 8 년 전 | |
script.py | 8 년 전 |
This neuron runs a script located on the Kalliope system.
CORE NEURON : No installation needed.
parameter | required | default | choices | comment |
---|---|---|---|---|
path | YES | The path of the script to execute. | ||
async | NO | FALSE | If True, Kalliope will not wait for the end of the execution of the script |
Values are only returned by the neuron if the async mode is set to False
.
Name | Description | Type | sample |
---|---|---|---|
output | The shell output of the command if any. The command "date" will retun "Sun Oct 16 15:50:45 CEST 2016" | string | Sun Oct 16 15:50:45 CEST 2016 |
returncode | The returned code of the command. Return 0 if the command was succesfuly exectued, else 1 | int | 0 |
Simple example :
- name: "run-simple-script"
signals:
- order: "Run the script"
neurons:
- script:
path: "/path/to/script.sh"
If the script can take a long time and you don't want to block the Kalliope process, you can run it in asynchronous mode. Keep in mind that you cannot get any returned value with this mode.
- name: "run-simple-script"
signals:
- order: "Run the script"
neurons:
- script:
path: "/path/to/script.sh"
async: True
Make Kalliope speak out loud the result of the script.
- name: "run-script-an-give-output"
signals:
- order: "run the script"
neurons:
- script:
path: "/path/to/script.sh"
say_template: "{{ output }}"
Note: Kalliope must have the rights to run the script.
Note: Kalliope can be used to grant access to an user with lower rights ... !
Note: When 'async' flag is used, returned value are lost