summaryrefslogtreecommitdiff
path: root/system/sysvinit
diff options
context:
space:
mode:
authorMax Rees <maxcrees@me.com>2019-07-21 04:04:29 -0400
committerMax Rees <maxcrees@me.com>2019-07-21 04:43:08 -0400
commit051371f0753cc31c8d3faeddc9893a8af059eb5e (patch)
treec9d03eb3a6a87c6b17588e2a6cdcbe96c52dfa00 /system/sysvinit
parent0260e9bcb3f8c115502e46b1d8cebb6f224cab6d (diff)
downloadpackages-051371f0753cc31c8d3faeddc9893a8af059eb5e.tar.gz
packages-051371f0753cc31c8d3faeddc9893a8af059eb5e.tar.bz2
packages-051371f0753cc31c8d3faeddc9893a8af059eb5e.tar.xz
packages-051371f0753cc31c8d3faeddc9893a8af059eb5e.zip
system/sysvinit: remove &> from upgrade script
Diffstat (limited to 'system/sysvinit')
-rw-r--r--system/sysvinit/APKBUILD2
-rw-r--r--system/sysvinit/sysvinit.post-upgrade2
2 files changed, 2 insertions, 2 deletions
diff --git a/system/sysvinit/APKBUILD b/system/sysvinit/APKBUILD
index b95525084..e13e92043 100644
--- a/system/sysvinit/APKBUILD
+++ b/system/sysvinit/APKBUILD
@@ -2,7 +2,7 @@
# Maintainer: A. Wilcox <awilfox@adelielinux.org>
pkgname=sysvinit
pkgver=2.88
-pkgrel=6
+pkgrel=7
pkgdesc="System V-style init programs"
url="https://savannah.nongnu.org/projects/sysvinit"
arch="all"
diff --git a/system/sysvinit/sysvinit.post-upgrade b/system/sysvinit/sysvinit.post-upgrade
index 189621e2c..9b909f73b 100644
--- a/system/sysvinit/sysvinit.post-upgrade
+++ b/system/sysvinit/sysvinit.post-upgrade
@@ -1,4 +1,4 @@
#!/bin/sh
-/sbin/telinit U &> /dev/null
+/sbin/telinit U >/dev/null 2>&1
exit 0