Skip to content

Commit

Permalink
Added license.
Browse files Browse the repository at this point in the history
  • Loading branch information
ykalchevskiy committed Jul 8, 2013
1 parent 67b2f71 commit bc7fc6a
Show file tree
Hide file tree
Showing 10 changed files with 88 additions and 4 deletions.
30 changes: 30 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
Copyright (c) 2013, Crystalnix.

Redistribution and use in source and binary forms of the software as well
as documentation, with or without modification, are permitted provided
that the following conditions are met:

* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.

* The names of the contributors may not be used to endorse or
promote products derived from this software without specific
prior written permission.

THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
7 changes: 7 additions & 0 deletions serverauditor_sshconfig/core/api.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# coding: utf-8

"""
Copyright (c) 2013 Crystalnix.
License BSD, see LICENSE for more details.
"""

import base64
import json
import urllib2
Expand Down
7 changes: 7 additions & 0 deletions serverauditor_sshconfig/core/application.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# coding: utf-8

"""
Copyright (c) 2013 Crystalnix.
License BSD, see LICENSE for more details.
"""

import abc
import base64
import ConfigParser
Expand Down
5 changes: 5 additions & 0 deletions serverauditor_sshconfig/core/cryptor.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
#!/usr/bin/env python
# coding: utf-8

"""
Copyright (c) 2013 Crystalnix.
License BSD, see LICENSE for more details.
"""

from __future__ import print_function

import abc
Expand Down
7 changes: 7 additions & 0 deletions serverauditor_sshconfig/core/logger.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# coding: utf-8

"""
Copyright (c) 2013 Crystalnix.
License BSD, see LICENSE for more details.
"""

from __future__ import print_function

import abc
Expand Down
7 changes: 7 additions & 0 deletions serverauditor_sshconfig/core/ssh_config.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# coding: utf-8

"""
Copyright (c) 2013 Crystalnix.
License BSD, see LICENSE for more details.
"""

import getpass
import os
import re
Expand Down
7 changes: 7 additions & 0 deletions serverauditor_sshconfig/core/utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# coding: utf-8

"""
Copyright (c) 2013 Crystalnix.
License BSD, see LICENSE for more details.
"""

from itertools import izip
from multiprocessing import Pipe, Process

Expand Down
8 changes: 6 additions & 2 deletions serverauditor_sshconfig/sa_export.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
#!/usr/bin/env python
#
# Copyright 2013 Crystalnix
# coding: utf-8

"""
Copyright (c) 2013 Crystalnix.
License BSD, see LICENSE for more details.
"""

import sys

Expand Down
8 changes: 6 additions & 2 deletions serverauditor_sshconfig/sa_import.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
#!/usr/bin/env python
#
# Copyright 2013 Crystalnix
# coding: utf-8

"""
Copyright (c) 2013 Crystalnix.
License BSD, see LICENSE for more details.
"""

import os
import stat
Expand Down
6 changes: 6 additions & 0 deletions serverauditor_sshconfig/serverauditor
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
#!/usr/bin/env python
# coding: utf-8

"""
Copyright (c) 2013 Crystalnix.
License BSD, see LICENSE for more details.
"""

import sys

Expand Down

0 comments on commit bc7fc6a

Please sign in to comment.