Doc and linters CI fixes

Change-Id: Ie30e9def28d85b03f5fbfa151840cd7b79c2b93f
This commit is contained in:
2025-05-06 19:23:09 +05:30
parent 3a157007ce
commit 1880ab6474
5 changed files with 26 additions and 26 deletions

View File

@@ -7,9 +7,9 @@
- hosts: elasticsearch
remote_user: root
vars:
- rsyslog_elasticsearch_server: "localhost"
- rsyslog_aggregator_server: "localhost"
- rsyslog_aggregator: true
rsyslog_elasticsearch_server: "localhost"
rsyslog_aggregator_server: "localhost"
rsyslog_aggregator: true
roles:
- rsyslog-install
- rsyslog-templates

View File

@@ -7,7 +7,7 @@
- hosts: Undercloud
remote_user: "{{ local_remote_user }}"
vars:
- ansible_ssh_pipelining: yes
ansible_ssh_pipelining: yes
roles:
- rsyslog-install
- rsyslog-templates
@@ -16,7 +16,7 @@
remote_user: "{{ host_remote_user }}"
serial: 10
vars:
- ansible_ssh_pipelining: yes
ansible_ssh_pipelining: yes
roles:
- rsyslog-install
- rsyslog-templates

View File

@@ -108,11 +108,11 @@ class CreateNFSShareBootVMAndAccessShare(utils.ManilaScenario, vm_utils.VMScenar
mount_opt = "-t nfs -o nfsvers=4.1,proto=tcp"
test_data = "Test Data"
script = f"sudo cloud-init status -w;" \
f"sudo ip add add {ip}/24 dev eth1;" \
f"sudo ip link set eth1 up;" \
f"sudo mount {mount_opt} {location[0]} /mnt || exit 1;" \
f"df -h;" \
script = f"sudo cloud-init status -w && " \
f"sudo ip add add {ip}/24 dev eth1 && " \
f"sudo ip link set eth1 up && " \
f"sudo mount {mount_opt} {location[0]} /mnt || exit 1 && " \
f"df -h && " \
f"sudo echo {test_data} | sudo tee /mnt/testfile || exit 2"
command = {

View File

@@ -24,8 +24,8 @@ setup-hooks =
pbr.hooks.setup_hook
[build_sphinx]
source-dir = doc/source
build-dir = doc/build
source_dir = doc/source
build_dir = doc/build
all_files = 1
[upload_sphinx]