summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Options.py
Commit message (Collapse)AuthorAgeFilesLines
* Probes: fixed default list of allowed probe groupsChris St. Pierre2013-12-061-1/+1
|
* testsuite: fixed unit tests for Probes allowed_groups optionChris St. Pierre2013-11-141-0/+1
|
* Add probes.allowed_groups option to restrict group assignments.Simon Ruderich2013-11-141-1/+16
|
* Options: make "public" default pgsql database schemaChris St. Pierre2013-11-131-1/+1
|
* Options: fix parsing of POSIX GID blacklist/whitelistChris St. Pierre2013-07-301-2/+2
|
* settings: fixed db schema optionChris St. Pierre2013-07-241-1/+2
|
* settings: allow setting database schemaChris St. Pierre2013-07-241-1/+4
|
* Packages: Added timeout to bcfg2-yum-helper callsChris St. Pierre2013-07-221-1/+2
| | | | | | | This involved making the Yum backend use Bcfg2.Utils.Executor to call bcfg2-yum-helper instead of subprocess.Popen directly. This was cherry-picked (kinda) from 3d06f311274d6b942ee89d8cdb13b2ecc99af1b0, so will likely break the maint -> master merge in spectacular ways.
* Options: Fix typosSol Jerome2013-06-291-1/+1
| | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* Options: add database.optionsAlexander Sulfrian2013-06-281-0/+7
| | | | | | | With the options setting in the database section of the config file various database options for the django database could be set (like ssl mode for postgres). For more information, consult your django databse backend module's documentation.
* Opitons: add cook function to parse a dict for the config fileAlexander Sulfrian2013-06-281-0/+22
|
* Options: fixed typo in optionChris St. Pierre2013-05-231-1/+1
|
* added multiprocessing server coreChris St. Pierre2013-05-201-1/+12
|
* minor fixes for FAM blockingJason Kincl2013-05-011-0/+1
|
* Adding option to force server to wait until all FAM events are processedJason Kincl2013-05-011-0/+5
|
* Options: add environment var for config fileChris St. Pierre2013-04-191-1/+2
|
* Options: Fix PEP8 errorSol Jerome2013-04-041-0/+1
| | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* Promote bcfg2-info to have it's own Options dictMichael Fenn2013-04-011-0/+4
| | | | | | | | | | Turns out that CLIENT_COMMON_OPTIONS and SERVER_COMMON_OPTIONS conflict. Adding ppath and max_copies (turns out the latter is also necessary) to the bcfg2-info code directly seemed like a maintenance problem waiting to happen, so I factored that out into a new INFO_COMMON_OPTIONS dict. That will keep any options parsing special cases out of the bcfg2-info code hopefully be more maintainable going forward.
* Added option to periodically dump performance stats to logsChris St. Pierre2013-03-291-1/+12
|
* testsuite: fixed issues found by latest version of pylintChris St. Pierre2013-03-261-3/+3
|
* Merge branch '1.3.2' into maintChris St. Pierre2013-03-211-3/+58
|\ | | | | | | | | | | | | | | | | Conflicts: src/lib/Bcfg2/Client/Tools/__init__.py src/sbin/bcfg2-test testsuite/Testsrc/Testlib/TestClient/TestTools/TestPOSIX/Test__init.py testsuite/Testsrc/Testlib/TestClient/TestTools/TestPOSIXUsers.py testsuite/Testsrc/test_code_checks.py
| * bcfg2-test: added option to spawn multiple child processes to run testsChris St. Pierre2013-02-251-1/+28
| |
| * extended usage of Executor class, added client-side timeout optionsChris St. Pierre2013-02-141-1/+23
| |
| * Metadata: allowed setting global default authentication typeChris St. Pierre2013-02-141-1/+7
| |
* | Reporting: Fix sections for reports settingsSol Jerome2013-03-181-4/+6
| | | | | | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* | fixed option description for bcfg2-crypt passphrase optionChris St. Pierre2013-02-211-1/+1
|/
* POSIXUsers: set managed uid/gid rangeChris St. Pierre2013-01-181-1/+25
| | | | | | | | Added options to set a range (whitelist or blacklist) of managed uids/gids so that accounts in LDAP (e.g.) do not get flagged as "extra" entries. Request: http://article.gmane.org/gmane.comp.sysutils.bcfg2.devel/4629
* read bcfg2-lint plugin list properlyChris St. Pierre2013-01-141-0/+5
|
* testsuite: test for exceptions raised without messagesChris St. Pierre2012-12-101-2/+2
|
* set default umask for server, added option to change itChris St. Pierre2012-11-141-0/+6
|
* added Git.Update RMI, ability to base bcfg2 VCS repo at a different ↵Chris St. Pierre2012-10-301-1/+7
| | | | directory than the repo root
* Options: Add more vim tempfiles to ignoreSol Jerome2012-10-211-2/+2
| | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* fixed a few straggling perms -> mode changesChris St. Pierre2012-10-151-1/+1
|
* Options: Update mdata option to use 'mode'Sol Jerome2012-10-151-3/+3
| | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* Change the default base for sqlite dbs to SERVER_REPOSITORY/etc/Tim Laszlo2012-10-111-1/+1
|
* Lower reporting_file_limit to match 1.2, move web_prefix to reporting sectionTim Laszlo2012-10-111-2/+3
|
* Reporting: Make transport configurableTim Laszlo2012-10-101-1/+8
| | | | | | | Add routines to the setup to handle alternate transports. Make the default for new installs LocalFilesystem and existing installs DirectStore. Raise an error is DirectStore is used when loading bcfg-report-collector
* fix pylint unit test errorsChris St. Pierre2012-10-091-0/+3
|
* Reporting: Merge new reporting dataTim Laszlo2012-10-081-0/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move reporting data to a new schema Use south for django migrations Add bcfg2-report-collector daemon Conflicts: doc/development/index.txt doc/server/plugins/connectors/properties.txt doc/server/plugins/generators/packages.txt setup.py src/lib/Bcfg2/Client/Tools/SELinux.py src/lib/Bcfg2/Compat.py src/lib/Bcfg2/Encryption.py src/lib/Bcfg2/Options.py src/lib/Bcfg2/Server/Admin/Init.py src/lib/Bcfg2/Server/Admin/Reports.py src/lib/Bcfg2/Server/BuiltinCore.py src/lib/Bcfg2/Server/Core.py src/lib/Bcfg2/Server/FileMonitor/Inotify.py src/lib/Bcfg2/Server/Plugin/base.py src/lib/Bcfg2/Server/Plugin/interfaces.py src/lib/Bcfg2/Server/Plugins/Cfg/CfgEncryptedGenerator.py src/lib/Bcfg2/Server/Plugins/FileProbes.py src/lib/Bcfg2/Server/Plugins/Ohai.py src/lib/Bcfg2/Server/Plugins/Packages/Collection.py src/lib/Bcfg2/Server/Plugins/Packages/Source.py src/lib/Bcfg2/Server/Plugins/Packages/Yum.py src/lib/Bcfg2/Server/Plugins/Packages/__init__.py src/lib/Bcfg2/Server/Plugins/Probes.py src/lib/Bcfg2/Server/Plugins/Properties.py src/lib/Bcfg2/Server/Reports/backends.py src/lib/Bcfg2/Server/Reports/manage.py src/lib/Bcfg2/Server/Reports/nisauth.py src/lib/Bcfg2/settings.py src/sbin/bcfg2-crypt src/sbin/bcfg2-yum-helper testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestProbes.py testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestSEModules.py
* drop privs options added, works in CherryPyChris St. Pierre2012-10-041-1/+33
|
* fixed default SSL CA cert, which is optionalChris St. Pierre2012-10-031-1/+1
|
* set default paths for ssl certs/keys according to SELinux policyChris St. Pierre2012-10-031-3/+3
|
* made client runs abort on probe failure, added option to disable thatChris St. Pierre2012-09-281-1/+9
|
* deprecated YUM24 tool, renamed YUMng to YUM, RPMng to RPMChris St. Pierre2012-09-261-58/+72
|
* updated bcfg2.conf man pageChris St. Pierre2012-09-251-10/+0
|
* expanded pylint coverageChris St. Pierre2012-09-251-30/+72
|
* Allowing the assertion of a profile for a host to be supplied by the ↵Chris Brinker2012-09-191-1/+2
| | | | bcfg2.conf file. This is useful if you have a dynamic system and only the client has information on which profile to use.
* bcfg2-crypt: added -I option, made --stdout better, updated man pageChris St. Pierre2012-09-131-8/+9
|
* bcfg2-crypt: added --stdout optionChris St. Pierre2012-09-111-0/+6
|
* added server-side client metadata object cachingChris St. Pierre2012-09-051-12/+0
|