aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2022-05-11 14:33:08 +0200
committerPatrick Spek <p.spek@tyil.nl>2022-05-11 14:33:08 +0200
commit4234b4cb392c0e70085edfbc80585fb9476629f9 (patch)
tree60192909466711fd129565808b3420e1fe1254cd
parentb38099416b9e90c1bcc0e2ebc32eab6284254c66 (diff)
Fix up any missing license and copyright headers
-rw-r--r--.gitignore6
-rw-r--r--CHANGELOG.md6
-rw-r--r--README.md6
-rw-r--r--lib/util/config.bash4
-rw-r--r--lib/util/pkg.bash4
-rw-r--r--lib/util/svc.bash4
-rw-r--r--share/doc/bashtard.1.scd4
-rw-r--r--share/doc/bashtard.3.scd4
-rw-r--r--share/doc/bashtard.5.scd4
-rw-r--r--share/doc/bashtard.7.scd4
-rw-r--r--share/doc/playbooks.d.7.scd4
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 <p.spek@tyil.nl>
+#
+# 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 @@
+<!--
+SPDX-FileCopyrightText: 2022 Patrick Spek <p.spek@tyil.nl>
+
+SPDX-License-Identifier: AGPL-3.0-or-later
+-->
+
# 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 @@
+<!--
+SPDX-FileCopyrightText: 2022 Patrick Spek <p.spek@tyil.nl>
+
+SPDX-License-Identifier: AGPL-3.0-or-later
+-->
+
# 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 <p.spek@tyil.nl>
+#
+# 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 <p.spek@tyil.nl>
+#
+# 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 <p.spek@tyil.nl>
+#
+# 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 <p.spek@tyil.nl>
+;
+; 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 <p.spek@tyil.nl>
+;
+; 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 <p.spek@tyil.nl>
+;
+; 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 <p.spek@tyil.nl>
+;
+; 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 <p.spek@tyil.nl>
+;
+; SPDX-License-Identifier: AGPL-3.0-or-later
+
# INTRODUCTION
*bashtard* playbooks are, in essence, no more than directories with a small