Compare commits
3 commits
Author | SHA1 | Date | |
---|---|---|---|
13a4d00e30 | |||
c3b8ebe0ed | |||
|
c0450dcbd8 |
6 changed files with 7 additions and 61 deletions
|
@ -27,11 +27,6 @@ RUN chmod 755 /usr/local/sbin/reprepro-import
|
||||||
RUN mkdir -p /var/lib/reprepro/conf
|
RUN mkdir -p /var/lib/reprepro/conf
|
||||||
ADD configs/reprepro-distributions /var/lib/reprepro/conf/distributions
|
ADD configs/reprepro-distributions /var/lib/reprepro/conf/distributions
|
||||||
|
|
||||||
# reprepro config generator
|
|
||||||
ADD scripts/create-distros.sh /usr/local/sbin/create-distros
|
|
||||||
RUN chmod 755 /usr/local/sbin/create-distros
|
|
||||||
ADD configs/reprepro-distributions.temp /etc/reprepro-distributions.temp
|
|
||||||
|
|
||||||
# Configure nginx
|
# Configure nginx
|
||||||
RUN echo "daemon off;" >> /etc/nginx/nginx.conf
|
RUN echo "daemon off;" >> /etc/nginx/nginx.conf
|
||||||
RUN rm -f /etc/nginx/sites-enabled/default
|
RUN rm -f /etc/nginx/sites-enabled/default
|
||||||
|
|
|
@ -34,7 +34,7 @@ Fill your ``~/.dput.cf`` with the following content :
|
||||||
login = user
|
login = user
|
||||||
incoming = /docker/incoming
|
incoming = /docker/incoming
|
||||||
ssh_config_options =
|
ssh_config_options =
|
||||||
Port 9022
|
Port 49160
|
||||||
StrictHostKeyChecking no
|
StrictHostKeyChecking no
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
Origin: {{EASYREPO_ORIGIN}}
|
|
||||||
Label: {{EASYREPO_LABEL}}
|
|
||||||
Suite: {{EASYREPO_SUITE}}
|
|
||||||
Codename: {{EASYREPO_CODENAME}}
|
|
||||||
Version: 3.1
|
|
||||||
Architectures: {{EASYREPO_ARCHITECTURES}}
|
|
||||||
Components: main non-free contrib
|
|
||||||
Description: {{EASYREPO_DESCRIPTION}}
|
|
|
@ -1,32 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
REPREPRO_DIST="${REPREPRO_OVERRIDE:-/var/lib/reprepro/conf/distributions}"
|
|
||||||
|
|
||||||
# path to template file
|
|
||||||
REPREPRO_DIST_TEMP="/etc/reprepro-distributions.temp"
|
|
||||||
|
|
||||||
# Default results to configs/reprepro-distributions
|
|
||||||
EASYREPO_SUITES="${EASYREPO_SUITES:-unstable,sid/stable,buster/testing,bullseye}"
|
|
||||||
EASYREPO_ORIGIN="${EASYREPO_ORIGIN:-Test Origin}"
|
|
||||||
EASYREPO_LABEL="${EASYREPO_LABEL:-Easy Debian Repository}"
|
|
||||||
EASYREPO_ARCHITECTURES="${EASYREPO_ARCHITECTURES:-i386 amd64 powerpc source}"
|
|
||||||
EASYREPO_DESCRIPTION="${EASYREPO_LABEL:-Easy Debian Repository}"
|
|
||||||
|
|
||||||
# Empty the file
|
|
||||||
echo -n > $REPREPRO_DIST
|
|
||||||
|
|
||||||
# Slash delimited
|
|
||||||
for i in $(echo ${EASYREPO_SUITES} | sed "s/\// /g")
|
|
||||||
do
|
|
||||||
g=($(echo $i | sed "s/\,/ /g"))
|
|
||||||
sed -e "s/{{EASYREPO_ORIGIN}}/${EASYREPO_ORIGIN}/" \
|
|
||||||
-e "s/{{EASYREPO_LABEL}}/${EASYREPO_LABEL}/" \
|
|
||||||
-e "s/{{EASYREPO_SUITE}}/${g[0]}/" \
|
|
||||||
-e "s/{{EASYREPO_CODENAME}}/${g[1]}/" \
|
|
||||||
-e "s/{{EASYREPO_ARCHITECTURES}}/${EASYREPO_ARCHITECTURES}/" \
|
|
||||||
-e "s/{{EASYREPO_DESCRIPTION}}/${EASYREPO_DESCRIPTION}/" $REPREPRO_DIST_TEMP >> $REPREPRO_DIST
|
|
||||||
echo "" >> $REPREPRO_DIST
|
|
||||||
done
|
|
||||||
|
|
||||||
# Remove last line
|
|
||||||
sed -i '$ d' $REPREPRO_DIST
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/bin/sh
|
||||||
|
|
||||||
BASEDIR=/var/lib/reprepro
|
BASEDIR=/var/lib/reprepro
|
||||||
INCOMING=/docker/incoming
|
INCOMING=/docker/incoming
|
||||||
|
@ -11,17 +11,10 @@ cd $INCOMING
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
#set -x
|
#set -x
|
||||||
|
reprepro -V --basedir $BASEDIR --outdir $OUTDIR createsymlinks stable
|
||||||
# Check for EASYREPO_SUITES to create symlinks
|
reprepro -V --basedir $BASEDIR --outdir $OUTDIR createsymlinks jessie
|
||||||
EASYREPO_SUITES="${EASYREPO_SUITES:-unstable,sid/stable,buster/testing,bullseye}"
|
reprepro -V --basedir $BASEDIR --outdir $OUTDIR createsymlinks unstable
|
||||||
|
reprepro -V --basedir $BASEDIR --outdir $OUTDIR createsymlinks sid
|
||||||
for k in $(echo ${EASYREPO_SUITES} | sed "s/\// /g")
|
|
||||||
do
|
|
||||||
g=($(echo $k | sed "s/\,/ /g"))
|
|
||||||
reprepro -V --basedir $BASEDIR --outdir $OUTDIR createsymlinks ${g[0]}
|
|
||||||
done
|
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# See if we found any new packages
|
# See if we found any new packages
|
||||||
#
|
#
|
||||||
|
|
|
@ -22,6 +22,7 @@ rm -f /home/user/.ssh/authorized_keys
|
||||||
for key in /docker/keys/*.pub ; do
|
for key in /docker/keys/*.pub ; do
|
||||||
echo "- adding key $key"
|
echo "- adding key $key"
|
||||||
cat $key >> /home/user/.ssh/authorized_keys
|
cat $key >> /home/user/.ssh/authorized_keys
|
||||||
|
printf \\\n >> /home/user/.ssh/authorized_keys
|
||||||
done
|
done
|
||||||
chown -R user /home/user/.ssh
|
chown -R user /home/user/.ssh
|
||||||
|
|
||||||
|
@ -30,9 +31,6 @@ crontab <<EOF
|
||||||
* * * * * /usr/local/sbin/reprepro-import >> /var/log/reprepro.log
|
* * * * * /usr/local/sbin/reprepro-import >> /var/log/reprepro.log
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# run distro config generator
|
|
||||||
/usr/local/sbin/create-distros
|
|
||||||
|
|
||||||
# run import once, to create the right directory structure
|
# run import once, to create the right directory structure
|
||||||
/usr/local/sbin/reprepro-import
|
/usr/local/sbin/reprepro-import
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue