A parser for /etc/default configuration files
Project description
etcDefault
==========
A parser for /etc/default configuration files which parses these files with a
bash subshell in order to have 100% of the bash features when including this
configuration into an python driven init script.
Example
-------
root@host # cat /etc/default/rcS
#
# /etc/default/rcS
#
# Default settings for the scripts in /etc/rcS.d/
#
# For information about these variables see the rcS(5) manual page.
#
# This file belongs to the "initscripts" package.
TMPTIME=0
SULOGIN=no
DELAYLOGIN=no
UTC=yes
VERBOSE=no
FSCKFIX=no
RAMRUN=no
RAMLOCK=no
root@host # python
Python 2.6.6 (r266:84292, Dec 26 2010, 22:31:48)
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import etcDefault
>>> etcDefault.read('/etc/default/rcS')
{
'UTC': 'yes',
'RAMLOCK': 'no',
'SULOGIN': 'no',
'VERBOSE': 'no',
'TMPTIME': '0',
'RAMRUN': 'no',
'FSCKFIX': 'no',
'DELAYLOGIN': 'no',
'PIPESTATUS': ['0']
}
>>>
You get all variables set during the run of the /etc/default script into a dict.
==========
A parser for /etc/default configuration files which parses these files with a
bash subshell in order to have 100% of the bash features when including this
configuration into an python driven init script.
Example
-------
root@host # cat /etc/default/rcS
#
# /etc/default/rcS
#
# Default settings for the scripts in /etc/rcS.d/
#
# For information about these variables see the rcS(5) manual page.
#
# This file belongs to the "initscripts" package.
TMPTIME=0
SULOGIN=no
DELAYLOGIN=no
UTC=yes
VERBOSE=no
FSCKFIX=no
RAMRUN=no
RAMLOCK=no
root@host # python
Python 2.6.6 (r266:84292, Dec 26 2010, 22:31:48)
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import etcDefault
>>> etcDefault.read('/etc/default/rcS')
{
'UTC': 'yes',
'RAMLOCK': 'no',
'SULOGIN': 'no',
'VERBOSE': 'no',
'TMPTIME': '0',
'RAMRUN': 'no',
'FSCKFIX': 'no',
'DELAYLOGIN': 'no',
'PIPESTATUS': ['0']
}
>>>
You get all variables set during the run of the /etc/default script into a dict.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file etcDefaultParser-1.0.0-py2.6.egg.
File metadata
- Download URL: etcDefaultParser-1.0.0-py2.6.egg
- Upload date:
- Size: 9.2 kB
- Tags: Egg
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
796d3bd2dec0c7745577f8bb9a71eafc47c2fec3c2f75c57f599d00a108fa77d
|
|
| MD5 |
f0ab3e03947588f6e94b70ddf46b01a1
|
|
| BLAKE2b-256 |
2021c67ef9b7edac3ceb90c9615bfb4096bd21666c698377c434db73c11b66fc
|