diff options
author | Devan Franchini <twitch153@gentoo.org> | 2015-09-05 19:29:50 -0400 |
---|---|---|
committer | Devan Franchini <twitch153@gentoo.org> | 2015-09-05 19:29:50 -0400 |
commit | 6177908118a2f7fd1765d5561177c8b1a2dc7061 (patch) | |
tree | 89093d7605724c2d6dc9287fb1048ad8de6c02a9 | |
parent | api.py: Corrects typo in enable/disable_repo functions() (diff) | |
download | layman-6177908118a2f7fd1765d5561177c8b1a2dc7061.tar.gz layman-6177908118a2f7fd1765d5561177c8b1a2dc7061.tar.bz2 layman-6177908118a2f7fd1765d5561177c8b1a2dc7061.zip |
Adds documentation for multiple database type support
-rw-r--r-- | doc/layman.8.txt | 8 | ||||
-rw-r--r-- | etc/layman.cfg | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/doc/layman.8.txt b/doc/layman.8.txt index cb391f1..4152566 100644 --- a/doc/layman.8.txt +++ b/doc/layman.8.txt @@ -287,6 +287,14 @@ git_postsync:: These are a space separated list of commands that are run after each add, sync operation if they are defined. +DATABASE CONFIGURATION OPTIONS +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +*layman* now supports multiple database types for layman's install file. The +options allowed include: *xml*, *json*, and *sqlite*. While xml is the default +database type you may migrate from one database type to the other using the +*layman-updater* tool while supplying the *-m* flag, followed by the database +type you'd like to use. + REPO CONFIGURATION OPTIONS ~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/etc/layman.cfg b/etc/layman.cfg index e1caa33..c6038ee 100644 --- a/etc/layman.cfg +++ b/etc/layman.cfg @@ -68,7 +68,7 @@ conf_type : repos.conf #### Database Config Options #### #### COMING SOON #### #----------------------------------------------------------- # Database types used by layman, only one should be specified. -# (xml, json) +# (xml, json, sqlite) #db_type : xml #----------------------------------------------------------- |