diff options
author | ytti <saku@ytti.fi> | 2016-02-22 11:39:45 +0200 |
---|---|---|
committer | ytti <saku@ytti.fi> | 2016-02-22 11:39:45 +0200 |
commit | 4e4d2d9d146305be9180fc0ed560abf0e317a65d (patch) | |
tree | ed07723610dfec4ca2c7a55b25a13010846d522e /README.md | |
parent | 01348ad8db7b916f6ce89a6ab2ce32f2046af753 (diff) | |
parent | 1209fb0343348f3d71457161625b2b827c6d8717 (diff) |
Merge pull request #313 from jgroom33/master
add http output type
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) @@ -383,6 +384,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`. |