summaryrefslogtreecommitdiff
path: root/db-sync-arm
diff options
context:
space:
mode:
Diffstat (limited to 'db-sync-arm')
-rwxr-xr-xdb-sync-arm10
1 files changed, 2 insertions, 8 deletions
diff --git a/db-sync-arm b/db-sync-arm
index 3b1e3df..0c28a37 100755
--- a/db-sync-arm
+++ b/db-sync-arm
@@ -175,16 +175,10 @@ init() {
> "/tmp/${_repo}-any.pkgwhitelist"
while read _pkgfile; do
- # Symlink to package
+ # Symlink to package and signature
if [ -f "${FTP_BASE}/${pkgpool}/${_pkgfile}" ]; then
ln -sf "../../../${pkgpool}/${_pkgfile}" \
- "${FTP_BASE}/${_repo}/os/${_arch}"
- fi
-
- # Symlink to signature
- if [ -f "${FTP_BASE}/${pkgpool}/${_pkgfile}.sig" ]; then
- ln -sf "../../../${pkgpool}/${_pkgfile}.sig" \
- "${FTP_BASE}/${_repo}/os/${_arch}/${_pkgfile}.sig"
+ "${FTP_BASE}/${_repo}/os/${_arch}/${_pkgfile}"
fi
done < "/tmp/${_repo}-any.pkgwhitelist"
done