summaryrefslogtreecommitdiff
path: root/bash_completion.in
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2021-07-08 22:57:45 -0400
committerbill-auger <mr.j.spam.me@gmail.com>2022-08-30 21:26:46 -0400
commit6d5a55989216ac0545d8ac0fd10215b1608ef980 (patch)
tree8aa921bf3d20a194b6b3d8e798341d0e0bb8546d /bash_completion.in
parentde5205f21a660ebe0e338ec87905c420afdbe353 (diff)
replace arch-nspawn with chroot-run (nonsystemd compat)
based in artix/artools Signed-off-by: David P <megver83@parabola.nu> Previously, these changes were kept on a separate nonsystemd branch for nonsystemd releases from v20180428 to v20190907. The nonsystemd build seems to work well on systemd systems, and it has no dependencies in [nonsystemd]; so there only needs to be one build in [libre]. This commit squashes the functional changes from the following commits from the former nonsystemd branch: * 7a2c689f3808a8b970006f9e8f01e883490ea72b chroot-run: declare mount_args at the beginning of the scriptlibretools-v20190907-nonsystemd * 37de77a06e7917ff50dec6ca469b45700986c698 chroot-run: better unshare arguments handling David P * 984c0b8e3c341b78ac689f0eeca1cf2460fc3336 chroot-run: use unshare David P * a57dfdb1cb87f9959b1cc218036456be7c7fa81d initial systemd-nspawn replacement with chroot David P
Diffstat (limited to 'bash_completion.in')
-rw-r--r--bash_completion.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/bash_completion.in b/bash_completion.in
index 9feef74..34a34af 100644
--- a/bash_completion.in
+++ b/bash_completion.in
@@ -68,7 +68,7 @@ _mkarchroot() {
} &&
complete -F _mkarchroot mkarchroot
-_arch-nspawn() {
+_chroot-run() {
local cur
COMPREPLY=()
_get_comp_words_by_ref cur
@@ -85,5 +85,5 @@ _arch-nspawn() {
true
} &&
-complete -F _arch-nspawn arch-nspawn
+complete -F _chroot-run chroot-run
# ex:et ts=2 sw=2 ft=sh