Skip to content

Commit ee3fbb1

Browse files
committed
Update README to give credit to franklinkim.environment
1 parent 0d84489 commit ee3fbb1

File tree

4 files changed

+42
-39
lines changed

4 files changed

+42
-39
lines changed

LICENSE

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
1-
Copyright (c) We Are Interactive
1+
MIT License
22

3-
Permission is hereby granted, free of charge, to any person
4-
obtaining a copy of this software and associated documentation
5-
files (the "Software"), to deal in the Software without
6-
restriction, including without limitation the rights to use,
7-
copy, modify, merge, publish, distribute, sublicense, and/or sell
8-
copies of the Software, and to permit persons to whom the
9-
Software is furnished to do so, subject to the following
10-
conditions:
3+
Copyright (c) 2017 Nathan Dench
114

12-
The above copyright notice and this permission notice shall be
13-
included in all copies or substantial portions of the Software.
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
1411

15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17-
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19-
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20-
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21-
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22-
OTHER DEALINGS IN THE SOFTWARE.
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,35 @@
1-
# Ansible franklinkim.environment role
1+
# Ansible ndench.environment role
22

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

8-
> `franklinkim.environment` is an [Ansible](http://www.ansible.com) role which:
8+
> `ndench.environment` is an [Ansible](http://www.ansible.com) role which:
99
>
1010
> * adds `/etc/environment` variables
1111
> * adds php-fpm `pool.d/www.conf` variables
12+
>
13+
> Credit to the [franklinkim.environment](https://github.com/weareinteractive/ansible-environment) role which sets the system environment variables.
1214
1315
## Installation
1416

1517
Using `ansible-galaxy`:
1618

1719
```shell
18-
$ ansible-galaxy install franklinkim.environment
20+
$ ansible-galaxy install ndench.environment
1921
```
2022

2123
Using `requirements.yml`:
2224

2325
```yaml
24-
- src: franklinkim.environment
26+
- src: ndench.environment
2527
```
2628
2729
Using `git`:
2830

2931
```shell
30-
$ git clone https://github.com/weareinteractive/ansible-environment.git franklinkim.environment
32+
$ git clone https://github.com/ndench/ansible-environment.git ndench.environment
3133
```
3234

3335
## Dependencies
@@ -96,7 +98,7 @@ This is an example playbook:
9698
## Testing
9799

98100
```shell
99-
$ git clone https://github.com/weareinteractive/ansible-environment.git
101+
$ git clone https://github.com/ndench/ansible-environment.git
100102
$ cd ansible-environment
101103
$ make test
102104
```
@@ -118,4 +120,4 @@ $ ansible-role docgen
118120
```
119121

120122
## License
121-
Copyright (c) We Are Interactive under the MIT license.
123+
Copyright (c) Nathan Dench under the MIT license.

meta/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
galaxy_info:
3-
author: franklin
4-
company: We Are Interactive
5-
description: Adds /etc/environment variables
3+
author: ndench
4+
company: Nathan Dench
5+
description: Adds /etc/environment and php www.conf variables
66
min_ansible_version: 2.4
77
license: MIT
88
# Optionally specify the branch Galaxy will use when accessing the GitHub

meta/readme.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
---
2-
galaxy_name: franklinkim.environment
3-
github_user: weareinteractive
2+
galaxy_name: ndench.environment
3+
github_user: ndench
44
github_name: ansible-environment
55
badges: |
6-
[![Build Status](https://img.shields.io/travis/weareinteractive/ansible-environment.svg)](https://travis-ci.org/weareinteractive/ansible-environment)
7-
[![Galaxy](http://img.shields.io/badge/galaxy-weareinteractive.environment-blue.svg)](https://galaxy.ansible.com/weareinteractive/environment)
8-
[![GitHub Tags](https://img.shields.io/github/tag/weareinteractive/ansible-environment.svg)](https://github.com/weareinteractive/ansible-environment)
9-
[![GitHub Stars](https://img.shields.io/github/stars/weareinteractive/ansible-environment.svg)](https://github.com/weareinteractive/ansible-environment)
6+
[![Build Status](https://img.shields.io/travis/ndench/ansible-environment.svg)](https://travis-ci.org/ndench/ansible-environment)
7+
[![Galaxy](http://img.shields.io/badge/galaxy-ndench.environment-blue.svg)](https://galaxy.ansible.com/ndench/environment)
8+
[![GitHub Tags](https://img.shields.io/github/tag/ndench/ansible-environment.svg)](https://github.com/ndench/ansible-environment)
9+
[![GitHub Stars](https://img.shields.io/github/stars/ndench/ansible-environment.svg)](https://github.com/ndench/ansible-environment)
1010
description: |
1111
> * adds `/etc/environment` variables
1212
> * adds php-fpm `pool.d/www.conf` variables
13+
>
14+
> Credit to the [franklinkim.environment](https://github.com/weareinteractive/ansible-environment) role which sets the system environment variables.

0 commit comments

Comments
 (0)