Skip to content
arm-link 1.32 KiB
Newer Older
Seblu's avatar
Seblu committed
#!/bin/bash -e

# Copyright © Sébastien Luttringer
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

LOCKFILE=~/."${0##*/}".lock
ARMBASE=/srv/ftp/archlinux/arm
Seblu's avatar
Seblu committed
ARCBASE=/srv/ftp/archlinux/archive/repos
Seblu's avatar
Seblu committed

Seblu's avatar
Seblu committed
[[ $1 != "" && ${1:0:1} != / ]] && { echo 'Absolute path please, ln is bugged'; exit 1; }
Seblu's avatar
Seblu committed

Seblu's avatar
Seblu committed
[[ -t 1 ]] && set -x

Seblu's avatar
Seblu committed
# we lock!
exec 9> "$LOCKFILE"
flock -n 9 || { echo 'Locking Failed' >&2; exit 1; }

# nice umask
umask 022

cd "$ARMBASE"

Seblu's avatar
Seblu committed
# update last
Seblu's avatar
Seblu committed
ln -svrnf "$(ls -1d "$ARCBASE"/*/*/*|sort|tail -n1)" last

# update last week
Seblu's avatar
Seblu committed
ln -srvnf "$ARCBASE/$(date -d 'last monday' +%Y/%m/%d)" week

# update last month
ln -srvnf "$ARCBASE/$(date +%Y/%m/01)" month
Seblu's avatar
Seblu committed

# vim:set sw=2 ts=2 ft=sh et: