diff options
Diffstat (limited to 'etc')
-rw-r--r-- | etc/mirror/deploy.conf | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/etc/mirror/deploy.conf b/etc/mirror/deploy.conf index 6a9a49c..6dba18d 100644 --- a/etc/mirror/deploy.conf +++ b/etc/mirror/deploy.conf @@ -21,15 +21,19 @@ [input] type=input location=/mnt/public/packages -packagedir=${inputlocation}/${packagename} +packagedir=${location}/${packagename} [smith122rpm] # type may either be input or destination. Input is used only in the [input] zone. Everything else is a destination. type=destination -# flavor is what type of package to send. Options include centos, redhat, ubuntu, debian, tar, tarball -# default flavor=tarball -flavor=centos +# flavor is what type of package to send. Options include: +# * rpm centos redhat fedora korora +# * deb ubuntu debian devuan +# * tar tarball +# * freebsd bsd +# default: flavor=tarball +flavor=rpm # base location. Required to function. location=/mnt/public/www/smith122/repo/rpm @@ -38,10 +42,6 @@ location=/mnt/public/www/smith122/repo/rpm # default packagedir=<undefined> packagedir=${location}/${packagename} -# If link is yes, it will make a symlink to the master tarball -# default link=no -#link=yes - # If updatescript is executable, if the zone is updated this command will be called # default updatescript=<undefined> updatescript=/mnt/public/www/smith122/repo/rpm/update-smith122rpm.sh @@ -59,3 +59,10 @@ flavor=tarball location=/mnt/public/www/smith122/repo/tar updatescript=/mnt/public/www/smith122/repo/tar/update-smith122tar.sh packagedir=${location}/${packagename} + +[smith122freebsd] +type=destination +flavor=freebsd +location=/mnt/public/www/smith122/repo/freebsd +updatescript=/mnt/public/www/smith122/repo/freebsd/update-smith122freebsd.sh +packagedir=${location}/${packagename} |