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