There are two options that you can add to the [defaults] section of the ansible.cfg file that will control whether or not .retry files are created and where they are created.

[defaults]
...
retry_files_enabled = True  # Create them - the default
retry_files_enabled = False # Do not create them

retry_files_save_path = "~/" # The directory they will go into
                             # (home directory by default)

相关文章:

  • 2021-11-15
  • 2021-11-06
  • 2021-09-28
  • 2022-12-23
  • 2022-12-23
  • 2021-09-02
  • 2021-06-03
  • 2022-12-23
猜你喜欢
  • 2021-06-24
  • 2022-02-13
  • 2021-09-28
  • 2021-07-17
  • 2022-01-01
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案