Skip to content

Commit 677fbcd

Browse files
sudorandomNathan Beittenmiller
authored andcommitted
License Update to MIT
1 parent 5e55280 commit 677fbcd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+122
-128
lines changed

LICENSE

Lines changed: 16 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,19 @@
1-
Copyright (c) 2013, SoftLayer Technologies, Inc. All rights reserved.
1+
Copyright (c) 2013 SoftLayer Technologies, Inc. All rights reserved.
22

3-
Redistribution and use in source and binary forms, with or without modification,
4-
are permitted provided that the following conditions are met:
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
59

6-
* Redistributions of source code must retain the above copyright notice, this
7-
list of conditions and the following disclaimer.
8-
* Redistributions in binary form must reproduce the above copyright notice,
9-
this list of conditions and the following disclaimer in the documentation
10-
and/or other materials provided with the distribution.
11-
* Neither SoftLayer Technologies, Inc. nor the names of its contributors may be
12-
used to endorse or promote products derived from this software without
13-
specific prior written permission.
10+
The above copyright notice and this permission notice shall be included in
11+
all copies or substantial portions of the Software.
1412

15-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18-
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
19-
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20-
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21-
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
22-
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

SoftLayer/API.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
SoftLayer API bindings
55
66
:copyright: (c) 2013, SoftLayer Technologies, Inc. All rights reserved.
7-
:license: BSD, see LICENSE for more details.
7+
:license: MIT, see LICENSE for more details.
88
"""
99
import datetime
1010

SoftLayer/CLI/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Contains all code related to the CLI interface
55
66
:copyright: (c) 2013, SoftLayer Technologies, Inc. All rights reserved.
7-
:license: BSD, see LICENSE for more details.
7+
:license: MIT, see LICENSE for more details.
88
"""
99

1010

SoftLayer/CLI/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
The easiest way to do that is to use: 'sl config setup'
4141
"""
4242
# :copyright: (c) 2013, SoftLayer Technologies, Inc. All rights reserved.
43-
# :license: BSD, see LICENSE for more details.
43+
# :license: MIT, see LICENSE for more details.
4444

4545
import sys
4646
import logging

SoftLayer/CLI/environment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Abstracts everything related to the user's environment when running the CLI
55
66
:copyright: (c) 2013, SoftLayer Technologies, Inc. All rights reserved.
7-
:license: BSD, see LICENSE for more details.
7+
:license: MIT, see LICENSE for more details.
88
"""
99
import sys
1010
import getpass

SoftLayer/CLI/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Exceptions to be used in the CLI modules.
55
66
:copyright: (c) 2013, SoftLayer Technologies, Inc. All rights reserved.
7-
:license: BSD, see LICENSE for more details.
7+
:license: MIT, see LICENSE for more details.
88
"""
99

1010

SoftLayer/CLI/formatting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
command-line.
66
77
:copyright: (c) 2013, SoftLayer Technologies, Inc. All rights reserved.
8-
:license: BSD, see LICENSE for more details.
8+
:license: MIT, see LICENSE for more details.
99
"""
1010
import os
1111
import json

SoftLayer/CLI/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Helpers to be used in CLI modules in SoftLayer.CLI.modules.*
55
66
:copyright: (c) 2013, SoftLayer Technologies, Inc. All rights reserved.
7-
:license: BSD, see LICENSE for more details.
7+
:license: MIT, see LICENSE for more details.
88
"""
99

1010
from SoftLayer.utils import NestedDict

SoftLayer/CLI/modules/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Contains all plugable modules for the CLI interface
55
66
:copyright: (c) 2013, SoftLayer Technologies, Inc. All rights reserved.
7-
:license: BSD, see LICENSE for more details.
7+
:license: MIT, see LICENSE for more details.
88
"""
99

1010
from pkgutil import iter_modules

SoftLayer/CLI/modules/bmc.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
For several commands, <identifier> will be asked for. This can be the id,
1313
hostname or the ip address for a piece of hardware.
1414
"""
15+
# :copyright: (c) 2013, SoftLayer Technologies, Inc. All rights reserved.
16+
# :license: MIT, see LICENSE for more details.
1517
import re
1618
from os import linesep
1719
from SoftLayer.CLI import (

0 commit comments

Comments
 (0)