Ansible で DEFAULT_SUDO_FLAGS から DEFAULT_BECOME_FLAGS に 変更
SUDO_FLAG は 非推奨の Warning が 出た場合
Warning
[DEPRECATION WARNING]: DEFAULT_SUDO_FLAGS option, In favor of Ansible Become, which is a generic framework. See become_flags. , use become instead.
This feature will be removed in version 2.8. Deprecation warnings can be disabled by setting deprecation_warnings=False in ansible.cfg.
/etc/ansible/ansible.cfg を 変更してください。
ansible.cfg
*** sudo_flgas を コメントアウト ***
# What flags to pass to sudo
# WARNING: leaving out the defaults might create unexpected behaviours
#sudo_flags = -H -S -n
*** become_flags を 追記(もしくはコメント解除) ***
[privilege_escalation]
・・・
become_flags = -H -S -n
Warning が でないことを確認
確認コマンド
# ansible-config dump --only-changed
・・・
DEFAULT_BECOME_FLAGS(/etc/ansible/ansible.cfg) = -H -S -n
・・・
Author And Source
この問題について(Ansible で DEFAULT_SUDO_FLAGS から DEFAULT_BECOME_FLAGS に 変更), 我々は、より多くの情報をここで見つけました https://qiita.com/kouji-kojima/items/81a94bdb175f7f4abadd著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .