mirror of
https://github.com/ben-grande/qusal.git
synced 2025-05-02 06:16:18 -04:00
doc: simplify installation command
Many people reported problems with the installation command, most of them had typos, understandable due to the long command. Tar is available even on minimal templates. Using tar is not more dangerous than using qfile-unpacker in this case because the project has no signed archives and passing a directory to dom0 is insecure, considering a git repo, an attacker could find information in the .git directory or modify files and add them to git exclude, which won't be noticed when verifying the commit signature. In the future, if a signed tarball were to be provided, qvm-run and pipe would be used instead, making the command even simpler.
This commit is contained in:
parent
f196e2f492
commit
a02997b89e
3 changed files with 39 additions and 15 deletions
|
@ -54,6 +54,10 @@ test "${xtrace}" = 0 || set -x
|
|||
|
||||
for file in ${files}; do
|
||||
test "${xtrace}" = 0 || set -x
|
||||
case "${file}" in
|
||||
.reuse/dep5) continue;;
|
||||
*) ;;
|
||||
esac
|
||||
file="${file#./}"
|
||||
set +x
|
||||
awk -v year="${year}" -v email="${email}" -v file="${file}" -- '
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue