2019-06-22 15:00:22 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
cd "$( dirname "${BASH_SOURCE[0]}" )"
|
|
|
|
|
2019-09-01 12:50:58 +00:00
|
|
|
fpm -s dir -t deb --force \
|
2019-06-22 15:00:22 +00:00
|
|
|
-n pve-fake-subscription \
|
|
|
|
--description "Pollute Proxmox VE 5.x subscription cache so it won't alert you on dashboard login" \
|
2019-06-22 15:22:10 +00:00
|
|
|
--url "https://github.com/Jamesits/pve-fake-subscription" \
|
2019-06-22 15:25:48 +00:00
|
|
|
-v 0.0.2 \
|
2019-06-22 15:00:22 +00:00
|
|
|
--license "GLWTS(Good Luck With That Shit) Public License" \
|
|
|
|
--depends "python3" \
|
|
|
|
--architecture all \
|
|
|
|
--deb-dist "unstable" \
|
|
|
|
--deb-priority "optional" \
|
|
|
|
--deb-systemd "usr/lib/systemd/system/pve-fake-subscription.timer" \
|
2019-09-01 12:50:58 +00:00
|
|
|
--deb-after-purge "scripts/purge" \
|
2019-06-22 15:00:22 +00:00
|
|
|
./usr
|
|
|
|
|