Skip to content

Commit 7f9ab7d

Browse files
committed
temp: add quick sync to prod script
1 parent 727e23b commit 7f9ab7d

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

sync/sync-to-prod-all.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/bin/bash
2+
# Syncs every release at once (hardcoded)
3+
4+
if [ -f "sync-to-prod.sh" ]; then
5+
echo "Sync to prod script not in PWD."
6+
exit 1
7+
fi
8+
9+
# Rocky Linux 8
10+
RLVER=8 bash sync-to-prod.sh
11+
12+
# Rocky Linux 9
13+
RLVER=9 bash sync-to-prod.sh
14+
15+
# Rocky Linux 10
16+
RLVER=10 bash sync-to-prod.sh
17+
18+
# Updates the file lists
19+
bash sync-file-list-parallel.sh
20+
21+
# 9 is still in peridot, so there's no downgradable packages
22+
RLVER=9 bash vault-release-no-repodata.sh

0 commit comments

Comments
 (0)