-
Notifications
You must be signed in to change notification settings - Fork 949
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create cambiumepmp.rb * Update cambiumepmp.rb Fixed whitespace found on line 11 * Update cambiumepmp.rb Fixed another whitespace.. * Update CHANGELOG.md * Update Supported-OS-Types.md
- Loading branch information
1 parent
cb11391
commit 291c75d
Showing
3 changed files
with
21 additions
and
2 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
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
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
class CambiumePMP < Oxidized::Model | ||
# Cambium ePMP Radios | ||
|
||
prompt /.*>/ | ||
|
||
cmd :all do |cfg| | ||
cfg.cut_both | ||
end | ||
|
||
pre do | ||
cmd 'config show json' | ||
end | ||
|
||
cfg :ssh do | ||
pre_logout 'exit' | ||
end | ||
end |