~launchpad-pqm/launchpad/devel

4285.3.35 by Celso Providelo
adding cron.ppa
1
#!/bin/bash
8687.15.7 by Karl Fogel
Add the copyright header block to more files.
2
#
3
# Copyright 2009 Canonical Ltd.  This software is licensed under the
4
# GNU Affero General Public License version 3 (see the file LICENSE).
5
4285.3.35 by Celso Providelo
adding cron.ppa
6
set -x
7
8520.3.1 by Celso Providelo
Splitting PPA cron jobs.
8
# Variables, lockfile and exit handler for PPA scripts.
9
source `dirname $0`/cron.base-ppa
4285.3.35 by Celso Providelo
adding cron.ppa
10
13225.8.1 by Abel Deuring
replace hard coded path to the script directory in cron.publish-ppa with a relative path.
11
LPCURRENT=`dirname $0`/../..
12
4868.3.6 by Celso Providelo
applying review comments and adding proper tests for IDistroSeries.getPublishedReleases and IDistroArchSeries.getReleasePackages publishing lookup methods using in archiveuploader land.
13
# Accept PPA binary uploads
14
$LPCURRENT/scripts/process-accepted.py -v --ppa ubuntu
4285.3.35 by Celso Providelo
adding cron.ppa
15
4868.3.6 by Celso Providelo
applying review comments and adding proper tests for IDistroSeries.getPublishedReleases and IDistroArchSeries.getReleasePackages publishing lookup methods using in archiveuploader land.
16
# Publish source and binary PPAs into disk.
8455.1.4 by Celso Providelo
removing verbose log options from publish-distro in the PPA cronjob.
17
$LPCURRENT/scripts/publish-distro.py --ppa -d ubuntu
4868.3.6 by Celso Providelo
applying review comments and adding proper tests for IDistroSeries.getPublishedReleases and IDistroArchSeries.getReleasePackages publishing lookup methods using in archiveuploader land.
18
5596.2.2 by Julian Edwards
Add polish and some tests.
19
# Publish private PPAs.
8455.1.4 by Celso Providelo
removing verbose log options from publish-distro in the PPA cronjob.
20
$LPCURRENT/scripts/publish-distro.py --private-ppa -d ubuntu
5596.2.2 by Julian Edwards
Add polish and some tests.
21