ipfs-ubuntu-mirror/sync.run

82 lines
2.5 KiB
Bash

#!/bin/bash
#
# Copyright (C) 2018 JaquerEspeis
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3 as
# published by the Free Software Foundation.
#
# 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, see <http://www.gnu.org/licenses/>.
# Make a full sync of an Ubuntu mirror.
# This currently requires more than 1TB of storage space and takes a long time.
sleep 60 # prevent cpu spike on looping
export MIRROR_DIR=/var/lib/ubuntumirror
export IPFS_PATH=/var/lib/ipfs
if [[ ! -d $MIRROR_DIR ]]; then
mkdir -p $MIRROR_DIR
fi
chown ipfs:ipfs $MIRROR_DIR
export GNUPGHOME=/etc/debmirror/gnupg
if [[ ! -d $GNUPGHOME ]]; then
mkdir -p $GNUPGHOME
fi
chown ipfs:ipfs $GNUPGHOME
chpst -u ipfs /bin/bash << '__EOF__'
export IPFS=/usr/local/bin/ipfs
export HOME=/var/lib/ipfs
export IPFS_FD_MAX=4096
gpg --no-default-keyring --keyring $GNUPGHOME/trustedkeys.kbx --import \
/usr/share/keyrings/ubuntu*.gpg
$IPFS config --json Experimental.FilestoreEnabled true
echo "Synchronizing with the main Ubuntu mirror."
set -x # error out if the sync fails
debmirror \
--keyring $GNUPGHOME/trustedkeys.kbx \
-a ${MIRROR_ARCHITECTURES:-amd64} \
--no-source \
-s ${MIRROR_CATEGORIES:-main,universe,multiverse,restricted} \
-h ${UBUNTU_MIRROR_SOURCE:-archive.ubuntu.com} \
-d ${UBUNTU_MIRROR_PROJECTS:-xenial,xenial-updates,xenial-security,xenial-backports,bionic,bionic-updates,bionic-security,bionic-backports} \
--ignore-small-errors \
-r ${UBUNTU_MIRROR_PATH:-/ubuntu} \
--progress \
--method=http \
$MIRROR_DIR
set +x # resume ignoring errors
# Publish the files on IPFS.
# This uses the experimental filestore:
# https://github.com/ipfs/go-ipfs/issues/3397#issuecomment-284337564
echo "Adding the mirror files to IPFS."
HASH="$($IPFS add --progress --quieter --recursive "$MIRROR_DIR" | tail -n1)"
echo "Published (added/pinned) /ipfs/${HASH}."
echo "Updating IPNS."
IPNS="$($IPFS name publish "${HASH}" | cut -d ' ' -f 3 | tr -d ':')"
echo "IPFS Mirror synchronized."
echo "Add the address 'ipfs:/ipns/${IPNS}' to your '/etc/apt/sources.list'."
echo "For example, add 'deb ipfs:/ipns/${IPNS} xenial main'"
__EOF__
sleep 3600 # wait 1h before syncing again