Skip to content

Commit b1f1c4c

Browse files
committed
fixed include paths
1 parent a098851 commit b1f1c4c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

handlers/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
# handlers file for ansible-role-nginx-app-protect
33
- name: "(Handler: All OSs) Enable SELinux"
4-
include_tasks: configure-selinux.yml
4+
include_tasks: "{{ role_path }}/tasks/configure-selinux.yml"
55

66
- name: "(Handler: All OSs) Check NGINX"
77
command: "nginx -t"

tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
- name: "Install NGINX App Protect"
3535
block:
3636

37-
- include_tasks: prerequisites/install-prerequisites.yml
37+
- include_tasks: "{{ role_path }}/tasks/prerequisites/install-prerequisites.yml"
3838
tags: nginx_prerequisites
3939

4040
- import_tasks: keys/apt-key.yml

0 commit comments

Comments
 (0)