Skip to content

Commit fe191ef

Browse files
committed
license: switch to GPLv2-or-later
Some folks have raised concerns about using GPLv3+ code in appliances and the like when catatonit is used with Podman. Given there are plenty of more liberally-licenced alternatives to catatonit it seems reasonable to use the less-worry-inducing GPLv2. Signed-off-by: Aleksa Sarai <cyphar@cyphar.com>
1 parent d8d72fe commit fe191ef

File tree

7 files changed

+312
-639
lines changed

7 files changed

+312
-639
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
# SPDX-License-Identifier: GPL-2.0-or-later
2+
#
13
# catatonit: a container init so simple it's effectively brain-dead
2-
# Copyright (C) 2018-2021 SUSE LLC
4+
# Copyright (C) 2018-2023 SUSE LLC
35
#
4-
# This program is free software: you can redistribute it and/or modify
6+
# This program is free software; you can redistribute it and/or modify
57
# it under the terms of the GNU General Public License as published by
6-
# the Free Software Foundation, either version 3 of the License, or
8+
# the Free Software Foundation, either version 2 of the License, or
79
# (at your option) any later version.
810
#
911
# This program is distributed in the hope that it will be useful,

COPYING

Lines changed: 282 additions & 617 deletions
Large diffs are not rendered by default.

Makefile.am

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
# SPDX-License-Identifier: GPL-2.0-or-later
2+
#
13
# catatonit: a container init so simple it's effectively brain-dead
2-
# Copyright (C) 2018 SUSE LLC
4+
# Copyright (C) 2018-2023 SUSE LLC
35
#
4-
# This program is free software: you can redistribute it and/or modify
6+
# This program is free software; you can redistribute it and/or modify
57
# it under the terms of the GNU General Public License as published by
6-
# the Free Software Foundation, either version 3 of the License, or
8+
# the Free Software Foundation, either version 2 of the License, or
79
# (at your option) any later version.
810
#
911
# This program is distributed in the hope that it will be useful,

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ catatonit uses autotools for building, so building is a fairly standard:
4949

5050
### License ###
5151

52-
catatonit is licensed under the GNU General Public License version 3 or later.
52+
catatonit is licensed under the GNU General Public License version 2 or later.
5353

5454
```
5555
catatonit: a container init so simple it's effectively brain-dead
56-
Copyright (C) 2018-2019 SUSE LLC
56+
Copyright (C) 2018-2023 SUSE LLC
5757
58-
This program is free software: you can redistribute it and/or modify
58+
This program is free software; you can redistribute it and/or modify
5959
it under the terms of the GNU General Public License as published by
60-
the Free Software Foundation, either version 3 of the License, or
60+
the Free Software Foundation, either version 2 of the License, or
6161
(at your option) any later version.
6262
6363
This program is distributed in the hope that it will be useful,

catatonit.c

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
// SPDX-License-Identifier: GPL-2.0-or-later
12
/*
23
* catatonit: a container init so simple it's effectively brain-dead
3-
* Copyright (C) 2018-2021 SUSE LLC
4+
* Copyright (C) 2018-2023 SUSE LLC
45
*
5-
* This program is free software: you can redistribute it and/or modify
6+
* This program is free software; you can redistribute it and/or modify
67
* it under the terms of the GNU General Public License as published by
7-
* the Free Software Foundation, either version 3 of the License, or
8+
* the Free Software Foundation, either version 2 of the License, or
89
* (at your option) any later version.
910
*
1011
* This program is distributed in the hope that it will be useful,

config.h.in

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
// SPDX-License-Identifier: GPL-3.0-or-later
12
/*
23
* catatonit: a container init so simple it's effectively brain-dead
3-
* Copyright (C) 2018 SUSE LLC
4+
* Copyright (C) 2018-2023 SUSE LLC
45
*
5-
* This program is free software: you can redistribute it and/or modify
6+
* This program is free software; you can redistribute it and/or modify
67
* it under the terms of the GNU General Public License as published by
7-
* the Free Software Foundation, either version 3 of the License, or
8+
* the Free Software Foundation, either version 2 of the License, or
89
* (at your option) any later version.
910
*
1011
* This program is distributed in the hope that it will be useful,
@@ -25,11 +26,11 @@
2526
#define PROGRAM_URL "@PACKAGE_URL@"
2627
#define PROGRAM_LICENSE \
2728
PROGRAM_NAME ": a container init so simple it's effectively brain-dead\n" \
28-
"Copyright (C) 2018 SUSE LLC\n" \
29+
"Copyright (C) 2018-2023 SUSE LLC\n" \
2930
"\n" \
30-
"This program is free software: you can redistribute it and/or modify\n" \
31+
"This program is free software; you can redistribute it and/or modify\n" \
3132
"it under the terms of the GNU General Public License as published by\n" \
32-
"the Free Software Foundation, either version 3 of the License, or\n" \
33+
"the Free Software Foundation, either version 2 of the License, or\n" \
3334
"(at your option) any later version.\n" \
3435
"\n" \
3536
"This program is distributed in the hope that it will be useful,\n" \

configure.ac

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
# SPDX-License-Identifier: GPL-2.0-or-later
2+
#
13
# catatonit: a container init so simple it's effectively brain-dead
2-
# Copyright (C) 2018 SUSE LLC
4+
# Copyright (C) 2018-2023 SUSE LLC
35
#
4-
# This program is free software: you can redistribute it and/or modify
6+
# This program is free software; you can redistribute it and/or modify
57
# it under the terms of the GNU General Public License as published by
6-
# the Free Software Foundation, either version 3 of the License, or
8+
# the Free Software Foundation, either version 2 of the License, or
79
# (at your option) any later version.
810
#
911
# This program is distributed in the hope that it will be useful,

0 commit comments

Comments
 (0)