lucaslimafernandes / accio

Accio is a tool designed to manage tasks executed on multiple remote servers via SSH. It allows you to configure and automate command execution on a variety of nodes using YAML configuration files, making remote server management more efficient and scalable.
https://lucaslimafernandes.github.io/accio/
MIT License
0 stars 0 forks source link

Save Execution Returns #1

Open lucaslimafernandes opened 5 days ago

lucaslimafernandes commented 5 days ago

Save the execution results in local files or in a database. Each execution can have an associated log, containing:

lucaslimafernandes commented 5 days ago

Runfile example:

tasks:
  - name: init_swarm
    node: 
      - master
    command: 
      docker swarm init | grep "token" | awk '{print $5}'
    save_output_as: swarm_token