]> git.ipfire.org Git - thirdparty/systemd.git/blame - shell-completion/zsh/_sd_unit_files
Merge pull request #9852 from poettering/namespace-errno
[thirdparty/systemd.git] / shell-completion / zsh / _sd_unit_files
CommitLineData
2c12a402 1#autoload
7059062c 2# SPDX-License-Identifier: LGPL-2.1+
2c12a402
ZJS
3
4_sd_unit_files() {
5 local files expl
6 files=( '*:files:->files' )
7
8 _description files expl 'unit file'
4bc5d27b 9 _files "$expl[@]" -g '*.(automount|device|mount|path|service|socket|swap|target|timer)'
2c12a402 10}