mirror of
https://github.com/gaschz/dotfiles.git
synced 2025-03-01 14:22:33 +01:00
fix: function to target minions missing parameters
This commit is contained in:
parent
39a4938fb6
commit
5f55627e57
@ -97,7 +97,10 @@ has qubesctl && {
|
|||||||
alias qctl="qubesctl"
|
alias qctl="qubesctl"
|
||||||
alias qctls="qctl state.apply"
|
alias qctls="qctl state.apply"
|
||||||
alias qctlu="qctl --skip-dom0 --targets"
|
alias qctlu="qctl --skip-dom0 --targets"
|
||||||
qctlus(){ test -n "${2-}" || return 1; qubesctl "${1}" state.apply "${2}"; }
|
qctlus(){
|
||||||
|
test -n "${2-}" || return 1
|
||||||
|
qubesctl --skip-dom0 --targets "${1}" state.apply "${2}"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
has gpg && alias gpgs="gpg --show-keys"
|
has gpg && alias gpgs="gpg --show-keys"
|
||||||
## {{{ Tmux
|
## {{{ Tmux
|
||||||
|
Loading…
x
Reference in New Issue
Block a user