aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpsykose <alice@ayaya.dev>2022-08-30 10:33:57 +0000
committerpsykose <alice@ayaya.dev>2022-08-30 12:33:57 +0200
commit4eaefacea9bc470361309ad50d577c1637912e9e (patch)
tree959f0ec92ee463ab9801babdf4369a85628ea3f3
parent73cc2888bdaaa7890ffc959cb0ba723dbd8e616d (diff)
community/seatd: fix init.d with no loglevel
-rw-r--r--community/seatd/APKBUILD4
-rw-r--r--community/seatd/seatd.initd2
2 files changed, 3 insertions, 3 deletions
diff --git a/community/seatd/APKBUILD b/community/seatd/APKBUILD
index a67dfd880c4..078e436b97c 100644
--- a/community/seatd/APKBUILD
+++ b/community/seatd/APKBUILD
@@ -3,7 +3,7 @@
# Maintainer: Michał Polański <michal@polanski.me>
pkgname=seatd
pkgver=0.7.0
-pkgrel=0
+pkgrel=1
pkgdesc="Minimal seat management daemon"
url="https://sr.ht/~kennylevinsen/seatd/"
license="MIT"
@@ -68,6 +68,6 @@ launch() {
sha512sums="
c81c43994b92672a388bf255edb1fe24d3dba7ece2eb35f9fedc05cc0b8e464e9167ffed037645c4072430fe7b3b8fc80cc99f21fb5100654b5dd23a94742e66 seatd-0.7.0.tar.gz
-a2760cffbb077b25d3a70ee570fb3a8afd218054d82c34a6a830593b1b148d82a6197a081e24ff517aeb5377c0040e341bf3f7677445a18ca42332c3c4358e64 seatd.initd
+3b5baa320c376d136e2c933df5f12022fd12a46d319b95229a89f30ed7b9c3b1dba39c306c931aa25faf381b98b7a241b9693e22c9554022275903915a350c96 seatd.initd
1ee755b462455fb20ee2f56b8d1a0f3a26eb9aed34eb6126e322243f9288b23577aff40e5a2c02449f349282af79eafd232b9e77cd196daa92ee8a9fcae2ec16 seatd.confd
"
diff --git a/community/seatd/seatd.initd b/community/seatd/seatd.initd
index 44d9a9c4079..b0810438527 100644
--- a/community/seatd/seatd.initd
+++ b/community/seatd/seatd.initd
@@ -4,7 +4,7 @@ name="seatd"
description="Seat management daemon"
command="/usr/bin/seatd"
-command_args="-g seat -l $loglevel ${command_args:-}"
+command_args="-g seat -l ${loglevel:-error} ${command_args:-}"
command_background="yes"
start_stop_daemon_args="${loglevel:+--env}"