diff options
author | Linus Nordberg <linus@nordu.net> | 2017-01-12 23:21:25 +0100 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2017-01-12 23:25:39 +0100 |
commit | d3e573fa44786c99fa3f889dbab745187b9bd24c (patch) | |
tree | d5843e4ce060969cc2fc4d3a06aa6141ee09de1d | |
parent | 242b8a9c1f4e14f20e20772ab0f116ac402e7f23 (diff) |
Update copyright headers.
-rw-r--r-- | ebin/catlfish.app | 2 | ||||
-rw-r--r-- | src/catlfish_compat.erl | 3 | ||||
-rw-r--r-- | src/catlfish_web.erl | 2 | ||||
-rw-r--r-- | src/x509.erl | 2 | ||||
-rw-r--r-- | tools/certtools.py | 2 | ||||
-rwxr-xr-x | tools/comparecert.py | 2 | ||||
-rwxr-xr-x | tools/compileconfig.py | 2 | ||||
-rw-r--r-- | tools/convertdb.py | 2 | ||||
-rwxr-xr-x | tools/fetchacert.py | 3 | ||||
-rwxr-xr-x | tools/fetchallcerts.py | 2 | ||||
-rwxr-xr-x | tools/merge_backup.py | 2 | ||||
-rwxr-xr-x | tools/merge_dist.py | 2 | ||||
-rwxr-xr-x | tools/merge_fetch.py | 2 | ||||
-rwxr-xr-x | tools/merge_sth.py | 2 | ||||
-rw-r--r-- | tools/mergetools.py | 2 | ||||
-rwxr-xr-x | tools/parsebench.py | 2 | ||||
-rw-r--r-- | tools/precerttools.py | 2 | ||||
-rwxr-xr-x | tools/storagegc.py | 2 | ||||
-rwxr-xr-x | tools/submitcert.py | 2 | ||||
-rwxr-xr-x | tools/testcase1.py | 2 | ||||
-rwxr-xr-x | tools/treeinfo.py | 2 | ||||
-rwxr-xr-x | tools/validatestore.py | 2 | ||||
-rwxr-xr-x | tools/verifysct.py | 2 |
23 files changed, 27 insertions, 21 deletions
diff --git a/ebin/catlfish.app b/ebin/catlfish.app index 2c3f04a..e029a65 100644 --- a/ebin/catlfish.app +++ b/ebin/catlfish.app @@ -1,4 +1,4 @@ -%%% Copyright (c) 2014-2015, NORDUnet A/S. +%%% Copyright (c) 2014-2016, NORDUnet A/S. %%% See LICENSE for licensing information. %% Application resource file for catlfish. diff --git a/src/catlfish_compat.erl b/src/catlfish_compat.erl index 6dab325..adf4a1a 100644 --- a/src/catlfish_compat.erl +++ b/src/catlfish_compat.erl @@ -1,3 +1,6 @@ +%%% Copyright (c) 2016, NORDUnet A/S. +%%% See LICENSE for licensing information. + -module(catlfish_compat). -export([unpack_issuer/1, unpack_signature/1, poison_val/1]). -include_lib("public_key/include/public_key.hrl"). diff --git a/src/catlfish_web.erl b/src/catlfish_web.erl index 12441cf..2ddd7ed 100644 --- a/src/catlfish_web.erl +++ b/src/catlfish_web.erl @@ -1,4 +1,4 @@ -%%% Copyright (c) 2014-2015, NORDUnet A/S. +%%% Copyright (c) 2014-2016, NORDUnet A/S. %%% See LICENSE for licensing information. -module(catlfish_web). diff --git a/src/x509.erl b/src/x509.erl index 562ed3a..c31b699 100644 --- a/src/x509.erl +++ b/src/x509.erl @@ -1,4 +1,4 @@ -%%% Copyright (c) 2014-2015, NORDUnet A/S. +%%% Copyright (c) 2014-2016, NORDUnet A/S. %%% See LICENSE for licensing information. -module(x509). diff --git a/tools/certtools.py b/tools/certtools.py index 0009d5d..05ff66e 100644 --- a/tools/certtools.py +++ b/tools/certtools.py @@ -1,4 +1,4 @@ -# Copyright (c) 2014, NORDUnet A/S. +# Copyright (c) 2014-2016, NORDUnet A/S. # See LICENSE for licensing information. import subprocess diff --git a/tools/comparecert.py b/tools/comparecert.py index 81893f7..8f051d3 100755 --- a/tools/comparecert.py +++ b/tools/comparecert.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2014, NORDUnet A/S. +# Copyright (c) 2015, NORDUnet A/S. # See LICENSE for licensing information. import argparse diff --git a/tools/compileconfig.py b/tools/compileconfig.py index 1fa352e..dff1f3a 100755 --- a/tools/compileconfig.py +++ b/tools/compileconfig.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2014, NORDUnet A/S. +# Copyright (c) 2014-2016, NORDUnet A/S. # See LICENSE for licensing information. import argparse diff --git a/tools/convertdb.py b/tools/convertdb.py index c036843..81123d8 100644 --- a/tools/convertdb.py +++ b/tools/convertdb.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (c) 2014, NORDUnet A/S. +# Copyright (c) 2015, NORDUnet A/S. # See LICENSE for licensing information. import argparse diff --git a/tools/fetchacert.py b/tools/fetchacert.py index 82ea7c1..9df11c2 100755 --- a/tools/fetchacert.py +++ b/tools/fetchacert.py @@ -1,6 +1,9 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# Copyright (c) 2015, NORDUnet A/S. +# See LICENSE for licensing information. + import argparse import base64 from certtools import * diff --git a/tools/fetchallcerts.py b/tools/fetchallcerts.py index f9c2683..7d3414c 100755 --- a/tools/fetchallcerts.py +++ b/tools/fetchallcerts.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (c) 2014, NORDUnet A/S. +# Copyright (c) 2014-2016, NORDUnet A/S. # See LICENSE for licensing information. import argparse diff --git a/tools/merge_backup.py b/tools/merge_backup.py index e7cce26..381ace1 100755 --- a/tools/merge_backup.py +++ b/tools/merge_backup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (c) 2014-2015, NORDUnet A/S. +# Copyright (c) 2014-2016, NORDUnet A/S. # See LICENSE for licensing information. # # Copy entries indicated by file 'fetched' to all secondary merge nodes. diff --git a/tools/merge_dist.py b/tools/merge_dist.py index 6582eff..895d560 100755 --- a/tools/merge_dist.py +++ b/tools/merge_dist.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (c) 2014-2015, NORDUnet A/S. +# Copyright (c) 2014-2016, NORDUnet A/S. # See LICENSE for licensing information. # # Distribute the 'sth' file and all missing entries to all frontend nodes. diff --git a/tools/merge_fetch.py b/tools/merge_fetch.py index 8c3a997..8f94aed 100755 --- a/tools/merge_fetch.py +++ b/tools/merge_fetch.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (c) 2014-2015, NORDUnet A/S. +# Copyright (c) 2014-2016, NORDUnet A/S. # See LICENSE for licensing information. # # Fetch new entries from all storage nodes. diff --git a/tools/merge_sth.py b/tools/merge_sth.py index f4aec53..6b1bb60 100755 --- a/tools/merge_sth.py +++ b/tools/merge_sth.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (c) 2014-2015, NORDUnet A/S. +# Copyright (c) 2014-2016, NORDUnet A/S. # See LICENSE for licensing information. # # Generate a new 'sth' file. diff --git a/tools/mergetools.py b/tools/mergetools.py index 94901a9..d7dccee 100644 --- a/tools/mergetools.py +++ b/tools/mergetools.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, NORDUnet A/S. +# Copyright (c) 2015-2016, NORDUnet A/S. # See LICENSE for licensing information. import os diff --git a/tools/parsebench.py b/tools/parsebench.py index 6897b57..fdaed56 100755 --- a/tools/parsebench.py +++ b/tools/parsebench.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2015, NORDUnet A/S. +# Copyright (c) 2015-2016, NORDUnet A/S. # See LICENSE for licensing information. import argparse diff --git a/tools/precerttools.py b/tools/precerttools.py index 13ac572..232668b 100644 --- a/tools/precerttools.py +++ b/tools/precerttools.py @@ -1,4 +1,4 @@ -# Copyright (c) 2014, NORDUnet A/S. +# Copyright (c) 2015, NORDUnet A/S. # See LICENSE for licensing information. import sys diff --git a/tools/storagegc.py b/tools/storagegc.py index c9dd256..38b5379 100755 --- a/tools/storagegc.py +++ b/tools/storagegc.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2015, NORDUnet A/S. +# Copyright (c) 2015-2016, NORDUnet A/S. # See LICENSE for licensing information. import argparse diff --git a/tools/submitcert.py b/tools/submitcert.py index 3b10df5..4e4f3c1 100755 --- a/tools/submitcert.py +++ b/tools/submitcert.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2014, NORDUnet A/S. +# Copyright (c) 2014-2016, NORDUnet A/S. # See LICENSE for licensing information. import argparse diff --git a/tools/testcase1.py b/tools/testcase1.py index 81d589a..dbafe7a 100755 --- a/tools/testcase1.py +++ b/tools/testcase1.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (c) 2014, NORDUnet A/S. +# Copyright (c) 2014-2016, NORDUnet A/S. # See LICENSE for licensing information. import urllib2 diff --git a/tools/treeinfo.py b/tools/treeinfo.py index 036aeb2..b0cf2a7 100755 --- a/tools/treeinfo.py +++ b/tools/treeinfo.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (c) 2014, NORDUnet A/S. +# Copyright (c) 2015, NORDUnet A/S. # See LICENSE for licensing information. import argparse diff --git a/tools/validatestore.py b/tools/validatestore.py index 74963e0..a107768 100755 --- a/tools/validatestore.py +++ b/tools/validatestore.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2014, NORDUnet A/S. +# Copyright (c) 2015, NORDUnet A/S. # See LICENSE for licensing information. import argparse diff --git a/tools/verifysct.py b/tools/verifysct.py index 10f1672..5dc35d8 100755 --- a/tools/verifysct.py +++ b/tools/verifysct.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2014, NORDUnet A/S. +# Copyright (c) 2014-2016, NORDUnet A/S. # See LICENSE for licensing information. import argparse |