From c46efa68c06d79cfec39a9db2a161c1c5e1a6bdb Mon Sep 17 00:00:00 2001 From: David Kohn Date: Fri, 2 Oct 2020 14:22:48 -0400 Subject: [PATCH] Add license information --- CODE_OF_CONDUCT.md | 1 + LICENSE | 7 +++++++ NOTICE | 11 +++++++++++ cmd/ts-dump/main.go | 3 +++ cmd/ts-restore/main.go | 3 +++ pkg/dump/dump.go | 3 +++ pkg/restore/restore.go | 3 +++ pkg/test/restore_test.go | 3 +++ pkg/util/util.go | 3 +++ 9 files changed, 37 insertions(+) create mode 100644 CODE_OF_CONDUCT.md create mode 100644 LICENSE create mode 100644 NOTICE diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..8bf25c2 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1 @@ +The Timescale Code of Conduct can be found at . \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..b91c45b --- /dev/null +++ b/LICENSE @@ -0,0 +1,7 @@ +Source code in this repository, and any binaries built from this source code, +in whole or in part, are licensed under the Timescale License (the "License"). +You may not use these files except in compliance with the License. + +You may obtain a copy of the License at + + https://github.com/timescale/timescaledb/blob/master/tsl/LICENSE-TIMESCALE \ No newline at end of file diff --git a/NOTICE b/NOTICE new file mode 100644 index 0000000..29fd4c1 --- /dev/null +++ b/NOTICE @@ -0,0 +1,11 @@ +TimescaleDB-Backup (TM) + +Copyright (c) 2020 Timescale, Inc. All Rights Reserved. + +Source code in this repository, and any binaries built from this source code, +in whole or in part, are licensed under the Timescale License (the "License"). +You may not use these files except in compliance with the License. + +You may obtain a copy of the License at + + https://github.com/timescale/timescaledb/blob/master/tsl/LICENSE-TIMESCALE \ No newline at end of file diff --git a/cmd/ts-dump/main.go b/cmd/ts-dump/main.go index 2b31a7a..e6f17d1 100644 --- a/cmd/ts-dump/main.go +++ b/cmd/ts-dump/main.go @@ -1,3 +1,6 @@ +// This file and its contents are licensed under the Timescale License +// Please see the included NOTICE for copyright information and +// LICENSE for a copy of the license. package main import ( diff --git a/cmd/ts-restore/main.go b/cmd/ts-restore/main.go index 9cba041..d8ba421 100644 --- a/cmd/ts-restore/main.go +++ b/cmd/ts-restore/main.go @@ -1,3 +1,6 @@ +// This file and its contents are licensed under the Timescale License +// Please see the included NOTICE for copyright information and +// LICENSE for a copy of the license. package main import ( diff --git a/pkg/dump/dump.go b/pkg/dump/dump.go index abf85ae..5edf9ff 100644 --- a/pkg/dump/dump.go +++ b/pkg/dump/dump.go @@ -1,3 +1,6 @@ +// This file and its contents are licensed under the Timescale License +// Please see the included NOTICE for copyright information and +// LICENSE for a copy of the license. package dump import ( diff --git a/pkg/restore/restore.go b/pkg/restore/restore.go index adc1402..586f17a 100644 --- a/pkg/restore/restore.go +++ b/pkg/restore/restore.go @@ -1,3 +1,6 @@ +// This file and its contents are licensed under the Timescale License +// Please see the included NOTICE for copyright information and +// LICENSE for a copy of the license. package restore import ( diff --git a/pkg/test/restore_test.go b/pkg/test/restore_test.go index eb62841..f75778b 100644 --- a/pkg/test/restore_test.go +++ b/pkg/test/restore_test.go @@ -1,3 +1,6 @@ +// This file and its contents are licensed under the Timescale License +// Please see the included NOTICE for copyright information and +// LICENSE for a copy of the license. package test import ( diff --git a/pkg/util/util.go b/pkg/util/util.go index c15a3b6..bd5ac51 100644 --- a/pkg/util/util.go +++ b/pkg/util/util.go @@ -1,3 +1,6 @@ +// This file and its contents are licensed under the Timescale License +// Please see the included NOTICE for copyright information and +// LICENSE for a copy of the license. package util import (