Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added cisco config platform commands #2242

Merged
merged 47 commits into from
Sep 29, 2022
Merged
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
d87dfa1
Added cisco config platform commands
yucgu Jun 30, 2022
6995cba
Merge branch 'master' into master-cisco-8000-config_command
yucgu Jul 14, 2022
bafc9e3
Added cisco config platform commands
yucgu Aug 4, 2022
fadfbe6
Added cisco config platform commands
yucgu Aug 4, 2022
c86e6ce
Added cisco config platform commands
yucgu Aug 4, 2022
6d15d15
Added cisco config platform commands
yucgu Aug 4, 2022
0c24820
Added cisco config platform commands
yucgu Aug 4, 2022
ef9eb7c
Added cisco config platform commands
yucgu Aug 4, 2022
f68795f
Added cisco config platform commands
yucgu Aug 4, 2022
eb7f571
Added cisco config platform commands
yucgu Aug 4, 2022
dd7b9bc
Added cisco config platform commands
yucgu Aug 5, 2022
dc0889d
Added cisco config platform commands
yucgu Aug 5, 2022
c9aafca
Added cisco config platform commands
yucgu Aug 5, 2022
c9dbf5f
Added cisco config platform commands
yucgu Aug 5, 2022
f286424
Added cisco config platform commands
yucgu Aug 5, 2022
0281112
Added cisco config platform commands
yucgu Aug 6, 2022
83aa7d2
Added cisco config platform commands
yucgu Aug 6, 2022
8d83faa
Added cisco config platform commands
yucgu Aug 6, 2022
70d86d3
Added cisco config platform commands
yucgu Aug 8, 2022
175ed3e
Added cisco config platform commands
yucgu Aug 8, 2022
8e171c7
Added cisco config platform commands
yucgu Aug 10, 2022
9a8d9e3
Merge branch 'master' into master-cisco-8000-config_command
yucgu Aug 10, 2022
53d7792
Added cisco config platform commands
yucgu Aug 10, 2022
abf4c47
Merge branch 'master-cisco-8000-config_command' of https://github.com…
yucgu Aug 10, 2022
0b26371
Added cisco config platform commands
yucgu Aug 10, 2022
2b66c55
Added cisco config platform commands
yucgu Aug 11, 2022
20bcc7e
Added cisco config platform commands
yucgu Aug 11, 2022
2074c35
Added cisco config platform commands
yucgu Aug 16, 2022
5b281c8
Added cisco config platform commands
yucgu Aug 16, 2022
f6db8bb
Added cisco config platform commands
yucgu Aug 16, 2022
66bb737
Merge branch 'master' into master-cisco-8000-config_command
yucgu Sep 8, 2022
0021429
Added cisco config platform commands
yucgu Sep 8, 2022
54690d5
Added cisco config platform commands
yucgu Sep 8, 2022
b8d5c6a
Added cisco config platform commands
yucgu Sep 8, 2022
e32c64e
Added cisco config platform commands
yucgu Sep 8, 2022
2867c06
Added cisco config platform commands
yucgu Sep 8, 2022
dae423f
Added cisco config platform commands
yucgu Sep 8, 2022
f1de6ea
Added cisco config platform commands
yucgu Sep 9, 2022
074e0eb
Added cisco config platform commands
yucgu Sep 9, 2022
d7d89cd
Added cisco config platform commands
yucgu Sep 9, 2022
3dcb1cf
Added cisco config platform commands
yucgu Sep 9, 2022
75c3775
Added cisco config platform commands
yucgu Sep 9, 2022
3bb1b7b
Added cisco config platform commands
yucgu Sep 9, 2022
ba15f25
Added cisco config platform commands
yucgu Sep 9, 2022
02244bd
Added cisco config platform commands
yucgu Sep 9, 2022
69bce77
Added cisco config platform commands
yucgu Sep 12, 2022
5f17de2
Added cisco config platform commands
yucgu Sep 12, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions config/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1149,6 +1149,10 @@ def config(ctx):
print("Caught an exception: " + str(e))
raise click.Abort()

if asic_type == 'cisco-8000':
from sonic_platform.cli.cisco import cisco
platform.add_command(cisco)

# Load database config files
load_db_config()

Expand Down