mirror of https://github.com/ceph/ceph-ansible.git
20 lines
386 B
YAML
20 lines
386 B
YAML
|
---
|
||
|
- name: install calamari server
|
||
|
apt:
|
||
|
pkg: calamari-server
|
||
|
state: present
|
||
|
when: ansible_os_family == 'Debian'
|
||
|
tags:
|
||
|
- package-install
|
||
|
|
||
|
- name: install calamari server
|
||
|
yum:
|
||
|
pkg: calamari-server
|
||
|
state: present
|
||
|
when: ansible_os_family == 'RedHat'
|
||
|
tags:
|
||
|
- package-install
|
||
|
|
||
|
- name: initialize the calamari server api
|
||
|
command: calamari-ctl initialize
|