fixed edge-case

This commit is contained in:
AnsibleGuy 2022-08-16 22:22:20 +02:00
parent c852b82324
commit c6e6f2a756
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@
- name: ZoneMinder | Debian | Pulling existing database password
ansible.builtin.shell:
cmd: "cat /etc/zm/conf.d/custom_db.conf | grep 'ZM_DB_PASS' | cut -d '=' -f2"
cmd: "cat /etc/zm/conf.d/custom_db.conf | grep 'ZM_DB_PASS' | cut -d '=' -f2-"
register: zm_db_pwd
when: zm_db_cnf_file.stat.exists
check_mode: false