README.md in oxidized-0.13.1 vs README.md in oxidized-0.14.0
- old
+ new
@@ -65,10 +65,11 @@
* Ciena
* SOAS
* Cisco
* AireOS
* ASA
+ * CatOS
* IOS
* IOSXR
* NXOS
* SMB (Nikola series)
* Citrix
@@ -110,10 +111,12 @@
* WISP Switch (As Netonix)
* Opengear
* Opengear
* Palo Alto
* PANOS
+ * Supermicro
+ * Supermicro
* Ubiquiti
* AirOS
* Edgeos
* EdgeSwitch
* Zyxel
@@ -123,11 +126,11 @@
# Installation
## Debian
Install all required packages and gems.
```shell
-apt-get install ruby ruby-dev libsqlite3-dev libssl-dev pkg-config cmake
+apt-get install ruby ruby-dev libsqlite3-dev libssl-dev pkg-config cmake libssh2-1-dev
gem install oxidized
gem install oxidized-script oxidized-web # if you don't install oxidized-web, make sure you remove "rest" from your config
```
## CentOS, Oracle Linux, Red Hat Linux version 6
@@ -399,12 +402,26 @@
output:
default: git
git:
user: Oxidized
email: o@example.com
- repo:
- first: "/var/lib/oxidized/first.git"
- second: "/var/lib/oxidized/second.git"
+ repo: "/var/lib/oxidized/git-repos/default.git"
+```
+
+Oxidized will create a repository for each group in the same directory as the `default.git`. For
+example:
+
+``` csv
+host1:ios:first
+host2:nxos:second
+```
+
+This will generate the following repositories:
+
+``` bash
+$ ls /var/lib/oxidized/git-repos
+
+default.git first.git second.git
```
If you would like to use groups and a single repository, you can force this with the `single_repo` config.
``` yaml