mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
the scripts in tools/pkgrepos can be used to update apt and yum repositories as well as create zip archives for a release. The dl.kolide.co repository is archived as a static bucket on GCP.
6 lines
180 B
Bash
Executable file
6 lines
180 B
Bash
Executable file
#!/bin/bash
|
|
# run createrepo to re-generate metadata
|
|
createrepo --update /repo
|
|
|
|
# sign repo with GPG key
|
|
gpg --default-key 000CF27C --detach-sign --armor /repo/repodata/repomd.xml
|