1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-12 18:59:50 +03:00

*/*: remove non-POSIX pipe syntax from scripts/triggers

This commit is contained in:
Sertonix 2024-06-10 23:02:56 +02:00 committed by Natanael Copa
parent 4fb9d5bc53
commit 43954eb8cd
14 changed files with 19 additions and 19 deletions

View file

@ -1,7 +1,7 @@
# Maintainer: team/gnome <pabloyoyoista@postmarketos.org>
pkgname=gvfs
pkgver=1.56.1
pkgrel=0
pkgrel=1
pkgdesc="Backends for the gio framework in GLib"
url="https://wiki.gnome.org/Projects/gvfs"
arch="all"

View file

@ -1,5 +1,5 @@
#!/bin/sh
# Reload .mount files
busybox killall -USR1 gvfsd >&/dev/null
busybox killall -q USR1 gvfsd
exit 0

View file

@ -1,7 +1,7 @@
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
pkgname=heplify-server
pkgver=1.59.7
pkgrel=9
pkgrel=10
pkgdesc="HEP Capture Server & Switch in Go"
url="http://sipcapture.io"
arch="all !riscv64 !ppc64le !loongarch64" # FTBFS

View file

@ -1,5 +1,5 @@
#!/bin/sh
addgroup -S homer &>/dev/null
adduser -S -G homer -s /sbin/nologin -D homer &>/dev/null
addgroup -S homer 2>/dev/null
adduser -S -G homer -s /sbin/nologin -D homer 2>/dev/null
exit 0

View file

@ -1,7 +1,7 @@
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
pkgname=homer-app
pkgver=1.5.4
pkgrel=2
pkgrel=3
pkgdesc="HOMER 7.x Front-End and API Server"
url="http://sipcapture.io"
arch="all"

View file

@ -1,5 +1,5 @@
#!/bin/sh
addgroup -S homer &>/dev/null
adduser -S -h /run/homer -G homer -s /sbin/nologin -D homer &>/dev/null
addgroup -S homer 2>/dev/null
adduser -S -h /run/homer -G homer -s /sbin/nologin -D homer 2>/dev/null
exit 0

View file

@ -2,7 +2,7 @@
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=icinga2
pkgver=2.14.5
pkgrel=0
pkgrel=1
pkgdesc="An open source host, service and network monitoring program"
url="https://icinga.com"
arch="all !armhf !armv7 !s390x"

View file

@ -1,5 +1,5 @@
#!/bin/sh
/usr/bin/icinga2 feature enable checker &> /dev/null
/usr/bin/icinga2 feature enable mainlog &> /dev/null
/usr/bin/icinga2 feature enable notification &> /dev/null
/usr/bin/icinga2 feature enable checker > /dev/null 2>&1
/usr/bin/icinga2 feature enable mainlog > /dev/null 2>&1
/usr/bin/icinga2 feature enable notification > /dev/null 2>&1
exit 0

View file

@ -2,7 +2,7 @@
# Maintainer: Michael Pirogov <vbnet.ru@gmail.com>
pkgname=janus-gateway
pkgver=1.3.1
pkgrel=0
pkgrel=1
pkgdesc="Janus WebRTC Server"
url="https://janus.conf.meetecho.com/"
license="GPL-3.0-only"

View file

@ -1,5 +1,5 @@
#!/bin/sh
addgroup -S janus &>/dev/null
adduser -S -G janus -s /sbin/nologin -D janus &>/dev/null
addgroup -S janus 2>/dev/null
adduser -S -G janus -s /sbin/nologin -D janus 2>/dev/null
exit 0

View file

@ -3,7 +3,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=vlc
pkgver=3.0.21
pkgrel=4
pkgrel=5
pkgdesc="Multi-platform MPEG, VCD/DVD, and DivX player"
triggers="vlc-libs.trigger=/usr/lib/vlc/plugins"
pkgusers="vlc"

View file

@ -1,7 +1,7 @@
#!/bin/sh
if [ -f /usr/lib/vlc/vlc-cache-gen ]; then
exec /usr/lib/vlc/vlc-cache-gen "$@" >&/dev/null
exec /usr/lib/vlc/vlc-cache-gen "$@" >/dev/null 2>&1
fi
exit 0

View file

@ -2,7 +2,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=ca-certificates
pkgver=20241121
pkgrel=1
pkgrel=2
pkgdesc="Common CA certificates PEM files from Mozilla"
url="https://www.mozilla.org/en-US/about/governance/policies/security-group/certs/"
arch="all"

View file

@ -1,3 +1,3 @@
#!/bin/sh
/usr/sbin/update-ca-certificates &> /dev/null
/usr/sbin/update-ca-certificates > /dev/null 2>&1
exit 0