Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions installer/debian/conffiles
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/etc/apt/apt.conf.d/50algorand-upgrades
/var/lib/algorand/genesis.json
6 changes: 3 additions & 3 deletions installer/rpm/algorand.spec
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,15 @@ fi
/usr/bin/goal
/var/lib/algorand/config.json.example
/var/lib/algorand/system.json
/var/lib/algorand/genesis.json
%config(noreplace) /var/lib/algorand/genesis.json
%if %{RELEASE_GENESIS_PROCESS} != "x"
/var/lib/algorand/genesis/devnet/genesis.json
/var/lib/algorand/genesis/testnet/genesis.json
/var/lib/algorand/genesis/mainnet/genesis.json
%endif
/lib/systemd/system/algorand.service
/etc/cron.hourly/0yum-algorand-hourly.cron
/etc/yum/yum-cron-algorand.conf
%config(noreplace) /etc/cron.hourly/0yum-algorand-hourly.cron
%config(noreplace) /etc/yum/yum-cron-algorand.conf
/etc/pki/rpm-gpg/RPM-GPG-KEY-Algorand
/usr/lib/algorand/yum.repos.d/algorand.repo

Expand Down
2 changes: 1 addition & 1 deletion scripts/build_deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ for f in "${unattended_upgrades_files[@]}"; do
done

mkdir -p ${PKG_ROOT}/DEBIAN
debian_files=("control" "postinst" "prerm" "postrm")
debian_files=("control" "postinst" "prerm" "postrm" "conffiles")
for ctl in "${debian_files[@]}"; do
# Copy first, to preserve permissions, then overwrite to fill in template.
cp -a installer/debian/${ctl} ${PKG_ROOT}/DEBIAN/${ctl}
Expand Down