From f00d1d659ea5d9dde94e40dcddcd68da97b5eb37 Mon Sep 17 00:00:00 2001 From: Didier Roche Date: Tue, 13 Jul 2021 14:42:28 +0200 Subject: [PATCH] Add missing copyrights --- system_setup/__main__.py | 15 +++++++++++++++ system_setup/cmd/__init__.py | 14 ++++++++++++++ system_setup/models/__init__.py | 14 ++++++++++++++ system_setup/server/__init__.py | 14 ++++++++++++++ system_setup/server/controllers/__init__.py | 15 +++++++++++++++ 5 files changed, 72 insertions(+) diff --git a/system_setup/__main__.py b/system_setup/__main__.py index f7a09694..5b826b12 100644 --- a/system_setup/__main__.py +++ b/system_setup/__main__.py @@ -1,3 +1,18 @@ +# Copyright 2021 Canonical, Ltd. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + import sys if __name__ == '__main__': diff --git a/system_setup/cmd/__init__.py b/system_setup/cmd/__init__.py index e69de29b..8290406c 100644 --- a/system_setup/cmd/__init__.py +++ b/system_setup/cmd/__init__.py @@ -0,0 +1,14 @@ +# Copyright 2021 Canonical, Ltd. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . diff --git a/system_setup/models/__init__.py b/system_setup/models/__init__.py index e69de29b..8290406c 100644 --- a/system_setup/models/__init__.py +++ b/system_setup/models/__init__.py @@ -0,0 +1,14 @@ +# Copyright 2021 Canonical, Ltd. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . diff --git a/system_setup/server/__init__.py b/system_setup/server/__init__.py index e69de29b..8290406c 100644 --- a/system_setup/server/__init__.py +++ b/system_setup/server/__init__.py @@ -0,0 +1,14 @@ +# Copyright 2021 Canonical, Ltd. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . diff --git a/system_setup/server/controllers/__init__.py b/system_setup/server/controllers/__init__.py index e3e6f184..d30820b7 100644 --- a/system_setup/server/controllers/__init__.py +++ b/system_setup/server/controllers/__init__.py @@ -1,3 +1,18 @@ +# Copyright 2021 Canonical, Ltd. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + from subiquity.server.controllers.cmdlist import EarlyController, LateController, ErrorController from subiquity.server.controllers.locale import LocaleController from subiquity.server.controllers.reporting import ReportingController