1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
This is a brief description of the most often encountered deployment
actions. Most of the commands assumes that
``/srv/package-import.canonical.com/new/scripts`` is the current working
directory. See the ``README`` file for details.
To stop the importer, run::
./etc-init.d-mass-import graceful-stop
To update the scripts::
bzr update
To start the importer, as the pkg_import user::
./etc-init.d-mass-import start
To update the builddeb plugin::
cd plugins/builddeb
bzr pull -v
To get some useful shorcuts for dealing with manual operations::
. ./fixit.sh
To monitor the ``mass-import`` script::
tail -F logs/driver/progress_log
tail -F logs/driver/progress_log | analyze-log -
the former gives a detailed view of what is happening while the later gives
a better summary.
|