]> git.ipfire.org Git - thirdparty/systemd.git/blame - shell-completion/bash/kernel-install
bash-completion: systemd-analyze: add service-watchdogs verb
[thirdparty/systemd.git] / shell-completion / bash / kernel-install
CommitLineData
819da595 1# kernel-install(8) completion -*- shell-script -*-
7059062c 2# SPDX-License-Identifier: LGPL-2.1+
819da595
KS
3#
4# This file is part of systemd.
5#
6# Copyright 2013 Kay Sievers
e861b621 7# Copyright 2013 Harald Hoyer
819da595
KS
8#
9# systemd is free software; you can redistribute it and/or modify it
10# under the terms of the GNU Lesser General Public License as published by
11# the Free Software Foundation; either version 2.1 of the License, or
12# (at your option) any later version.
13#
14# systemd is distributed in the hope that it will be useful, but
15# WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17# General Public License for more details.
18#
19# You should have received a copy of the GNU Lesser General Public License
20# along with systemd; If not, see <http://www.gnu.org/licenses/>.
21
819da595 22_kernel_install() {
e861b621
HH
23 local comps
24 local MACHINE_ID
25 local cur=${COMP_WORDS[COMP_CWORD]}
26
27 case $COMP_CWORD in
28 1)
29 comps="add remove"
30 ;;
31 2)
819da595 32 comps=$(cd /lib/modules; echo [0-9]*)
e861b621
HH
33 if [[ ${COMP_WORDS[1]} == "remove" ]] && [[ -f /etc/machine-id ]]; then
34 read MACHINE_ID < /etc/machine-id
35 if [[ $MACHINE_ID ]] && ( [[ -d /boot/$MACHINE_ID ]] || [[ -L /boot/$MACHINE_ID ]] ); then
36 comps=$(cd "/boot/$MACHINE_ID"; echo [0-9]*)
37 fi
38 fi
39 ;;
40 3)
29e08b9e 41 [[ "$cur" ]] || cur=/lib/modules/${COMP_WORDS[2]}/vmlinuz
e861b621
HH
42 comps=$(compgen -f -- "$cur")
43 compopt -o filenames
44 ;;
45 esac
819da595
KS
46
47 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
48 return 0
49}
50
51complete -F _kernel_install kernel-install