Update mDNS service announcements when name changes.

This commit is contained in:
Robin Davies
2024-09-19 11:19:24 -04:00
parent 7ecc3de10a
commit 951a7a73de
18 changed files with 348 additions and 257 deletions
+13 -9
View File
@@ -1,10 +1,14 @@
#!/bin/bash
#sign a package with rerdavies@gmail.com's private key.
cd build
for filename in *.deb; do
echo gpg --armor --output "$filename".asc -b "$filename"
gpg --armor --output "$filename".asc -b "$filename"
done
cd ..
# Sign the built .deb package with the private key used in the Auto-update process.
#
# Won't work for you, because you don't have MY private key.
#
# Auto-update requires that .deb files be distributed from the GitHub rerdavies/pipedal project.
# And auto-updates WILL update installs of your forked binary unless you take steps to prevent that.
#
# If you are distributing a fork, you should see the file UpdaterSecurity.hpp for details on how to
# modify pipedal to perform updates from an alternate github site. Or you could modify your fork
# to NOT do auto-updating (probably best). The build doesn't currently have a procedure for
# knocking out Auto-Update from UpdaterSecurity.hpp. But I would happily accept a pull request
# to bring such a feature back into mainline if you do it.
build/src/makeRelease