0.0.1-alpha.1.1 • Published 8 years ago

hubot-salt v0.0.1-alpha.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

hubot-salt

Version npm npm Downloads

A hubot script for managing salt minions

See src/salt.coffee for full documentation.

Installation

Make sure that you have Salt REST CHERRYPY up and running first.

In hubot project repo, run:

npm install hubot-salt --save

Then add hubot-salt to your external-scripts.json:

["hubot-salt"]

Sample Interaction

Ping a minion

user1>> hubot salt ping minion_001
hubot>> {
  "return": [
    {
      "minion_001": true
    }
  ]
}

Execute a state on a minion

user1>> hubot, salt apply screen-formula to minion_001
hubot>> {
  "return": [
    {
      "minion_001": {
        "pkg_|-install_screen_|-screen_|-installed": {
          "comment": "Package screen is already installed",
          "name": "screen",
          "start_time": "05:55:03.835201",
          "result": true,
          "duration": 28456.433,
          "__run_num__": 0,
          "changes": {}
        }
      }
    }
  ]
}
0.0.1-alpha.1.1

8 years ago

0.0.1-alpha.1

8 years ago

0.0.0

8 years ago