yumモジュールを使わずrpmでパッケージ追加したい
何らかの事情でyumモジュールが使えない
もしくはshellモジュールでrpmで入れる必要がある人向け
- name: package-x.x.x.xxxのインストールチェック
shell: rpm -qa | grep package-x.x.x.xxx
register: rpm
failed_when: rpm.rc >= 2
- name: package-x.x.x.xxx.rpmのインストール
shell: rpm -ivh package-x.x.x.xxx.rpm
when: rpm.stdout.find('package-x.x.x.xxx') == -1
他にもやり方はあるだろうけどとりあえずはこれで
Author And Source
この問題について(yumモジュールを使わずrpmでパッケージ追加したい), 我々は、より多くの情報をここで見つけました https://qiita.com/arthur_1801/items/4f48556939e75ad7af2a著者帰属:元の著者の情報は、元の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 .