#!/bin/sh# make sure apt knows about the new keys#if [ -x /usr/bin/apt-key ]; then# /usr/bin/apt-key update#fi# the keyring in /var that gets fetched by apt-key net-update# if it does not yet exist, copy it to avoid uneeded net copyKEYRINGDIR="/var/lib/apt/keyrings"KEYRING="${KEYRINGDIR}/hamara-archive-keyring.gpg"if!test-d$KEYRINGDIR;thenmkdir-m 755 -p$KEYRINGDIRfiif!test-f$KEYRING;thencp /usr/share/keyrings/hamara-archive-keyring.gpg $KEYRINGtouch$KEYRINGfi