mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
7 lines
221 B
Bash
Executable file
7 lines
221 B
Bash
Executable file
#!/bin/bash
|
|
|
|
snapshot="$(date +%s)"
|
|
aptly repo add fleet /deb
|
|
aptly snapshot create "${snapshot}" from repo fleet
|
|
aptly publish drop jessie
|
|
aptly publish -gpg-key="000CF27C" --distribution="jessie" snapshot "${snapshot}"
|