-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- align the installation instructions with the ones from the main README
- Loading branch information
Showing
1 changed file
with
13 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,23 +5,25 @@ Mogilowski Sebastian <[email protected]> | |
|
||
## Installation | ||
|
||
1) Copy the files in the /reports/ (THIS) folder to your RackTables plugins | ||
installation ( '/path/to/racktables/plugins/ ). | ||
1) Copy the files in the /reports/ folder to your RackTables plugins installation ( _/path/to/racktables/plugins/_ ). | ||
|
||
2) Copy the CSS and JS files to the corresponding folders: | ||
``` | ||
mkdir -p '/path/to/racktables/wwwroot/{css,js}/report/' | ||
cp -v 'css/style.css' '/path/to/racktables/wwwroot/css/report/style.css' | ||
cp -v "js/*" '/path/to/racktables/wwwroot/js/report/' | ||
``` | ||
|
||
3) Activate the plugin via the 'Configuration' => 'Plugins' menu. | ||
3) Activate the plugin via the _Configuration_ => _Plugins_ menu. | ||
|
||
4) Depending on where you copied the CSS and JS files in step 2, you might | ||
want to adjust the configuration variables in | ||
'Configuration' => 'User interface': | ||
a) REPORTS_CSS_PATH => defaults to 'css/report' (NO trailing slashes) | ||
b) REPORTS_JS_PATH => defaults to 'js/report' (NO trailing slashes) | ||
4) Depending on where you copied the CSS and JS files in step 2, you might want to adjust the configuration variables in _'Configuration'_ => _'User interface'_: | ||
``` | ||
REPORTS_CSS_PATH => defaults to 'css/report' (NO trailing slashes) | ||
REPORTS_JS_PATH => defaults to 'js/report' (NO trailing slashes) | ||
``` | ||
|
||
5) You might also want to enable/disable the MAC(s) column for your switch report | ||
via 'Configuration' => 'User interface': | ||
a) REPORTS_SHOW_MAC_FOR_SWITCHES => defaults to 'yes' | ||
5) You might also want to enable/disable the MAC(s) column for your switch report via _'Configuration'_ => _'User interface'_: | ||
``` | ||
REPORTS_SHOW_MAC_FOR_SWITCHES => defaults to 'yes' | ||
``` | ||
|