Skip to content

Commit

Permalink
Add GPLv3 license
Browse files Browse the repository at this point in the history
  • Loading branch information
rcritten committed Mar 4, 2019
1 parent 22954b4 commit 7953dff
Show file tree
Hide file tree
Showing 21 changed files with 753 additions and 0 deletions.
674 changes: 674 additions & 0 deletions COPYING

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions src/ipahealthcheck/__init_.py
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
#
# Copyright (C) 2019 FreeIPA Contributors see COPYING for license
#

__import__('pkg_resources').declare_namespace(__name__)
4 changes: 4 additions & 0 deletions src/ipahealthcheck/core/constants.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# Copyright (C) 2019 FreeIPA Contributors see COPYING for license
#

DEFAULT_OUTPUT = 'json'

# Error reporting severity
Expand Down
4 changes: 4 additions & 0 deletions src/ipahealthcheck/core/files.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# Copyright (C) 2019 FreeIPA Contributors see COPYING for license
#

import grp
import os
import pwd
Expand Down
4 changes: 4 additions & 0 deletions src/ipahealthcheck/core/main.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# Copyright (C) 2019 FreeIPA Contributors see COPYING for license
#

import argparse
import logging
import pkg_resources
Expand Down
4 changes: 4 additions & 0 deletions src/ipahealthcheck/core/output.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# Copyright (C) 2019 FreeIPA Contributors see COPYING for license
#

import json
import sys
from ipahealthcheck.core.constants import getLevelName, SUCCESS
Expand Down
4 changes: 4 additions & 0 deletions src/ipahealthcheck/core/plugin.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# Copyright (C) 2019 FreeIPA Contributors see COPYING for license
#

from ipahealthcheck.core.constants import getLevelName


Expand Down
4 changes: 4 additions & 0 deletions src/ipahealthcheck/dogtag/example.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# Copyright (C) 2019 FreeIPA Contributors see COPYING for license
#

from ipahealthcheck.core.plugin import Plugin, Result
from ipahealthcheck.dogtag.plugin import registry

Expand Down
4 changes: 4 additions & 0 deletions src/ipahealthcheck/dogtag/plugin.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# Copyright (C) 2019 FreeIPA Contributors see COPYING for license
#

from ipahealthcheck.core.plugin import Registry

registry = Registry()
4 changes: 4 additions & 0 deletions src/ipahealthcheck/ipa/certs.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# Copyright (C) 2019 FreeIPA Contributors see COPYING for license
#

from ipahealthcheck.ipa.plugin import IPAPlugin, registry
from ipahealthcheck.core.plugin import Result, Results
from ipahealthcheck.core import constants
Expand Down
4 changes: 4 additions & 0 deletions src/ipahealthcheck/ipa/files.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# Copyright (C) 2019 FreeIPA Contributors see COPYING for license
#

import os

from ipahealthcheck.core.files import FileCheck
Expand Down
4 changes: 4 additions & 0 deletions src/ipahealthcheck/ipa/kerberos.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# Copyright (C) 2019 FreeIPA Contributors see COPYING for license
#

from ipahealthcheck.ipa.plugin import IPAPlugin, registry


Expand Down
4 changes: 4 additions & 0 deletions src/ipahealthcheck/ipa/plugin.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# Copyright (C) 2019 FreeIPA Contributors see COPYING for license
#

from ipalib import api, errors
from ipapython.ipaldap import realm_to_serverid
from ipaserver.install import cainstance
Expand Down
4 changes: 4 additions & 0 deletions src/ipahealthcheck/meta/core.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# Copyright (C) 2019 FreeIPA Contributors see COPYING for license
#

from datetime import datetime
import socket
from ipahealthcheck.core import constants
Expand Down
4 changes: 4 additions & 0 deletions src/ipahealthcheck/meta/plugin.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# Copyright (C) 2019 FreeIPA Contributors see COPYING for license
#

from ipahealthcheck.core.plugin import Plugin, Registry


Expand Down
4 changes: 4 additions & 0 deletions src/ipahealthcheck/meta/services.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# Copyright (C) 2019 FreeIPA Contributors see COPYING for license
#

from ipahealthcheck.core import constants
from ipahealthcheck.core.plugin import Result
from ipahealthcheck.meta.plugin import Plugin, registry
Expand Down
4 changes: 4 additions & 0 deletions src/ipahealthcheck/meta/systemd.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# Copyright (C) 2019 FreeIPA Contributors see COPYING for license
#

import dbus


Expand Down
4 changes: 4 additions & 0 deletions tests/test_core_files.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# Copyright (C) 2019 FreeIPA Contributors see COPYING for license
#

import pwd
import posix
from ipahealthcheck.core.files import FileCheck
Expand Down
4 changes: 4 additions & 0 deletions tests/test_registry.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# Copyright (C) 2019 FreeIPA Contributors see COPYING for license
#

from util import raises
from ipahealthcheck.core.plugin import Plugin, Registry

Expand Down
4 changes: 4 additions & 0 deletions tests/test_results.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# Copyright (C) 2019 FreeIPA Contributors see COPYING for license
#

from util import raises
from ipahealthcheck.core.plugin import Registry, Plugin, Result, Results
from ipahealthcheck.core import constants
Expand Down
3 changes: 3 additions & 0 deletions tests/util.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#
# Copyright (C) 2019 FreeIPA Contributors see COPYING for license
#

class ExceptionNotRaised(Exception):
"""
Expand Down

0 comments on commit 7953dff

Please sign in to comment.