Skip to content

Commit

Permalink
feat: rename role
Browse files Browse the repository at this point in the history
  • Loading branch information
franklinkim committed May 14, 2019
1 parent 55fa0bc commit 53d2eaf
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
- docker
env:
global:
- role: franklinkim.apache2
- role: weareinteractive.apache2
matrix:
- distribution: Ubuntu
distribution_version: "18.04"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PWD=$(shell pwd)
ROLE_NAME=franklinkim.apache2
ROLE_NAME=weareinteractive.apache2
ROLE_PATH=/etc/ansible/roles/$(ROLE_NAME)
TEST_VERSION=ansible --version
TEST_DEPS=ansible-galaxy install -c weareinteractive.apt weareinteractive.openssl weareinteractive.htpasswd
Expand Down
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Ansible franklinkim.apache2 role
# Ansible weareinteractive.apache2 role

[![Build Status](https://img.shields.io/travis/weareinteractive/ansible-apache2.svg)](https://travis-ci.org/weareinteractive/ansible-apache2)
[![Galaxy](http://img.shields.io/badge/galaxy-franklinkim.apache2-blue.svg)](https://galaxy.ansible.com/list#/roles/1364)
[![Galaxy](https://img.shields.io/badge/galaxy-weareinteractive.apache2-blue.svg)](https://galaxy.ansible.com/weareinteractive/apache2)
[![GitHub Tags](https://img.shields.io/github/tag/weareinteractive/ansible-apache2.svg)](https://github.com/weareinteractive/ansible-apache2)
[![GitHub Stars](https://img.shields.io/github/stars/weareinteractive/ansible-apache2.svg)](https://github.com/weareinteractive/ansible-apache2)

> `franklinkim.apache2` is an [Ansible](http://www.ansible.com) role which:
> `weareinteractive.apache2` is an [Ansible](http://www.ansible.com) role which:
>
> * installs apache2
> * configures apache2
Expand All @@ -17,24 +17,28 @@
> * adds rules
> * configures service
**Note:**

> Since Ansible Galaxy supports [organization](https://www.ansible.com/blog/ansible-galaxy-2-release) now, this role has moved from `franklinkim.apache2` to `weareinteractive.apache2`!
## Installation

Using `ansible-galaxy`:

```shell
$ ansible-galaxy install franklinkim.apache2
$ ansible-galaxy install weareinteractive.apache2
```

Using `requirements.yml`:

```yaml
- src: franklinkim.apache2
- src: weareinteractive.apache2
```
Using `git`:

```shell
$ git clone https://github.com/weareinteractive/ansible-apache2.git franklinkim.apache2
$ git clone https://github.com/weareinteractive/ansible-apache2.git weareinteractive.apache2
```

## Dependencies
Expand Down Expand Up @@ -173,7 +177,7 @@ This is an example playbook:
- weareinteractive.apt
- weareinteractive.openssl
- weareinteractive.htpasswd
- franklinkim.apache2
- weareinteractive.apache2
vars:
htpasswd:
- name: foobar
Expand Down
8 changes: 6 additions & 2 deletions meta/readme.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---

galaxy_name: franklinkim.apache2
galaxy_name: weareinteractive.apache2
github_user: weareinteractive
github_name: ansible-apache2
badges: |
[![Build Status](https://img.shields.io/travis/weareinteractive/ansible-apache2.svg)](https://travis-ci.org/weareinteractive/ansible-apache2)
[![Galaxy](http://img.shields.io/badge/galaxy-franklinkim.apache2-blue.svg)](https://galaxy.ansible.com/list#/roles/1364)
[![Galaxy](https://img.shields.io/badge/galaxy-weareinteractive.apache2-blue.svg)](https://galaxy.ansible.com/weareinteractive/apache2)
[![GitHub Tags](https://img.shields.io/github/tag/weareinteractive/ansible-apache2.svg)](https://github.com/weareinteractive/ansible-apache2)
[![GitHub Stars](https://img.shields.io/github/stars/weareinteractive/ansible-apache2.svg)](https://github.com/weareinteractive/ansible-apache2)
description: |
Expand All @@ -18,6 +18,10 @@ description: |
> * optionally removes default host
> * adds rules
> * configures service
**Note:**
> Since Ansible Galaxy supports [organization](https://www.ansible.com/blog/ansible-galaxy-2-release) now, this role has moved from `franklinkim.apache2` to `weareinteractive.apache2`!
after_handlers: |
## Rules
Expand Down
2 changes: 1 addition & 1 deletion tests/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
- weareinteractive.apt
- weareinteractive.openssl
- weareinteractive.htpasswd
- franklinkim.apache2
- weareinteractive.apache2
vars:
htpasswd:
- name: foobar
Expand Down

0 comments on commit 53d2eaf

Please sign in to comment.