diff options
author | Jeff Groom <33snipehunt@gmail.com> | 2016-02-15 13:56:30 +1300 |
---|---|---|
committer | Jeff Groom <33snipehunt@gmail.com> | 2016-02-15 13:56:30 +1300 |
commit | 219880c35151fe071a855205bc33de599a0f0991 (patch) | |
tree | 48242c7d31c9706f3ec59c4b7b44912ae8ba7af7 /README.md | |
parent | ccbbeac23d39eae455681dbdc13ee4447286fe6f (diff) |
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -31,6 +31,7 @@ Oxidized is a network device configuration backup tool. It's a RANCID replacemen * [Source: SQLite](#source-sqlite) * [Source: HTTP](#source-http) * [Output: GIT](#output-git) + * [Output: HTTP](#output-http) * [Output: File](#output-file) * [Output types](#output-types) * [Advanced Configuration](#advanced-configuration) @@ -363,6 +364,19 @@ output: repo: "/var/lib/oxidized/devices.git" ``` +### Output: Http + +POST a config to the specified URL + +``` +output: + default: http + http: + user: admin + password: changeit + url: "http://192.168.162.50:8080/db/coll" +``` + ### Output types If you prefer to have different outputs in different files and/or directories, you can easily do this by modifying the corresponding model. To change the behaviour for IOS, you would edit `lib/oxidized/model/ios.rb`. |