centos8にproxy構築する途中、rolesを使用しています。
しかし、途中、以下のrolesを使うのですが、
roles: - geerlingguy.repo-epel - geerlingguy.pip
このようにpython-pipのパッケージがインストール失敗してしまいます。
FAILED! => {"changed": false, "failures": ["No package python-pip available."], "msg": "Failed to install some of the specified packages"
同じようにrolesをお使いの方、もしくわ、解決方法について分かる方、ご教授いただければ幸いです。
その他の方法もあればお教え下さい。
宜しくお願い致します。
以下、回答コメントに置きまして、参考コードとして書き込みしておきます。
①
- hosts: google gather_facts: True become: yes tasks: - set_fact: ansible_pkg_mgr: dnf when: - ansible_distribution == "CentOS" - ansible_distribution_major_version == "8" roles: - geerlingguy.repo-epel - geerlingguy.pip
②
- hosts: google become: yes tasks: - name: task yum: name: python-pip
③
- hosts: google become: yes tasks: # python3 のインストール - name: task yum: name: python3-pip
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/05 16:23
2020/06/05 17:21
2020/06/06 03:47
2020/06/06 04:15
2020/06/06 05:25
2020/06/06 06:01 編集
2020/06/06 08:39 編集
2020/06/06 08:47
2020/06/06 09:16
2020/06/06 10:08
2020/06/06 10:27
2020/06/06 15:06
2020/06/06 17:35
2020/06/06 17:57
2020/06/07 02:37 編集
2020/06/07 08:59
2020/06/14 10:01
2020/06/14 14:58