aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2023-03-11 11:37:50 -0700
committerSean Whitton <spwhitton@spwhitton.name>2023-03-11 11:37:50 -0700
commitfd36c9876d00dcfb61512fb0a96cfa125044403e (patch)
tree2c63a138b2695b8e5f45c96362543a08949a38fb /src
parent165bef622b370ec7d1de95bcb2a1ef59070aee49 (diff)
downloadconsfigurator-fd36c9876d00dcfb61512fb0a96cfa125044403e.tar.gz
http -> https for fsf.org and gnu.org URIs
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src')
-rw-r--r--src/combinator.lisp2
-rw-r--r--src/connection.lisp2
-rw-r--r--src/connection/as.lisp2
-rw-r--r--src/connection/chroot.lisp2
-rw-r--r--src/connection/fork.lisp2
-rw-r--r--src/connection/linux-namespace.lisp2
-rw-r--r--src/connection/local.lisp2
-rw-r--r--src/connection/rehome.lisp2
-rw-r--r--src/connection/sbcl.lisp2
-rw-r--r--src/connection/setuid.lisp2
-rw-r--r--src/connection/shell-wrap.lisp2
-rw-r--r--src/connection/ssh.lisp2
-rw-r--r--src/connection/su.lisp2
-rw-r--r--src/connection/sudo.lisp2
-rw-r--r--src/data.lisp2
-rw-r--r--src/data/asdf.lisp2
-rw-r--r--src/data/files-tree.lisp2
-rw-r--r--src/data/git-snapshot.lisp2
-rw-r--r--src/data/gpgpubkeys.lisp2
-rw-r--r--src/data/local-file.lisp2
-rw-r--r--src/data/pass.lisp2
-rw-r--r--src/data/pgp.lisp2
-rw-r--r--src/data/ssh-askpass.lisp2
-rw-r--r--src/data/util.lisp2
-rw-r--r--src/deployment.lisp2
-rw-r--r--src/host.lisp2
-rw-r--r--src/image.lisp2
-rw-r--r--src/property.lisp2
-rw-r--r--src/property/apache.lisp2
-rw-r--r--src/property/apt.lisp2
-rw-r--r--src/property/ccache.lisp2
-rw-r--r--src/property/chroot.lisp2
-rw-r--r--src/property/cmd.lisp2
-rw-r--r--src/property/container.lisp2
-rw-r--r--src/property/cron.lisp2
-rw-r--r--src/property/crypttab.lisp2
-rw-r--r--src/property/disk.lisp2
-rw-r--r--src/property/etc-default.lisp2
-rw-r--r--src/property/file.lisp2
-rw-r--r--src/property/firewalld.lisp2
-rw-r--r--src/property/fstab.lisp2
-rw-r--r--src/property/git.lisp2
-rw-r--r--src/property/gnupg.lisp2
-rw-r--r--src/property/grub.lisp2
-rw-r--r--src/property/hostname.lisp2
-rw-r--r--src/property/installer.lisp2
-rw-r--r--src/property/lets-encrypt.lisp2
-rw-r--r--src/property/libvirt.lisp2
-rw-r--r--src/property/locale.lisp2
-rw-r--r--src/property/lxc.lisp2
-rw-r--r--src/property/mount.lisp2
-rw-r--r--src/property/network.lisp2
-rw-r--r--src/property/os.lisp2
-rw-r--r--src/property/package.lisp2
-rw-r--r--src/property/periodic.lisp2
-rw-r--r--src/property/postfix.lisp2
-rw-r--r--src/property/postgres.lisp2
-rw-r--r--src/property/reboot.lisp2
-rw-r--r--src/property/sbuild.lisp2
-rw-r--r--src/property/schroot.lisp2
-rw-r--r--src/property/service.lisp2
-rw-r--r--src/property/ssh.lisp2
-rw-r--r--src/property/sshd.lisp2
-rw-r--r--src/property/swap.lisp2
-rw-r--r--src/property/systemd.lisp2
-rw-r--r--src/property/timezone.lisp2
-rw-r--r--src/property/u-boot.lisp2
-rw-r--r--src/property/user.lisp2
-rw-r--r--src/propspec.lisp2
-rw-r--r--src/reader.lisp2
-rw-r--r--src/util.lisp2
-rw-r--r--src/util/linux-namespace.lisp2
-rw-r--r--src/util/posix1e.lisp2
73 files changed, 73 insertions, 73 deletions
diff --git a/src/combinator.lisp b/src/combinator.lisp
index b1264af..0b51bd7 100644
--- a/src/combinator.lisp
+++ b/src/combinator.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/connection.lisp b/src/connection.lisp
index 68a1404..ffb0372 100644
--- a/src/connection.lisp
+++ b/src/connection.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/connection/as.lisp b/src/connection/as.lisp
index aa24b0c..a8feef1 100644
--- a/src/connection/as.lisp
+++ b/src/connection/as.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.connection.as)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/connection/chroot.lisp b/src/connection/chroot.lisp
index a4a67d3..b33b2db 100644
--- a/src/connection/chroot.lisp
+++ b/src/connection/chroot.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.connection.chroot)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/connection/fork.lisp b/src/connection/fork.lisp
index 593d468..47e9c19 100644
--- a/src/connection/fork.lisp
+++ b/src/connection/fork.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.connection.fork)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/connection/linux-namespace.lisp b/src/connection/linux-namespace.lisp
index 71a34db..90d9a13 100644
--- a/src/connection/linux-namespace.lisp
+++ b/src/connection/linux-namespace.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.connection.linux-namespace)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/connection/local.lisp b/src/connection/local.lisp
index d8a6880..c3aa06e 100644
--- a/src/connection/local.lisp
+++ b/src/connection/local.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.connection.local)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/connection/rehome.lisp b/src/connection/rehome.lisp
index 5ceb103..4006e53 100644
--- a/src/connection/rehome.lisp
+++ b/src/connection/rehome.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.connection.rehome)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/connection/sbcl.lisp b/src/connection/sbcl.lisp
index 184c30d..1942f75 100644
--- a/src/connection/sbcl.lisp
+++ b/src/connection/sbcl.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.connection.sbcl)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/connection/setuid.lisp b/src/connection/setuid.lisp
index 5c21020..a9dd0dd 100644
--- a/src/connection/setuid.lisp
+++ b/src/connection/setuid.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.connection.setuid)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/connection/shell-wrap.lisp b/src/connection/shell-wrap.lisp
index 1200391..34fb57f 100644
--- a/src/connection/shell-wrap.lisp
+++ b/src/connection/shell-wrap.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.connection.shell-wrap)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/connection/ssh.lisp b/src/connection/ssh.lisp
index 1154578..eaa5b0b 100644
--- a/src/connection/ssh.lisp
+++ b/src/connection/ssh.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.connection.ssh)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/connection/su.lisp b/src/connection/su.lisp
index aef323e..fa135cb 100644
--- a/src/connection/su.lisp
+++ b/src/connection/su.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.connection.su)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/connection/sudo.lisp b/src/connection/sudo.lisp
index 459a832..799210e 100644
--- a/src/connection/sudo.lisp
+++ b/src/connection/sudo.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.connection.sudo)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/data.lisp b/src/data.lisp
index d5d9d4c..3d3baaa 100644
--- a/src/data.lisp
+++ b/src/data.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/data/asdf.lisp b/src/data/asdf.lisp
index ee1385c..cd6baa3 100644
--- a/src/data/asdf.lisp
+++ b/src/data/asdf.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.data.asdf)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/data/files-tree.lisp b/src/data/files-tree.lisp
index e94cf48..9a70f91 100644
--- a/src/data/files-tree.lisp
+++ b/src/data/files-tree.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.data.files-tree)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/data/git-snapshot.lisp b/src/data/git-snapshot.lisp
index 3a448c8..2141dd2 100644
--- a/src/data/git-snapshot.lisp
+++ b/src/data/git-snapshot.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.data.git-snapshot)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/data/gpgpubkeys.lisp b/src/data/gpgpubkeys.lisp
index a83f138..87fb673 100644
--- a/src/data/gpgpubkeys.lisp
+++ b/src/data/gpgpubkeys.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.data.gpgpubkeys)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/data/local-file.lisp b/src/data/local-file.lisp
index 275746a..0a1b3f9 100644
--- a/src/data/local-file.lisp
+++ b/src/data/local-file.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.data.local-file)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/data/pass.lisp b/src/data/pass.lisp
index c23cf5e..20df592 100644
--- a/src/data/pass.lisp
+++ b/src/data/pass.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.data.pass)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/data/pgp.lisp b/src/data/pgp.lisp
index d0df280..aab6c10 100644
--- a/src/data/pgp.lisp
+++ b/src/data/pgp.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.data.pgp)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/data/ssh-askpass.lisp b/src/data/ssh-askpass.lisp
index b3baf4d..30f8150 100644
--- a/src/data/ssh-askpass.lisp
+++ b/src/data/ssh-askpass.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.data.ssh-askpass)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/data/util.lisp b/src/data/util.lisp
index aa0451f..da162df 100644
--- a/src/data/util.lisp
+++ b/src/data/util.lisp
@@ -14,7 +14,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.data.util)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/deployment.lisp b/src/deployment.lisp
index effb0e9..18ed252 100644
--- a/src/deployment.lisp
+++ b/src/deployment.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/host.lisp b/src/host.lisp
index c8c882c..925ed21 100644
--- a/src/host.lisp
+++ b/src/host.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/image.lisp b/src/image.lisp
index b9df49f..4e60d63 100644
--- a/src/image.lisp
+++ b/src/image.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property.lisp b/src/property.lisp
index 968b205..fba4e3a 100644
--- a/src/property.lisp
+++ b/src/property.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/apache.lisp b/src/property/apache.lisp
index 683f1dd..b299a20 100644
--- a/src/property/apache.lisp
+++ b/src/property/apache.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.apache)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/apt.lisp b/src/property/apt.lisp
index b8ca422..f7a258e 100644
--- a/src/property/apt.lisp
+++ b/src/property/apt.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.apt)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/ccache.lisp b/src/property/ccache.lisp
index eda8457..0676818 100644
--- a/src/property/ccache.lisp
+++ b/src/property/ccache.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.ccache)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/chroot.lisp b/src/property/chroot.lisp
index 068c86b..bae78da 100644
--- a/src/property/chroot.lisp
+++ b/src/property/chroot.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.chroot)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/cmd.lisp b/src/property/cmd.lisp
index bc9fd80..bc726ab 100644
--- a/src/property/cmd.lisp
+++ b/src/property/cmd.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.cmd)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/container.lisp b/src/property/container.lisp
index 042dd69..8b685b8 100644
--- a/src/property/container.lisp
+++ b/src/property/container.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.container)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/cron.lisp b/src/property/cron.lisp
index 2a3e7fe..bba953f 100644
--- a/src/property/cron.lisp
+++ b/src/property/cron.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.cron)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/crypttab.lisp b/src/property/crypttab.lisp
index cd71079..cc44f50 100644
--- a/src/property/crypttab.lisp
+++ b/src/property/crypttab.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.crypttab)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/disk.lisp b/src/property/disk.lisp
index 725f276..53203aa 100644
--- a/src/property/disk.lisp
+++ b/src/property/disk.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.disk)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/etc-default.lisp b/src/property/etc-default.lisp
index 18cdeb8..a554b88 100644
--- a/src/property/etc-default.lisp
+++ b/src/property/etc-default.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.etc-default)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/file.lisp b/src/property/file.lisp
index 251d8b0..8ab31d1 100644
--- a/src/property/file.lisp
+++ b/src/property/file.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.file)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/firewalld.lisp b/src/property/firewalld.lisp
index 6bac2f3..6efe2bc 100644
--- a/src/property/firewalld.lisp
+++ b/src/property/firewalld.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.firewalld)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/fstab.lisp b/src/property/fstab.lisp
index 0c88d8e..47001d9 100644
--- a/src/property/fstab.lisp
+++ b/src/property/fstab.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.fstab)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/git.lisp b/src/property/git.lisp
index 16317f7..403289c 100644
--- a/src/property/git.lisp
+++ b/src/property/git.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.git)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/gnupg.lisp b/src/property/gnupg.lisp
index 44a47f6..428c794 100644
--- a/src/property/gnupg.lisp
+++ b/src/property/gnupg.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.gnupg)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/grub.lisp b/src/property/grub.lisp
index 8fe7884..ae1b080 100644
--- a/src/property/grub.lisp
+++ b/src/property/grub.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.grub)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/hostname.lisp b/src/property/hostname.lisp
index 9bed5c3..0c75dee 100644
--- a/src/property/hostname.lisp
+++ b/src/property/hostname.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.hostname)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/installer.lisp b/src/property/installer.lisp
index 2af3289..9b6b591 100644
--- a/src/property/installer.lisp
+++ b/src/property/installer.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.installer)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/lets-encrypt.lisp b/src/property/lets-encrypt.lisp
index 1e90248..af1a685 100644
--- a/src/property/lets-encrypt.lisp
+++ b/src/property/lets-encrypt.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.lets-encrypt)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/libvirt.lisp b/src/property/libvirt.lisp
index 8845995..8146ebc 100644
--- a/src/property/libvirt.lisp
+++ b/src/property/libvirt.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.libvirt)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/locale.lisp b/src/property/locale.lisp
index 135fbb7..f3cb7f1 100644
--- a/src/property/locale.lisp
+++ b/src/property/locale.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.locale)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/lxc.lisp b/src/property/lxc.lisp
index 111d2d8..263e400 100644
--- a/src/property/lxc.lisp
+++ b/src/property/lxc.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.lxc)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/mount.lisp b/src/property/mount.lisp
index 307df5a..784ac4b 100644
--- a/src/property/mount.lisp
+++ b/src/property/mount.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.mount)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/network.lisp b/src/property/network.lisp
index c802c90..036a64d 100644
--- a/src/property/network.lisp
+++ b/src/property/network.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.network)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/os.lisp b/src/property/os.lisp
index 0875db5..602a88d 100644
--- a/src/property/os.lisp
+++ b/src/property/os.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.os)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/package.lisp b/src/property/package.lisp
index 7244d51..304257b 100644
--- a/src/property/package.lisp
+++ b/src/property/package.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.package)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/periodic.lisp b/src/property/periodic.lisp
index 6dfd707..22a462d 100644
--- a/src/property/periodic.lisp
+++ b/src/property/periodic.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.periodic)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/postfix.lisp b/src/property/postfix.lisp
index 75e25ec..dffaece 100644
--- a/src/property/postfix.lisp
+++ b/src/property/postfix.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.postfix)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/postgres.lisp b/src/property/postgres.lisp
index ed2ef32..1eb4a8c 100644
--- a/src/property/postgres.lisp
+++ b/src/property/postgres.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.postgres)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/reboot.lisp b/src/property/reboot.lisp
index 3fa324a..7382df2 100644
--- a/src/property/reboot.lisp
+++ b/src/property/reboot.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.reboot)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/sbuild.lisp b/src/property/sbuild.lisp
index 3a3533d..297e836 100644
--- a/src/property/sbuild.lisp
+++ b/src/property/sbuild.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.sbuild)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/schroot.lisp b/src/property/schroot.lisp
index 0851e9b..e528f10 100644
--- a/src/property/schroot.lisp
+++ b/src/property/schroot.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.schroot)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/service.lisp b/src/property/service.lisp
index b0c829b..b5663d2 100644
--- a/src/property/service.lisp
+++ b/src/property/service.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.service)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/ssh.lisp b/src/property/ssh.lisp
index 4600900..7cb614a 100644
--- a/src/property/ssh.lisp
+++ b/src/property/ssh.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.ssh)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/sshd.lisp b/src/property/sshd.lisp
index 78c954b..866ce38 100644
--- a/src/property/sshd.lisp
+++ b/src/property/sshd.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.sshd)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/swap.lisp b/src/property/swap.lisp
index d712d32..be4159f 100644
--- a/src/property/swap.lisp
+++ b/src/property/swap.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.swap)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/systemd.lisp b/src/property/systemd.lisp
index 6ce831b..fa3018c 100644
--- a/src/property/systemd.lisp
+++ b/src/property/systemd.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.systemd)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/timezone.lisp b/src/property/timezone.lisp
index c3a5a32..c2e2742 100644
--- a/src/property/timezone.lisp
+++ b/src/property/timezone.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.timezone)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/u-boot.lisp b/src/property/u-boot.lisp
index a39cb9e..204b1e9 100644
--- a/src/property/u-boot.lisp
+++ b/src/property/u-boot.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.u-boot)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/property/user.lisp b/src/property/user.lisp
index 92dc378..2e5c360 100644
--- a/src/property/user.lisp
+++ b/src/property/user.lisp
@@ -14,7 +14,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.property.user)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/propspec.lisp b/src/propspec.lisp
index 055ca18..70a7e14 100644
--- a/src/propspec.lisp
+++ b/src/propspec.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/reader.lisp b/src/reader.lisp
index 240750b..48fd878 100644
--- a/src/reader.lisp
+++ b/src/reader.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator)
diff --git a/src/util.lisp b/src/util.lisp
index e70bfdf..47ce5ac 100644
--- a/src/util.lisp
+++ b/src/util.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/util/linux-namespace.lisp b/src/util/linux-namespace.lisp
index 53c816b..3860e7b 100644
--- a/src/util/linux-namespace.lisp
+++ b/src/util/linux-namespace.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.util.linux-namespace)
(named-readtables:in-readtable :consfigurator)
diff --git a/src/util/posix1e.lisp b/src/util/posix1e.lisp
index 270ecdf..0295391 100644
--- a/src/util/posix1e.lisp
+++ b/src/util/posix1e.lisp
@@ -13,7 +13,7 @@
;;; 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 <http://www.gnu.org/licenses/>.
+;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(in-package :consfigurator.util.posix1e)
(named-readtables:in-readtable :consfigurator)