Skip to content

Commit

Permalink
feat: update to galaxy role name
Browse files Browse the repository at this point in the history
  • Loading branch information
franklinkim committed Oct 11, 2018
1 parent b14cffb commit fa75f4b
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 10 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.environment
- role: weareinteractive.environment
matrix:
- distribution: Ubuntu
distribution_version: "16.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.environment
ROLE_NAME=weareinteractive.environment
ROLE_PATH=/etc/ansible/roles/$(ROLE_NAME)
TEST_VERSION=ansible --version
TEST_SYNTAX=ansible-playbook -vv -i 'localhost,' -c local $(ROLE_PATH)/tests/main.yml --syntax-check
Expand Down
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,36 @@
# Ansible franklinkim.environment role
# Ansible weareinteractive.environment role

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

> `franklinkim.environment` is an [Ansible](http://www.ansible.com) role which:
> `weareinteractive.environment` is an [Ansible](http://www.ansible.com) role which:
>
> * adds `/etc/environment` variables
**Note:**

> Since Ansible Galaxy switched all role names to the organization name, this role has moved from `franklinkim.environment` to `weareinteractive.environment`!
## Installation

Using `ansible-galaxy`:

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

Using `requirements.yml`:

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

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

## Dependencies
Expand Down Expand Up @@ -64,7 +68,7 @@ This is an example playbook:
- hosts: all
roles:
- franklinkim.environment
- weareinteractive.environment
vars:
environment_config:
LC_ALL: C
Expand Down
6 changes: 5 additions & 1 deletion meta/readme.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
galaxy_name: franklinkim.environment
galaxy_name: weareinteractive.environment
github_user: weareinteractive
github_name: ansible-environment
badges: |
Expand All @@ -9,3 +9,7 @@ badges: |
[![GitHub Stars](https://img.shields.io/github/stars/weareinteractive/ansible-environment.svg)](https://github.com/weareinteractive/ansible-environment)
description: |
> * adds `/etc/environment` variables
**Note:**
> Since Ansible Galaxy switched all role names to the organization name, this role has moved from `franklinkim.environment` to `weareinteractive.environment`!
2 changes: 1 addition & 1 deletion tests/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

- hosts: all
roles:
- franklinkim.environment
- weareinteractive.environment
vars:
environment_config:
LC_ALL: C

0 comments on commit fa75f4b

Please sign in to comment.