aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2023-10-19 17:24:53 -0300
committerEuAndreh <eu@euandre.org>2023-10-19 17:24:53 -0300
commit231a08fc73b4e3deddf7437cf6b67d3959b127c8 (patch)
tree5132456fa2c24092f4a0771946f4115cd8c8cd1b
parentsystem.scm: Enforce forward-secrecy cyphers on nginx (diff)
downloadtoph-231a08fc73b4e3deddf7437cf6b67d3959b127c8.tar.gz
toph-231a08fc73b4e3deddf7437cf6b67d3959b127c8.tar.xz
re 's/servers/server/g'
Notes
See CI logs with: git notes --ref=refs/notes/ci-logs show 231a08fc73b4e3deddf7437cf6b67d3959b127c8 git notes --ref=refs/notes/ci-data show 231a08fc73b4e3deddf7437cf6b67d3959b127c8 Exit status: 128 Duration: 0
-rw-r--r--Makefile2
-rw-r--r--README.md6
-rw-r--r--description2
-rw-r--r--long-description2
-rw-r--r--src/infrastructure/config/conf.env2
-rw-r--r--src/infrastructure/guix/packages.scm6
-rw-r--r--src/infrastructure/guix/system.scm2
7 files changed, 11 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index 3956f66..a58e054 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
.POSIX:
-NAME = servers
+NAME = server
PREFIX = /usr/local
SHAREDIR = $(PREFIX)/share
DOCDIR = $(SHAREDIR)/doc/$(NAME)
diff --git a/README.md b/README.md
index 8ab78d2..c78b791 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# servers
+# server
Infrastructure code for `euandre.org`:
@@ -17,7 +17,7 @@ Infrastructure code for `euandre.org`:
- [source code]
- [CI]
-[homepage]: https://euandre.org/s/servers/
+[homepage]: https://euandre.org/s/server/
[TODOs]: TODOs.html
-[source code]: https://euandre.org/git/servers/
+[source code]: https://euandre.org/git/server/
[CI]: ci/
diff --git a/description b/description
index e448be9..27d26fa 100644
--- a/description
+++ b/description
@@ -1 +1 @@
-Setup and configuration for VPS and other personal servers
+Setup and configuration for VPS and other personal server
diff --git a/long-description b/long-description
index 5acadf6..9219452 100644
--- a/long-description
+++ b/long-description
@@ -1,2 +1,2 @@
-Declarative configuration of personal servers, their provisioning and their
+Declarative configuration of personal server, their provisioning and their
infrastructure.
diff --git a/src/infrastructure/config/conf.env b/src/infrastructure/config/conf.env
index 7a75a1a..bbdab48 100644
--- a/src/infrastructure/config/conf.env
+++ b/src/infrastructure/config/conf.env
@@ -1,6 +1,6 @@
#!/bin/sh
-NAME='servers'
+NAME='server'
TLD='euandre.org'
RSYNC_ACCT='zh3051@zh3051'
OUT_SUFFIX="s/$NAME"
diff --git a/src/infrastructure/guix/packages.scm b/src/infrastructure/guix/packages.scm
index 20a9543..91151db 100644
--- a/src/infrastructure/guix/packages.scm
+++ b/src/infrastructure/guix/packages.scm
@@ -41,9 +41,9 @@
(popen:close-pipe port)
v))
-(define-public servers
+(define-public server
(package
- (name "servers")
+ (name "server")
(version repo-version)
(source
(local-file working-dir #:recursive? #t))
@@ -70,4 +70,4 @@
(license #f)))
(list
- servers)
+ server)
diff --git a/src/infrastructure/guix/system.scm b/src/infrastructure/guix/system.scm
index 7e1e04b..d14e5d3 100644
--- a/src/infrastructure/guix/system.scm
+++ b/src/infrastructure/guix/system.scm
@@ -319,7 +319,7 @@
trash-cli
tree))
(list
- packages:servers
+ packages:server
(script "gc" (file "src/infrastructure/scripts/gc.sh"))
(script "cicd" (file "src/infrastructure/scripts/cicd.sh"))
(script "check" (file "src/infrastructure/scripts/check.sh"))