Skip to content

Commit

Permalink
Merge pull request #65 from getsolus/add-config-file-explanation
Browse files Browse the repository at this point in the history
Explain the order of config file parsing for eopkg4
  • Loading branch information
ermo authored Jun 17, 2024
2 parents c96c120 + bc35802 commit 0e1b796
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions pisi/configfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,16 @@
# configuration file. Module also defines default values for
# configuration parameters.
#
# Configuration file is located in /etc/eopkg/eopkg.conf by default,
# having an INI like format like below.
# The configuration file is located in either one of the following locations:
#
# - /usr/share/defaults/eopkg/eopkg.conf
# - /usr/lib/$(current python)/site-packages/pisi/data/eopkg.conf
# - /etc/eopkg/eopkg.conf
#
# The config locations are searched in the order above and the last one found is used exclusively
# which means it overrides all previous files.
#
# It has an INI like format like shown below:
#
# [general]
# destinationdirectory = /
Expand Down

0 comments on commit 0e1b796

Please sign in to comment.