You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-apps/pcsc-tools/files/smartcard.cron

16 lines
319 B

#!/bin/sh
set -e
SRC=http://ludovic.rousseau.free.fr/softwares/pcsc-tools/smartcard_list.txt
DEST=/usr/share/pcsc/smartcard_list.txt
touch ${DEST} >/dev/null 2>&1 || exit 1
if ! wget --quiet --no-timestamping -O "${DEST}".new "$SRC"; then
rm -f "${DEST}".new
fi
chmod a+r "${DEST}".new
mv "${DEST}".new "${DEST}"