blob: d639839db265b67bd3e55e016397a2b862c13ebe (
about) (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
# Copyright 2012-2018 Gentoo Authors; Distributed under the GPL v2
case $HOSTNAME in
kookaburra) TARGET=/var/tmp/gmirror/snapshots-final/.timestamp-snapshots.x ;;
dipper) TARGET=/var/tmp/gmirror-rsync/snapshots-final/.timestamp-snapshots.x ;;
blackcap) TARGET=/var/tmp/gmirror-rsync/snapshots-final/.timestamp-snapshots.x ;;
*) echo "Unknown host in timestamp-rsync.sh!" 1>&2 ; exit 1 ;;
esac
/bin/date -u +'%s %a, %d %b %Y %H:%M:%S %z' >"${TARGET}"
|