aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-09-16 16:05:38 +0300
committerCem Keylan <cem@ckyln.com>2020-09-16 16:05:38 +0300
commitaf80f111739befe74f1b684e8248e9ef5d532c2f (patch)
tree80db3e2177b793aa10f25565fbb3533d176da6db
parent478d48dfa0d5a79e068bed7392c848b3945d7fb1 (diff)
downloadinit-af80f111739befe74f1b684e8248e9ef5d532c2f.tar.gz
contrib: fix errors1.2.1
-rw-r--r--CHANGELOG.md7
-rw-r--r--contrib/getty.boot4
-rw-r--r--contrib/runit.boot2
3 files changed, 10 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7c84996..998ac49 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,13 @@ This CHANGELOG is for the Carbs Linux init scheme. The format is based on
[Semantic Versioning]: https://semver.org/spec/v2.0.0.html
+1.2.1 - 2020-09-16
+--------------------------------------------------------------------------------
+
+### Fixed
+- Fixed respawn calls on contrib scripts
+
+
1.2.0 - 2020-09-16
--------------------------------------------------------------------------------
diff --git a/contrib/getty.boot b/contrib/getty.boot
index eaf90d9..3d8079c 100644
--- a/contrib/getty.boot
+++ b/contrib/getty.boot
@@ -1,4 +1,4 @@
for getty in 1 2 3 4 5 6; do
- respawn getty 38400 tty${getty} 2>&1 ; done & # busybox getty
- respawn getty /dev/tty${getty} linux 2>&1 ; done & # ubase getty
+ respawn getty 38400 tty${getty} 2>&1 & # busybox getty
+ respawn getty /dev/tty${getty} linux 2>&1 & # ubase getty
done
diff --git a/contrib/runit.boot b/contrib/runit.boot
index f8858c9..e8bebb9 100644
--- a/contrib/runit.boot
+++ b/contrib/runit.boot
@@ -1 +1 @@
-respawn runsvdir -P /var/service ; done &
+respawn runsvdir -P /var/service &