Ansible composerをインストールする方法

環境
RHEL8.6

概要
shell: curl -sS https://getcomposer.org/installer
shellモジュールを使ってcomposerをインストールします。

サンプルコード

- name: install composer
  become: true
  shell: curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin && mv /usr/bin/composer.phar /usr/bin/composer
         creates=/usr/bin/composer

 

Ansible

Posted by arkgame