- Queries
- All Stories
- Search
- Advanced Search
- Transactions
- Transaction Logs
Advanced Search
Aug 25 2021
Works on WindRiver, updating test plan.
Rebased
Rebase against merged D2392.
apache2, apache2-data, apache2-utils can be deleted without any issue and impact on other packages.
Apache is still installed during new server provisioning,
Percona documents at https://www.percona.com/blog/2020/01/02/how-to-create-your-own-repositories-for-packages/ what they do, dpkg-dev looks nice for that.
Jul 30 2021
Provide default config with blank password (public instance)
Rewrite to use /<entry point>
Jun 9 2021
Tweak Git ignored files and Makefile
Software upgraded.
$ freebsd-version -k 13.0-RELEASE-p1
Configuration files diffs and manual merges done.
Preparing the update (65000 patches downloaded, systems inspecting, etc.)
Rebase against main
Rebase against main
Rebase against main
s/osy/os
Installing last binary patches for FreeBSD 12.1:
May 20 2021
Mar 15 2021
Dec 30 2020
Another way to solve this according https://github.com/koalaman/shellcheck/wiki/SC2086:Quoting this doesn't work, since in the default case, "$debug" would expand to one empty argument while $debug would expand into zero arguments. In this case, you can use an array with zero or one elements as outlined above, or you can use an unquoted expansion with an alternate value:
debug="" [[ $1 == "--trace-commands" ]] && debug="yes" bash ${debug:+"-x"} scriptThis is better than an unquoted value because the alternative value can be properly quoted, e.g. wget ${output:+ -o "$output"}.