您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
232B

  1. ---
  2. - name: Install ARA with pip
  3. pip:
  4. name: ara
  5. state: present
  6. - name: Get ARA's installed location
  7. shell: python -c "import os,ara; print(os.path.dirname(ara.__file__))"
  8. register: ara_location
  9. changed_when: false