diff options
author | JF Ding <jian-feng.ding@intel.com> | 2012-05-03 15:42:10 +0800 |
---|---|---|
committer | JF Ding <jian-feng.ding@intel.com> | 2012-05-16 17:49:13 +0800 |
commit | 5a4c2e7367d510717e1c9dcb69b4c3ec5b2426ff (patch) | |
tree | 483124b31c240362d5e346a1fb62a734d7c04993 | |
parent | 2bb9b9de1f6aed57b8e94bd0050d55fffc3b9876 (diff) | |
download | kickstarter-5a4c2e7367d510717e1c9dcb69b4c3ec5b2426ff.tar.gz kickstarter-5a4c2e7367d510717e1c9dcb69b4c3ec5b2426ff.tar.bz2 kickstarter-5a4c2e7367d510717e1c9dcb69b4c3ec5b2426ff.zip |
rename README to README.md and update it as markdown
-rw-r--r-- | .gitignore | 31 | ||||
-rw-r--r-- | README.md (renamed from README) | 28 |
2 files changed, 51 insertions, 8 deletions
@@ -1,4 +1,31 @@ -build/ kickstart/__init__.py kickstart/kickstart.py -*~
\ No newline at end of file +*~ + +*.py[co] + +# Packages +*.egg +*.egg-info +dist +build +eggs +parts +bin +var +sdist +develop-eggs +.installed.cfg + +# Installer logs +pip-log.txt + +# Unit test / coverage reports +.coverage +.tox + +#Translations +*.mo + +#Mr Developer +.mr.developer.cfg @@ -1,20 +1,36 @@ +kickstarter +=========== + +Kickstart file generator based on YAML formated meta data + +Installation +------------ + Install cheetah (http://www.cheetahtemplate.org/) templating system, PyYAML. run make sudo python setup.py install -then run: + +Usage +----- + kickstarter -c <images.yaml> -r <repos.yaml> Example: - kickstarter --configs configurations.yaml --repos repos.yaml - This configuration.yaml file is an example only, for meego kickstart files, - consult the image-configurations package + kickstarter --configs configurations.yaml --repos repos.yaml + +This configuration.yaml file is an example only, for meego kickstart files, +consult the image-configurations package + +Repo file +--------- -Repo file: This file contains a list of repositories to be used in the kickstart files -Configurations file: +Configurations file +------------------- + This file has the definition of configurations. The Configurations inherit from platforms first then from the DEFAULT section. The image configurations override the all other settings (in DEFAULT and platform sections). |