-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
76 lines (52 loc) · 2.79 KB
/
README
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
SliTaz Pizza
================================================================================
The SliTaz Pizza provides tools and utils to build Live systems online.
* Build ISO flavors online in a simple to use and modern interface
* Use stable packages or cooking if near to a stable release
* Build queue and one build at a time to be less resources intensive
* Can be run locally as a frontend to Tazlito or from the cmdline
* Produce standard and valid HTML code and wildly themable
* Provide a status page to follow build process for each flavor
* Create a tarball of the flavor receipt, list and addfiles
* Log activities, build process and provide useful statistics
* Keep ISO images and files public for a while, then archive them
* Uniq ID strings for each flavor and mail notification
* RSS feed for all newly built flavors and summary on web interface
Installation and Administration
-------------------------------
Pizza uses a chroot to build ISOs and a web interface to create the flavor
file. Pizza can be installed and setup in a few commands. The package provides
a pizza host utility, pizza-bot build bot for chroot and pizza.cgi which is
the web interface main script. So let's go through the installation:
# tazpkg -gi slitaz-pizza
Or from Hg:
# hg clone http://hg.slitaz.org/slitaz-pizza
# cd pizza && make install
You can display a list of commands and a short usage with the usage command.
Create the chroot and build environment. You may want to have a look
at the Pizza configuration file before processing:
# pizza setup
Now you are ready to start the build bot to build queued flavors one by one.
You can also chroot in the environment to build manually or test:
# pizza start
In time there may be quite a lot of ISOs and temporary files. To clean up the
temporary files and old flavors files:
# pizza purge
The cron task is run in the chroot and checks if any flavors have been submitted,
by default it checks every 20 minutes. The bot frequency can be changed by
editing root crontabs in the build chroot.
To check the build queue or chroot manually you can use:
# pizza exec pizza-bot
# pizza chroot
Developers and translators
--------------------------
SHell script as you would expect. Keep speed in mind and security. Always
think to have a simple option and an advanced option, for example in rootfs
modification let users add custom wallpaper easily and advanced users to
upload a full rootfs.
Pizza has been coded from the beginning with gettext support. Please forget
'echo' and use gettext, but remember that gettext "" is equivalent to echo -n.
To start a new translation please use msginit from the pot file directory.
Example for French/France locale (fr_FR):
$ msginit -l fr_FR -o fr.po -i pizza.pot
================================================================================