-
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.
- Loading branch information
frsauvage
committed
Jan 12, 2022
1 parent
a87b04a
commit 1339817
Showing
31 changed files
with
473 additions
and
177 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 |
---|---|---|
|
@@ -110,7 +110,7 @@ | |
</div> | ||
</div> | ||
<div class="LoginModal-footer"> | ||
version: 2.1.9 | ||
version: 2.1.10 | ||
</div> | ||
</div> | ||
</div> | ||
|
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,25 @@ | ||
--- | ||
- hosts: all | ||
connection: local | ||
name: Disable Ssh | ||
gather_facts: False | ||
vars_files: | ||
- "{{ ANSIBLE_EXTERNAL_VARS }}" | ||
- "{{ ANSIBLE_PASSWORDS }}" | ||
|
||
tasks: | ||
|
||
- include_tasks: ../utils/utils_create_token.yml | ||
|
||
- name: diable SSH | ||
uri: | ||
url: https://{{ baseuri }}/xyz/openbmc_project/control/service/ssh/attr/Enabled | ||
method: PUT | ||
validate_certs: no | ||
headers: | ||
X-Auth-Token: "{{ x_token }}" | ||
body_format: json | ||
body: | ||
data: false | ||
register: result_disable_ssh | ||
|
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,25 @@ | ||
--- | ||
- hosts: all | ||
connection: local | ||
name: Enable Ssh | ||
gather_facts: False | ||
vars_files: | ||
- "{{ ANSIBLE_EXTERNAL_VARS }}" | ||
- "{{ ANSIBLE_PASSWORDS }}" | ||
|
||
tasks: | ||
|
||
- include_tasks: ../utils/utils_create_token.yml | ||
|
||
- name: enable SSH | ||
uri: | ||
url: https://{{ baseuri }}/xyz/openbmc_project/control/service/ssh/attr/Enabled | ||
method: PUT | ||
validate_certs: no | ||
headers: | ||
X-Auth-Token: "{{ x_token }}" | ||
body_format: json | ||
body: | ||
data: true | ||
register: result_enable_ssh | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/sh | ||
|
||
echo "MISM_BULLSEQUANA_EDGE_VERSION environment variable is :" | ||
echo "BullSequana Edge System Management Light version " | ||
docker exec -it awx_web env |grep MISM_BULLSEQUANA_EDGE_VERSION | ||
|
||
|
||
tail -1 ansible/readme.md | ||
echo |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/sh | ||
|
||
echo "MISM_BULLSEQUANA_EDGE_VERSION environment variable is :" | ||
echo "BullSequana Edge System Management Light version " | ||
docker exec -it zabbix-server env |grep MISM_BULLSEQUANA_EDGE_VERSION | ||
|
||
|
||
tail -1 zabbix/readme.md | ||
echo |
Oops, something went wrong.