forked from sonic-net/sonic-mgmt-framework
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #267 from e-sonic/merge-1128/broadcom_sonic_4.x_sh…
…are-to-dell_sonic_4.x_share sync from broadcom_sonic_4.x_share to dell_sonic_4.x_share - 1128
- Loading branch information
Showing
7 changed files
with
62 additions
and
52 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
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,19 @@ | ||
{{'------------------------------------------------------'}} | ||
{{'Config Reload Status'}} | ||
{{'------------------------------------------------------'}} | ||
{% if json_output %} | ||
{{'State'.ljust(25)}}: {{json_output['state']}} | ||
{{'State detail'.ljust(25)}}: {{json_output['state-detail']}} | ||
{% if 'start-time' in json_output %} | ||
{% set cfg_reload_start_time = datetimeformat(json_output['start-time']) %} | ||
{% else %} | ||
{% set cfg_reload_start_time = "N/A" %} | ||
{% endif %} | ||
{{'Start time'.ljust(25) }}: {{ cfg_reload_start_time }} | ||
{% if 'end-time' in json_output %} | ||
{% set cfg_reload_end_time = datetimeformat(json_output['end-time']) %} | ||
{% else %} | ||
{% set cfg_reload_end_time = "N/A" %} | ||
{% endif %} | ||
{{'End time'.ljust(25) }}: {{ cfg_reload_end_time }} | ||
{% endif %} |
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