diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-01-12 18:29:59 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-01-12 18:29:59 +0000 |
commit | 5f057cf540b6946a53ee76b9bf8e0c2cf82bdc41 (patch) | |
tree | 0fe3ed6af0dbe232fa359933d70c4f7cdb4619fa /conf | |
parent | 90815cbad3c49fb2e39108e43019fd6901e8f71b (diff) | |
download | simplepkg-5f057cf540b6946a53ee76b9bf8e0c2cf82bdc41.tar.gz simplepkg-5f057cf540b6946a53ee76b9bf8e0c2cf82bdc41.tar.bz2 |
simplepkg.conf: updated
simplaret:
- added DOWNLOAD_EVEN_APPLIED_PATCHES
- logic fix in simplaret_search_and_download_patch
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@99 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'conf')
-rw-r--r-- | conf/simplepkg.conf.new | 58 |
1 files changed, 47 insertions, 11 deletions
diff --git a/conf/simplepkg.conf.new b/conf/simplepkg.conf.new index 5d01f59..b0117e5 100644 --- a/conf/simplepkg.conf.new +++ b/conf/simplepkg.conf.new @@ -1,17 +1,53 @@ +# # /etc/simplepkg/simplepkg.conf -JAIL_ROOT="/vservers" # where jails are placed -SIMPLARET="simplaret" # package grabber program (can be swaret if you have it installed) -SIMPLARET_CLEAN="1" # clean package cache before installation -SIMPLARET_DELETE_DOWN="1" # clean package cache after the installation -SIMPLARET_UPDATE="0" # issue an simplaret --update before install the jail -SIMPLARET_PURGE_WEEKS="3" # delete packages older than N weeks from the cache -SIMPLARET_DELETE_DURING="0" # delete each package rigth after its installation -PATCHES_DIR="/var/simplaret/patches" # where patches are placed -DEFAULT_ARCH="i386" -DEFAULT_VERSION="10.2" +# + +# default architecture: set this option if you dont want simplepkg +# to use the value from /etc/slackware-version +# DEFAULT_ARCH="i386" + +# default version: set this option if you dont want simplepkg +# to use the value from /etc/slackware-version +# DEFAULT_VERSION="11.0" + +# where jails are placed +JAIL_ROOT="/vservers" + +# package grabber program (can be swaret if you have it installed) +# just change to swaret if you know what you're doing +SIMPLARET="simplaret" + +# whether to clean package cache before installation +SIMPLARET_CLEAN="1" + +# whether clean package cache after the installation +SIMPLARET_DELETE_DOWN="1" + +# whether issue an simplaret --update before install the jail +SIMPLARET_UPDATE="0" + +# delete packages older than N weeks from the cache +SIMPLARET_PURGE_WEEKS="3" + +# whether delete each package rigth after its installation +SIMPLARET_DELETE_DURING="0" + +# where patches are placed +PATCHES_DIR="/var/simplaret/patches" + +# place to store your packages STORAGE="/var/simplaret/packages" + +# whether to use passive ftp transfers PASSIVE_FTP="1" -ROOT_PRIORITY="patches slackware extra testing pasture" # ROOT repository package priority + +# ROOT repository package priority +ROOT_PRIORITY="patches slackware extra testing pasture" + +# Enabling this option (i.e, setting to 1), simplaret will donwload even +# already applied patches, a good option when you plan to keep local +# copies of all needed patches for your system +DOWNLOAD_EVEN_APPLIED_PATCHES="0" # Enabling this option, jail-upgrade will look at your # standard repositories for new packages; if it find a package |