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

Fix ont monitoring service #1299

Merged
merged 1 commit into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ monitoring_ont_os_services:
- enabled: true
service_name: "{{ monitoring_ont_os_service_file_name }}"
service_state: "{{ configure_monitoring_ont | ternary('started', 'stopped') }}"
# Don't start this service because a timer takes care of that
- enabled: true
service_name: "{{ monitoring_ont_network_config_service_file_name }}"
service_state: "{{ configure_monitoring_ont | ternary('started', 'stopped') }}"
monitoring_ont_templates_to_render:
- src: "{{ monitoring_ont_tag }}/{{ monitoring_ont_os_service_file_name }}.jinja"
dest: "{{ systemd_system_services_configuration_directory }}/{{ monitoring_ont_os_service_file_name }}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ restic_templates_to_render:
dest: "{{ restic_docker_compose_destination_file_path }}"
state: "{{ configure_backup_restic | ternary('file', 'absent') }}"
docker_compose_services_to_restart: "{{ restic_docker_compose_up_items }}"
# This file may contain secrets, so we want to restric access to the owner and group only
# This file may contain secrets, so we want to restrict access to the owner and group only
# (defaults to root:root)
mode: "0640"
...