aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaphael Nestler2023-01-08 21:00:36 +0100
committerRaphael Nestler2023-01-08 21:03:34 +0100
commitca7ad4975fb079293dc400f19fe19fe5a8d6f1ee (patch)
treeca231bc0565e94a0aa3ca0fa88398763cc614bcc
parentd9b3df8365665e825390953b822a5573a6a1338e (diff)
downloadaur-ca7ad4975fb079293dc400f19fe19fe5a8d6f1ee.tar.gz
Fix permissions of the service file
Fixes a warning from systemd: [ 11.346412] systemd[1]: Configuration file /usr/lib/systemd/system/fix-tp-mic-led.service is marked executable. Please remove executable permission bits. Proceeding anyway.
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 26c02868683b..780d661cfb85 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = thinkpad-p14s
pkgdesc = Utilities and dependencies for a Thinkpad P14s laptop
pkgver = 0.1.0
- pkgrel = 1
+ pkgrel = 2
url = https://aur.archlinux.org/
arch = any
license = GPL
diff --git a/PKGBUILD b/PKGBUILD
index 11eec0c16e5c..3adc51782914 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Raphael Nestler <raphael.nestler@gmail.com>
pkgname=thinkpad-p14s
pkgver=0.1.0
-pkgrel=1
+pkgrel=2
pkgdesc="Utilities and dependencies for a Thinkpad P14s laptop"
arch=('any')
url="https://aur.archlinux.org/"
@@ -16,5 +16,5 @@ sha256sums=('e333bd4961d2145959f1f84d04935ae29e42663d94024a280f083c24fa3cfede'
package() {
install -Dm755 "${srcdir}/fix-tp-mic-led.sh" -t "${pkgdir}/usr/bin/"
- install -Dm755 "${srcdir}/fix-tp-mic-led.service" -t "${pkgdir}/usr/lib/systemd/system/"
+ install -Dm644 "${srcdir}/fix-tp-mic-led.service" -t "${pkgdir}/usr/lib/systemd/system/"
}