mirror of
https://github.com/YunoHost/vinaigrette.git
synced 2024-09-03 20:06:11 +02:00
34 lines
1.1 KiB
Bash
Executable file
34 lines
1.1 KiB
Bash
Executable file
|
|
apt-get install nginx pbuilder reprepro rebuildd gawk sendxmpp -y
|
|
|
|
VINAIGRETTE_HOME="/home/vinaigrette"
|
|
|
|
cd $VINAIGRETTE_HOME
|
|
source config/config
|
|
|
|
gpg --import config/keys/$DEBSIGN_KEYID.key
|
|
gpg --import config/keys/$DEBSIGN_KEYID.pub
|
|
|
|
cd gitrepos/
|
|
git clone https://github.com/yunohost/yunohost
|
|
git clone https://github.com/yunohost/yunohost-admin
|
|
git clone https://github.com/yunohost/ssowat
|
|
git clone https://github.com/yunohost/moulinette
|
|
|
|
mkdir -p /var/www/repo/debian/conf/
|
|
ln -s $VINAIGRETTE_HOME/config/distributions /var/www/repo/debian/conf/distributions
|
|
|
|
rm /etc/rebuildd/rebuilddrc
|
|
ln -s $VINAIGRETTE_HOME/config/rebuildd.conf /etc/rebuildd/rebuilddrc
|
|
|
|
ln -s $VINAIGRETTE_HOME/pbuilder/images /var/cache/pbuilder/images
|
|
ln -s /var/cache/pbuilder/result $PBUILDER_RESULTS
|
|
cp $VINAIGRETTE_HOME/conf/nginx.conf /etc/nginx/sites-enabled/repo.conf
|
|
|
|
cat $VINAIGRETTE_HOME/config/keys/$DEBSIGN_KEYID.pub | apt-key add
|
|
cat $VINAIGRETTE_HOME/config/sources.list > /etc/apt/sources.list.d/vinaigrette.list
|
|
|
|
echo "127.0.0.1 $REPO_URL" >> /etc/hosts
|
|
service nginx reload
|
|
|
|
rebuildd init
|