mirror of
https://github.com/postmannen/ctrl.git
synced 2024-12-14 12:37:31 +00:00
b1a5406598
commit ec6ea8158d5051010c25ef848a7b7b91fa40efef
Author: postmannen <postmannen@gmail.com>
Date: Tue Nov 19 03:48:03 2024 +0100
Removed remaining use of REQ in naming
commit b80bb06a47cf564a88d684c1d1d4fe2e408c3c0f
Author: postmannen <postmannen@gmail.com>
Date: Mon Nov 18 23:15:32 2024 +0100
removed REQ in more variable names, including methods
commit af7f6fef3e0093312d2ca12740f7b27840797800
Author: postmannen <postmannen@gmail.com>
Date: Mon Nov 18 22:54:40 2024 +0100
renamed all the method type variables
commit e657ecb37f
Author: postmannen <postmannen@gmail.com>
Date: Mon Nov 18 22:32:13 2024 +0100
renamed methods constant values and removed REQ
53 lines
1 KiB
Bash
Executable file
53 lines
1 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "No toNode supplied"
|
|
exit 1
|
|
fi
|
|
if [ -z "$2" ]; then
|
|
echo "No shell path supplied"
|
|
exit 1
|
|
fi
|
|
if [ -z "$3" ]; then
|
|
echo "No cmd supplied"
|
|
exit 1
|
|
fi
|
|
|
|
nodes=$1
|
|
shell=$2
|
|
command=$3
|
|
|
|
IFS=',' read -r -a array <<<"$nodes"
|
|
|
|
function sendMessage() {
|
|
cat >msg-"$element".json <<EOF
|
|
[
|
|
{
|
|
"toNodes": ["${element}"],
|
|
"method": "cliCommand",
|
|
"methodArgs":
|
|
[
|
|
"${shell}",
|
|
"-c",
|
|
'echo "--------------------${element}----------------------" && ${command}',
|
|
],
|
|
"replyMethod": "fileAppend",
|
|
"retryWait": 5,
|
|
"ACKTimeout": 30,
|
|
"retries": 1,
|
|
"replyACKTimeout": 30,
|
|
"replyRetries": 1,
|
|
"methodTimeout": 10,
|
|
"replyMethodTimeout": 10,
|
|
"directory": "./data/",
|
|
"fileName": "debug.log",
|
|
},
|
|
]
|
|
EOF
|
|
|
|
}
|
|
|
|
for element in "${array[@]}"; do
|
|
sendMessage element "$command"
|
|
cp msg-"$element".json ./readfolder
|
|
done
|