diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2018-08-16 02:23:49 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2018-08-16 02:23:49 -0400 |
commit | 634f6d7d7a7d998f2a2417bbf79b540a2fe38db9 (patch) | |
tree | da8908ca08c99648b5cd29f6d03119b4f1da3276 | |
parent | 8f3d2e036a9b9bd21d63d2ed8a862f8dc187bec7 (diff) | |
download | abslibre-634f6d7d7a7d998f2a2417bbf79b540a2fe38db9.tar.gz abslibre-634f6d7d7a7d998f2a2417bbf79b540a2fe38db9.tar.bz2 abslibre-634f6d7d7a7d998f2a2417bbf79b540a2fe38db9.zip |
pcr/opentmpfiles: Fix the command in the libalpm hook
-rw-r--r-- | pcr/opentmpfiles/PKGBUILD | 4 | ||||
-rw-r--r-- | pcr/opentmpfiles/opentmpfiles.hook | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/pcr/opentmpfiles/PKGBUILD b/pcr/opentmpfiles/PKGBUILD index 08befc39c..c25cfeeb7 100644 --- a/pcr/opentmpfiles/PKGBUILD +++ b/pcr/opentmpfiles/PKGBUILD @@ -6,7 +6,7 @@ pkgbase=opentmpfiles pkgname=(opentmpfiles opentmpfiles-systemdcompat) pkgver=0.1.3 -pkgrel=7 +pkgrel=8 pkgdesc="A standalone utility to handle systemd-style tmpfiles.d files" arch=('any') url="https://github.com/OpenRC/opentmpfiles" @@ -18,7 +18,7 @@ validpgpkeys=('D57AEC44668E2E5073A440096E5416F430C46538') # William Hubbs <w.d.h source=("git+https://github.com/OpenRC/opentmpfiles#tag=${pkgver}?signed" 'opentmpfiles.hook') sha512sums=('SKIP' - '8b3e4af592d5c81bc1f965cb2d70637180821f5cebd947e900f8cdbded66825a3e642857137a781cd443ed17df19b91cf3009a3a590f8e63fa490c74897a0707') + '5f0f1ce57bb8a497e2e9dd9982a9e7a366eadee6bfcca029a02aa6b9f51b56c3d938a02941851e6fcdea64f5f0472bd92f52d4d911fdeb036decf2162ac2ff2f') package_opentmpfiles() { optdepends=('opentmpfiles-systemdcompat') diff --git a/pcr/opentmpfiles/opentmpfiles.hook b/pcr/opentmpfiles/opentmpfiles.hook index 8fd7e9a9b..2a5db2a17 100644 --- a/pcr/opentmpfiles/opentmpfiles.hook +++ b/pcr/opentmpfiles/opentmpfiles.hook @@ -7,4 +7,4 @@ Target = usr/lib/tmpfiles.d/*.conf [Action] Description = Creating temporary files... When = PostTransaction -Exec = /usr/bin/systemd-tmpfiles --create +Exec = /usr/bin/tmpfiles --create |