Skip to content

Commit

Permalink
fix: add absent semicolon and stderr redirection
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-grande committed Dec 23, 2024
1 parent c713bd3 commit 972ca1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion salt/dom0/files/bin/qvm-terminal
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The application to open can be specified with environment variables:
case "${me}" in
*-terminal) service="${QVM_TERMINAL:-"qubes-run-terminal"}";;
*-file-manager) service="${QVM_FILE_MANAGER:-"qubes-open-file-manager"}";;
*) printf '%s\n' "Invalid script name: ${me}" exit 1 ;;
*) printf '%s\n' "Invalid script name: ${me}" >&2; exit 1 ;;
esac


Expand Down
1 change: 1 addition & 0 deletions salt/sys-tailscale/create.sls
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ prefs:
- vcpus: 1
- memory: 400
- maxmem: 500
- provides-network: True
- autostart: False
- include_in_backups: True
features:
Expand Down

0 comments on commit 972ca1f

Please sign in to comment.