diff --git a/roles/run_hook/tasks/playbook.yml b/roles/run_hook/tasks/playbook.yml index b005703e00..295b0b027c 100644 --- a/roles/run_hook/tasks/playbook.yml +++ b/roles/run_hook/tasks/playbook.yml @@ -5,7 +5,7 @@ {{ hook.name | regex_replace('([^a-zA-Z0-9\-\._])+', '_') | lower | - truncate(20, false, '') }} + truncate(30, true, '') }} _play: >- {%- if hook.source is not ansible.builtin.abs -%} {{ role_path }}/../../hooks/playbooks/{{ hook.source }} @@ -73,10 +73,6 @@ state: directory mode: "0755" -- name: Point to the generated log file - ansible.builtin.debug: - msg: "You can follow hook run here: {{ log_path }}" - # We cannot call ansible.builtin.import_playbook from within a play, # even less from a task. So the way to run a playbook from within a playbook # is to call a command. Though we may lose some of the data passed to the