fix comments in conf file
This commit is contained in:
parent
9b69d9e0dd
commit
d7d904a135
@ -1,3 +1,6 @@
|
|||||||
|
* Fri Apr 06 2007 Jesse Keating <jkeating@redhat.com>
|
||||||
|
- Fix comments in config file
|
||||||
|
|
||||||
* Mon Apr 02 2007 Jesse Keating <jkeating@redhat.com>
|
* Mon Apr 02 2007 Jesse Keating <jkeating@redhat.com>
|
||||||
- Remove incompatible fc6 config files
|
- Remove incompatible fc6 config files
|
||||||
- Update default config file with comments / new options
|
- Update default config file with comments / new options
|
||||||
|
@ -1,20 +1,21 @@
|
|||||||
# Pungi config file
|
# Pungi config file
|
||||||
#
|
#
|
||||||
|
# # or ; can be used at the start of a line, ; only to comment inline.
|
||||||
|
|
||||||
[default]
|
[default]
|
||||||
product_name = Fedora # The name used during install
|
product_name = Fedora ; The name used during install
|
||||||
product_path = Fedora # The directory where RPMS go
|
product_path = Fedora ; The directory where RPMS go
|
||||||
iso_basename = F # The first part of the iso file name
|
iso_basename = F ; The first part of the iso file name
|
||||||
bugurl = http://bugzilla.redhat.com # Used for betanag
|
bugurl = http://bugzilla.redhat.com ; Used for betanag
|
||||||
comps = /etc/pungi/comps-fc7.xml # Used to define package groupings and default installs
|
comps = /etc/pungi/comps-fc7.xml ; Used to define package groupings and default installs
|
||||||
manifest = /etc/pungi/minimal-manifest # Used to determine what to bring in. Supports Kickstart syntax
|
manifest = /etc/pungi/minimal-manifest ; Used to determine what to bring in. Supports Kickstart syntax
|
||||||
yumconf = /etc/pungi/yum.conf.x86_64 # Used to determine where to gather packages from
|
yumconf = /etc/pungi/yum.conf.x86_64 ; Used to determine where to gather packages from
|
||||||
destdir = /srv/pungi/Fedora # Top level compose directory, must be clean
|
destdir = /srv/pungi/Fedora ; Top level compose directory, must be clean
|
||||||
cachedir = /srv/pungi/cache # Cache used for repeat runs
|
cachedir = /srv/pungi/cache ; Cache used for repeat runs
|
||||||
arch = x86_64 # What arch to compose (must be same arch as system)
|
arch = x86_64 ; What arch to compose (must be same arch as system)
|
||||||
version = development # Used both in install and part of the dest tree
|
version = development ; Used both in install and part of the dest tree
|
||||||
flavor = Custom # Further define a given cut of the package set
|
flavor = Custom ; Further define a given cut of the package set
|
||||||
discs = 1 # Number of discs needed to fit data.
|
discs = 1 ; Number of discs needed to fit data.
|
||||||
#cdsize = 4608.0 Not used if disc count is 1
|
#cdsize = 4608.0 ; Not used if disc count is 1
|
||||||
getsource = Yes # Used to determine if we want source packages or not
|
getsource = Yes ; Used to determine if we want source packages or not
|
||||||
|
|
||||||
|
2
pungi
2
pungi
@ -140,7 +140,7 @@ if __name__ == '__main__':
|
|||||||
import sys
|
import sys
|
||||||
|
|
||||||
def get_arguments():
|
def get_arguments():
|
||||||
parser = OptionParser(version="%prog 0.3.0")
|
parser = OptionParser(version="%prog 0.3.1")
|
||||||
parser.add_option("--destdir", default="*CONFFILE*", dest="destdir",
|
parser.add_option("--destdir", default="*CONFFILE*", dest="destdir",
|
||||||
help='destination directory (defaults to current directory)')
|
help='destination directory (defaults to current directory)')
|
||||||
parser.add_option("-c", "--conf", default='/etc/pungi/pungi.conf', dest="config",
|
parser.add_option("-c", "--conf", default='/etc/pungi/pungi.conf', dest="config",
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||||
|
|
||||||
Name: pungi
|
Name: pungi
|
||||||
Version: 0.3.0
|
Version: 0.3.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Distribution compose tool
|
Summary: Distribution compose tool
|
||||||
|
|
||||||
@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Apr 06 2007 Jesse Keating <jkeating@redhat.com> - 0.3.1-1
|
||||||
|
- Fix comments in default config file
|
||||||
|
|
||||||
* Mon Apr 02 2007 Jesse Keating <jkeating@redhat.com> - 0.3.0-1
|
* Mon Apr 02 2007 Jesse Keating <jkeating@redhat.com> - 0.3.0-1
|
||||||
- Remove incompatible fc6 config files
|
- Remove incompatible fc6 config files
|
||||||
- Update default config file with comments / new options
|
- Update default config file with comments / new options
|
||||||
|
2
setup.py
2
setup.py
@ -2,7 +2,7 @@ from distutils.core import setup
|
|||||||
import glob
|
import glob
|
||||||
|
|
||||||
setup(name='pungi',
|
setup(name='pungi',
|
||||||
version='0.3.0',
|
version='0.3.1',
|
||||||
description='Distribution compose tool',
|
description='Distribution compose tool',
|
||||||
author='Jesse Keating',
|
author='Jesse Keating',
|
||||||
author_email='jkeating@redhat.com',
|
author_email='jkeating@redhat.com',
|
||||||
|
Loading…
Reference in New Issue
Block a user