Skip to content
Snippets Groups Projects
Commit 21d3c419 authored by nimrod's avatar nimrod
Browse files

Merge branch 'master' of /home/nimrod/Documents/Shore/Ansible/example

# Conflicts:
#	defaults/main.yml
#	handlers/main.yml
#	molecule.yml
#	tasks/main.yml
#	tests/playbook.yml
#	vars/main.yml
parents 98a6d4b2 cf4fba1f
No related branches found
No related tags found
No related merge requests found
--- ---
# defaults file for ansible-role-ca-store # defaults file for ca-store
--- ---
# handlers file for ansible-role-ca-store # handlers file for ca-store
- name: Update CA store - name: Update CA store
command: '{{ "/usr/local/sbin/update-ca-certificates" if ansible_os_family == "OpenBSD" else "/usr/sbin/update-ca-certificates" }}' command: '{{ "/usr/local/sbin/update-ca-certificates" if ansible_os_family == "OpenBSD" else "/usr/sbin/update-ca-certificates" }}'
galaxy_info: galaxy_info:
author: Nimrod Adar author: Nimrod Adar
description: Install and configure similar CA store mechanism description: Install and configure common CA store mechanism
company: Shore technologies company: Shore technologies
license: MIT license: MIT
min_ansible_version: 2.0 min_ansible_version: 2.0
...@@ -12,5 +12,9 @@ galaxy_info: ...@@ -12,5 +12,9 @@ galaxy_info:
- name: Debian - name: Debian
versions: versions:
- jessie - jessie
- name: Ubuntu
versions:
- trusty
- xenial
galaxy_tags: [] galaxy_tags: []
dependencies: [] dependencies: []
...@@ -19,7 +19,7 @@ vagrant: ...@@ -19,7 +19,7 @@ vagrant:
- name: debian - name: debian
box: debian/jessie64 box: debian/jessie64
instances: instances:
- name: ansible-role-ca-store - name: ca-store
options: options:
append_platform_to_hostname: yes append_platform_to_hostname: yes
raw_config_args: raw_config_args:
...@@ -30,17 +30,17 @@ vagrant: ...@@ -30,17 +30,17 @@ vagrant:
docker: docker:
containers: containers:
- name: ansible-role-ca-store-xenial - name: ca-store-xenial
image: ubuntu image: ubuntu
image_version: xenial image_version: xenial
environment: environment:
DEBIAN_FRONTEND: noninteractive DEBIAN_FRONTEND: noninteractive
- name: ansible-role-ca-store-trusty - name: ca-store-trusty
image: ubuntu image: ubuntu
image_version: trusty image_version: trusty
environment: environment:
DEBIAN_FRONTEND: noninteractive DEBIAN_FRONTEND: noninteractive
- name: ansible-role-ca-store-jessie - name: ca-store-jessie
image: debian image: debian
image_version: jessie image_version: jessie
environment: environment:
......
--- ---
# tasks file for ansible-role-example # tasks file for ca-store
- name: Assertions - name: Assertions
assert: assert:
that: that:
......
--- ---
- hosts: ansible-role-ca-store-openbsd - hosts: ca-store-openbsd
gather_facts: false gather_facts: false
roles: [ openbsd_bootstrap ] roles: [ openbsd_bootstrap ]
......
--- ---
- src: https://github.com/adarnimrod/ansible-role-openbsd-bootstrap - role: openbsd-bootstrap
scm: git - role: debian-bootstrap
name: openbsd_bootstrap
- src: https://github.com/adarnimrod/ansible-role-debian-bootstrap
scm: git
name: debian_bootstrap
--- ---
# vars file for ansible-role-ca-store # vars file for ca-store
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment