aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Matei Pintilie <luca@lucamatei.com>2024-12-25 22:59:24 +0000
committerLuca Matei Pintilie <luca@lucamatei.com>2025-03-01 09:58:38 +0000
commitab6bcc94305388104a42c93feaff781c4985e4b0 (patch)
tree83b6688f3453369efe9baacfeffcf94211c84c57
parent41768401e7a3375804162d264c3afdfcd2cdf1db (diff)
downloadvoid-packages-ab6bcc94305388104a42c93feaff781c4985e4b0.tar
void-packages-ab6bcc94305388104a42c93feaff781c4985e4b0.tar.gz
void-packages-ab6bcc94305388104a42c93feaff781c4985e4b0.tar.bz2
void-packages-ab6bcc94305388104a42c93feaff781c4985e4b0.tar.lz
void-packages-ab6bcc94305388104a42c93feaff781c4985e4b0.tar.xz
void-packages-ab6bcc94305388104a42c93feaff781c4985e4b0.tar.zst
void-packages-ab6bcc94305388104a42c93feaff781c4985e4b0.zip
runit: add SVDIR support to bash completionuser/luca/runit-bash-completion
-rw-r--r--srcpkgs/runit/files/sv2
-rw-r--r--srcpkgs/runit/template2
2 files changed, 2 insertions, 2 deletions
diff --git a/srcpkgs/runit/files/sv b/srcpkgs/runit/files/sv
index ec0fcae8c32..7704cf30513 100644
--- a/srcpkgs/runit/files/sv
+++ b/srcpkgs/runit/files/sv
@@ -16,7 +16,7 @@ _sv()
return
;;
*)
- COMPREPLY=( /var/service/* )
+ COMPREPLY=( "${SVDIR%/:-/var/service}/"* )
COMPREPLY=( ${COMPREPLY[@]##*/} )
COMPREPLY=( $(compgen -W '${COMPREPLY[@]}' -- ${cur}) )
return
diff --git a/srcpkgs/runit/template b/srcpkgs/runit/template
index 4dea2ce2b11..21665440055 100644
--- a/srcpkgs/runit/template
+++ b/srcpkgs/runit/template
@@ -1,7 +1,7 @@
# Template file for 'runit'
pkgname=runit
version=2.2.0
-revision=1
+revision=2
build_style="gnu-makefile"
short_desc="UNIX init scheme with service supervision"
maintainer="Orphaned <orphan@voidlinux.org>"