mirror of
https://github.com/clearlinux/clear-config-management.git
synced 2026-08-18 19:45:57 +00:00
e203b67923
Makefile was installing config_template.py form ceph-common the new version of ceph playbooks include more plugins which will be included too with this change. Signed-off-by: Alberto Murillo <alberto.murillo.silva@intel.com>
12 lines
327 B
Makefile
12 lines
327 B
Makefile
DESTDIR=%{buildroot}
|
|
ansibledir = /usr/share/ansible
|
|
|
|
all:
|
|
|
|
install:
|
|
install -m755 -d $(DESTDIR)$(ansibledir)
|
|
cp -r roles $(DESTDIR)$(ansibledir)
|
|
cp -r examples $(DESTDIR)$(ansibledir)
|
|
install -m755 -d $(DESTDIR)$(ansibledir)/plugins/action
|
|
mv roles/ceph-common/plugins/actions/*.py $(DESTDIR)$(ansibledir)/plugins/action
|