We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Noticed that the plugin does account for local_tmp directory.
local_tmp
Thus, although Ansible configuration file has the following config, the plugin still creates temporary files under $HOME/.ansible/tmp.
$HOME/.ansible/tmp
local_tmp = ./.ansible/tmp/
This issue stems from the following code: https://github.com/greenpau/ndmtk/blob/master/ndmtk/plugins/action/ndmtk.py#L390-L398
self.conf['temp_dir'] = os.path.join(os.getenv("HOME"), '.ansible', 'tmp', self.plugin_name, self.conf['play_uuid'], self.conf['task_uuid'], self.info['host']);
Ansible reference: https://docs.ansible.com/ansible/latest/reference_appendices/config.html#default-local-tmp
The text was updated successfully, but these errors were encountered:
plugin: store temp files in local_tmp variable
a689b02
Resolves: #16
feature: add juniper mx device type
aa98e71
More info: Additionally, follows local_tmp configuration parameter, when applicable. Resolves: #16
No branches or pull requests
Noticed that the plugin does account for
local_tmp
directory.Thus, although Ansible configuration file has the following config, the plugin still creates temporary files under
$HOME/.ansible/tmp
.This issue stems from the following code: https://github.com/greenpau/ndmtk/blob/master/ndmtk/plugins/action/ndmtk.py#L390-L398
Ansible reference: https://docs.ansible.com/ansible/latest/reference_appendices/config.html#default-local-tmp
The text was updated successfully, but these errors were encountered: