From 41f9210a1ec6905879c9800f05ab62007854a471 Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Thu, 25 Nov 2021 13:45:42 +0900 Subject: [PATCH] include/ipc: Add GPLv3 notice The ipc module does not have a license header, making it hard to tell what license the code was published under if the file ever gets separated. This commit adds a license header to the ipc module. --- include/ipc.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/include/ipc.sh b/include/ipc.sh index be6acab..bce6f08 100644 --- a/include/ipc.sh +++ b/include/ipc.sh @@ -1,5 +1,21 @@ #!/bin/bash +# ipc.sh - Toolbox module for message-based IPC +# Copyright (C) 2021 Matthias Kruk +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + __init() { if ! include "json" "queue"; then return 1 -- 2.47.3