From 4234b4cb392c0e70085edfbc80585fb9476629f9 Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Wed, 11 May 2022 14:33:08 +0200 Subject: Fix up any missing license and copyright headers --- .gitignore | 6 ++++-- CHANGELOG.md | 6 ++++++ README.md | 6 ++++++ lib/util/config.bash | 4 ++++ lib/util/pkg.bash | 4 ++++ lib/util/svc.bash | 4 ++++ share/doc/bashtard.1.scd | 4 ++++ share/doc/bashtard.3.scd | 4 ++++ share/doc/bashtard.5.scd | 4 ++++ share/doc/bashtard.7.scd | 4 ++++ share/doc/playbooks.d.7.scd | 4 ++++ 11 files changed, 48 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5994653..287d124 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ -etc/tyilnet/private -etc/ssl/**/*.key +# SPDX-FileCopyrightText: 2022 Patrick Spek +# +# SPDX-License-Identifier: AGPL-3.0-or-later + tmp diff --git a/CHANGELOG.md b/CHANGELOG.md index b589d75..7930672 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ + + # Changelog All notable changes to this project will be documented in this file. diff --git a/README.md b/README.md index 01503cf..ea1f3f7 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,9 @@ + + # Bashtard Bashtard is a small configuration management system written in Bash. diff --git a/lib/util/config.bash b/lib/util/config.bash index 7918a1e..3f939ff 100644 --- a/lib/util/config.bash +++ b/lib/util/config.bash @@ -1,5 +1,9 @@ #!/usr/bin/env bash +# SPDX-FileCopyrightText: 2022 Patrick Spek +# +# SPDX-License-Identifier: AGPL-3.0-or-later + # Read a particular value from a key/value configuration file. Using this # function introduces a dependency on awk. config() { diff --git a/lib/util/pkg.bash b/lib/util/pkg.bash index de70f78..1cdae2c 100644 --- a/lib/util/pkg.bash +++ b/lib/util/pkg.bash @@ -1,5 +1,9 @@ #!/usr/bin/env bash +# SPDX-FileCopyrightText: 2022 Patrick Spek +# +# SPDX-License-Identifier: AGPL-3.0-or-later + # OS independent package management pkg() { local system="bashtard/pkg" diff --git a/lib/util/svc.bash b/lib/util/svc.bash index 3b2ac90..fd65e4c 100644 --- a/lib/util/svc.bash +++ b/lib/util/svc.bash @@ -1,5 +1,9 @@ #!/usr/bin/env bash +# SPDX-FileCopyrightText: 2022 Patrick Spek +# +# SPDX-License-Identifier: AGPL-3.0-or-later + # OS independent service management. svc() { local system="bashtard/svc" diff --git a/share/doc/bashtard.1.scd b/share/doc/bashtard.1.scd index 1035b18..23822bf 100644 --- a/share/doc/bashtard.1.scd +++ b/share/doc/bashtard.1.scd @@ -1,5 +1,9 @@ bashtard(1) +; SPDX-FileCopyrightText: 2022 Patrick Spek +; +; SPDX-License-Identifier: AGPL-3.0-or-later + # NAME bashtard - A Bash-based configuration management utility diff --git a/share/doc/bashtard.3.scd b/share/doc/bashtard.3.scd index 1ff58c4..550c448 100644 --- a/share/doc/bashtard.3.scd +++ b/share/doc/bashtard.3.scd @@ -1,5 +1,9 @@ bashtard(3) +; SPDX-FileCopyrightText: 2022 Patrick Spek +; +; SPDX-License-Identifier: AGPL-3.0-or-later + # INTRODUCTION When writing a *playbook*, you will want to know of the variables and functions diff --git a/share/doc/bashtard.5.scd b/share/doc/bashtard.5.scd index c7791cf..cec92ea 100644 --- a/share/doc/bashtard.5.scd +++ b/share/doc/bashtard.5.scd @@ -1,5 +1,9 @@ bashtard(5) +; SPDX-FileCopyrightText: 2022 Patrick Spek +; +; SPDX-License-Identifier: AGPL-3.0-or-later + # INTRODUCTION When it comes to configuration, *bashtard* checks various locations for files diff --git a/share/doc/bashtard.7.scd b/share/doc/bashtard.7.scd index 6e989c4..d3d2148 100644 --- a/share/doc/bashtard.7.scd +++ b/share/doc/bashtard.7.scd @@ -1,5 +1,9 @@ bashtard(7) "/etc/bashtard" +; SPDX-FileCopyrightText: 2022 Patrick Spek +; +; SPDX-License-Identifier: AGPL-3.0-or-later + # HIERARCHY # defaults diff --git a/share/doc/playbooks.d.7.scd b/share/doc/playbooks.d.7.scd index 1d2af2e..7157350 100644 --- a/share/doc/playbooks.d.7.scd +++ b/share/doc/playbooks.d.7.scd @@ -1,5 +1,9 @@ playbooks.d(7) "/etc/bashtard/playbooks.d" +; SPDX-FileCopyrightText: 2022 Patrick Spek +; +; SPDX-License-Identifier: AGPL-3.0-or-later + # INTRODUCTION *bashtard* playbooks are, in essence, no more than directories with a small -- cgit v1.1