Skip to content

Commit d0f2e6b

Browse files
committed
Update contact information and links after migration
1 parent 4ec7c0e commit d0f2e6b

File tree

25 files changed

+63
-62
lines changed

25 files changed

+63
-62
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ Contributing
55
2. Create a named feature branch (`$ git checkout -b my-new-feature`).
66
3. Write your change.
77
4. Write tests for your change (if applicable).
8-
5. [Run the tests](https://github.com/onddo/filesystem_resize-cookbook/blob/master/TESTING.md), ensuring they all pass (`$ bundle exec rake`).
8+
5. [Run the tests](https://github.com/zuazo/filesystem_resize-cookbook/blob/master/TESTING.md), ensuring they all pass (`$ bundle exec rake`).
99
6. Commit your change (`$ git commit -am 'Add some feature'`).
1010
7. Push to the branch (`$ git push origin my-new-feature`).
1111
8. [Submit a Pull Request using Github](https://help.github.com/articles/creating-a-pull-request).
1212

13-
Please do not hesitate to [open an issue](https://github.com/onddo/filesystem_resize-cookbook/issues/new) with any questions or problems.
13+
Please do not hesitate to [open an issue](https://github.com/zuazo/filesystem_resize-cookbook/issues/new) with any questions or problems.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
175175

176176
END OF TERMS AND CONDITIONS
177177

178-
Copyright 2014-2015 Onddo Labs, SL. (www.onddo.com)
178+
Copyright 2014-2015 Xabier de Zuazo
179179

180180
Licensed under the Apache License, Version 2.0 (the "License");
181181
you may not use this file except in compliance with the License.

README.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Description
22
===========
33
[![Cookbook Version](https://img.shields.io/cookbook/v/filesystem_resize.svg?style=flat)](https://supermarket.chef.io/cookbooks/filesystem_resize)
4-
[![Dependency Status](http://img.shields.io/gemnasium/onddo/filesystem_resize-cookbook.svg?style=flat)](https://gemnasium.com/onddo/filesystem_resize-cookbook)
5-
[![Code Climate](http://img.shields.io/codeclimate/github/onddo/filesystem_resize-cookbook.svg?style=flat)](https://codeclimate.com/github/onddo/filesystem_resize-cookbook)
6-
[![Build Status](http://img.shields.io/travis/onddo/filesystem_resize-cookbook.svg?style=flat)](https://travis-ci.org/onddo/filesystem_resize-cookbook)
4+
[![Dependency Status](http://img.shields.io/gemnasium/zuazo/filesystem_resize-cookbook.svg?style=flat)](https://gemnasium.com/zuazo/filesystem_resize-cookbook)
5+
[![Code Climate](http://img.shields.io/codeclimate/github/zuazo/filesystem_resize-cookbook.svg?style=flat)](https://codeclimate.com/github/zuazo/filesystem_resize-cookbook)
6+
[![Build Status](http://img.shields.io/travis/zuazo/filesystem_resize-cookbook.svg?style=flat)](https://travis-ci.org/zuazo/filesystem_resize-cookbook)
77

88
This Chef cookbook resizes the file system automatically when the underlying partition or disk increases its size.
99

@@ -23,7 +23,7 @@ This cookbook has been tested on the following platforms:
2323
* RedHat
2424
* Ubuntu (>= 12.04)
2525

26-
Please, [let us know](https://github.com/onddo/filesystem_resize-cookbook/issues/new?title=I%20have%20used%20it%20successfully%20on%20...) if you use it successfully on any other platform.
26+
Please, [let us know](https://github.com/zuazo/filesystem_resize-cookbook/issues/new?title=I%20have%20used%20it%20successfully%20on%20...) if you use it successfully on any other platform.
2727

2828
## Application Requirements
2929

@@ -100,7 +100,7 @@ Another alternative is to include it in your Run List:
100100

101101
```json
102102
{
103-
"name": "app001.onddo.com",
103+
"name": "app001.example.com",
104104
[...]
105105
"run_list": [
106106
[...]
@@ -112,7 +112,7 @@ Another alternative is to include it in your Run List:
112112
Testing
113113
=======
114114

115-
See [TESTING.md](https://github.com/onddo/filesystem_resize-cookbook/blob/master/TESTING.md).
115+
See [TESTING.md](https://github.com/zuazo/filesystem_resize-cookbook/blob/master/TESTING.md).
116116

117117
## ChefSpec Matchers
118118

@@ -153,22 +153,23 @@ expect(chef_run).to run_filesystem_resize_all('default')
153153
Contributing
154154
============
155155

156-
Please do not hesitate to [open an issue](https://github.com/onddo/filesystem_resize-cookbook/issues/new) with any questions or problems.
156+
Please do not hesitate to [open an issue](https://github.com/zuazo/filesystem_resize-cookbook/issues/new) with any questions or problems.
157157

158-
See [CONTRIBUTING.md](https://github.com/onddo/filesystem_resize-cookbook/blob/master/CONTRIBUTING.md).
158+
See [CONTRIBUTING.md](https://github.com/zuazo/filesystem_resize-cookbook/blob/master/CONTRIBUTING.md).
159159

160160
TODO
161161
====
162162

163-
See [TODO.md](https://github.com/onddo/filesystem_resize-cookbook/blob/master/TODO.md).
163+
See [TODO.md](https://github.com/zuazo/filesystem_resize-cookbook/blob/master/TODO.md).
164164

165165
License and Author
166166
==================
167167

168168
| | |
169169
|:---------------------|:-----------------------------------------|
170-
| **Author:** | [Xabier de Zuazo](https://github.com/zuazo) (<xabier@onddo.com>)
171-
| **Copyright:** | Copyright (c) 2014, Onddo Labs, SL. (www.onddo.com)
170+
| **Author:** | [Xabier de Zuazo](https://github.com/zuazo) (<xabier@zuazo.org>)
171+
| **Copyright:** | Copyright (c) 2015, Xabier de Zuazo
172+
| **Copyright:** | Copyright (c) 2014-2015, Onddo Labs, SL.
172173
| **License:** | Apache License, Version 2.0
173174

174175
Licensed under the Apache License, Version 2.0 (the "License");

attributes/default.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#
33
# Cookbook Name:: filesystem_resize
44
# Attributes:: default
5-
# Author:: Xabier de Zuazo (<xabier@onddo.com>)
6-
# Copyright:: Copyright (c) 2014-2015 Onddo Labs, SL. (www.onddo.com)
5+
# Author:: Xabier de Zuazo (<xabier@zuazo.org>)
6+
# Copyright:: Copyright (c) 2014-2015 Onddo Labs, SL.
77
# License:: Apache License, Version 2.0
88
#
99
# Licensed under the Apache License, Version 2.0 (the "License");

libraries/disk_device_base.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#
33
# Cookbook Name:: filesystem_resize
44
# Library:: disk_device_base
5-
# Author:: Xabier de Zuazo (<xabier@onddo.com>)
6-
# Copyright:: Copyright (c) 2014-2015 Onddo Labs, SL. (www.onddo.com)
5+
# Author:: Xabier de Zuazo (<xabier@zuazo.org>)
6+
# Copyright:: Copyright (c) 2014-2015 Onddo Labs, SL.
77
# License:: Apache License, Version 2.0
88
#
99
# Licensed under the Apache License, Version 2.0 (the "License");

libraries/filesystem.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#
33
# Cookbook Name:: filesystem_resize
44
# Library:: filesystem
5-
# Author:: Xabier de Zuazo (<xabier@onddo.com>)
6-
# Copyright:: Copyright (c) 2014-2015 Onddo Labs, SL. (www.onddo.com)
5+
# Author:: Xabier de Zuazo (<xabier@zuazo.org>)
6+
# Copyright:: Copyright (c) 2014-2015 Onddo Labs, SL.
77
# License:: Apache License, Version 2.0
88
#
99
# Licensed under the Apache License, Version 2.0 (the "License");

libraries/filesystem_disk.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#
33
# Cookbook Name:: filesystem_resize
44
# Library:: filesystem_disk
5-
# Author:: Xabier de Zuazo (<xabier@onddo.com>)
6-
# Copyright:: Copyright (c) 2014-2015 Onddo Labs, SL. (www.onddo.com)
5+
# Author:: Xabier de Zuazo (<xabier@zuazo.org>)
6+
# Copyright:: Copyright (c) 2014-2015 Onddo Labs, SL.
77
# License:: Apache License, Version 2.0
88
#
99
# Licensed under the Apache License, Version 2.0 (the "License");

libraries/filesystem_ext.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#
33
# Cookbook Name:: filesystem_resize
44
# Library:: filesystem_ext
5-
# Author:: Xabier de Zuazo (<xabier@onddo.com>)
6-
# Copyright:: Copyright (c) 2015 Onddo Labs, SL. (www.onddo.com)
5+
# Author:: Xabier de Zuazo (<xabier@zuazo.org>)
6+
# Copyright:: Copyright (c) 2015 Onddo Labs, SL.
77
# License:: Apache License, Version 2.0
88
#
99
# Licensed under the Apache License, Version 2.0 (the "License");

libraries/filesystem_type_base.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#
33
# Cookbook Name:: filesystem_resize
44
# Library:: filesystem_type_base
5-
# Author:: Xabier de Zuazo (<xabier@onddo.com>)
6-
# Copyright:: Copyright (c) 2015 Onddo Labs, SL. (www.onddo.com)
5+
# Author:: Xabier de Zuazo (<xabier@zuazo.org>)
6+
# Copyright:: Copyright (c) 2015 Onddo Labs, SL.
77
# License:: Apache License, Version 2.0
88
#
99
# Licensed under the Apache License, Version 2.0 (the "License");

libraries/filesystem_xfs.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#
33
# Cookbook Name:: filesystem_resize
44
# Library:: filesystem_xfs
5-
# Author:: Xabier de Zuazo (<xabier@onddo.com>)
6-
# Copyright:: Copyright (c) 2015 Onddo Labs, SL. (www.onddo.com)
5+
# Author:: Xabier de Zuazo (<xabier@zuazo.org>)
6+
# Copyright:: Copyright (c) 2015 Onddo Labs, SL.
77
# License:: Apache License, Version 2.0
88
#
99
# Licensed under the Apache License, Version 2.0 (the "License");

0 commit comments

Comments
 (0)