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