signed-commit remote shell (see also https://github.com/dyne/scorsh)
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.
29 lines
698 B
29 lines
698 B
---
|
|
s_spooldir: "./spool"
|
|
s_logfile: "./scorsh.log"
|
|
s_logprefix: "[scorsh]"
|
|
|
|
s_workers:
|
|
[
|
|
{
|
|
w_name: worker1,
|
|
w_repos: [".*:.*"], # All branches in all repos
|
|
w_folder: ./worker1,
|
|
w_logfile: ./worker1/worker1.log,
|
|
w_tagfile: "./worker1/worker1.cfg",
|
|
w_keyrings: [
|
|
"./worker1/allowed_users.asc"
|
|
]
|
|
},
|
|
{
|
|
w_name: worker2,
|
|
w_repos: [".*:master"], # Branch master in all repos
|
|
w_folder: ./worker2,
|
|
w_logfile: ./worker2/worker2.log,
|
|
w_tagfile: "./worker2/worker2.cfg",
|
|
w_keyrings: [
|
|
"./worker2/allowed_users.asc"
|
|
]
|
|
}
|
|
]
|
|
...
|
|
|