]> git.ipfire.org Git - thirdparty/systemd.git/blob - shell-completion/zsh/_sd_unit_files
Merge pull request #13246 from keszybz/add-SystemdOptions-efi-variable
[thirdparty/systemd.git] / shell-completion / zsh / _sd_unit_files
1 #autoload
2 # SPDX-License-Identifier: LGPL-2.1+
3
4 _sd_unit_files() {
5 local files expl
6 files=( '*:files:->files' )
7
8 _description files expl 'unit file'
9 _files "$expl[@]" -g '*.(automount|device|mount|path|service|socket|swap|target|timer)'
10 }