mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
fixed vault password file script execution
This commit is contained in:
parent
6b842d9c49
commit
a680ef66dd
1 changed files with 2 additions and 1 deletions
|
@ -23,11 +23,12 @@ import copy
|
|||
import json
|
||||
import os
|
||||
import stat
|
||||
import subprocess
|
||||
|
||||
from yaml import load, YAMLError
|
||||
from six import text_type, string_types
|
||||
|
||||
from ansible.errors import AnsibleFileNotFound, AnsibleParserError
|
||||
from ansible.errors import AnsibleFileNotFound, AnsibleParserError, AnsibleError
|
||||
from ansible.errors.yaml_strings import YAML_SYNTAX_ERROR
|
||||
from ansible.parsing.vault import VaultLib
|
||||
from ansible.parsing.splitter import unquote
|
||||
|
|
Loading…
Reference in a new issue