Compare commits

..

No commits in common. "52cb8459367df84d17a33c9886d3dc9fa96996ad" and "b3563fb24e504dc2664cd4fd51336be245fd4d02" have entirely different histories.

2 changed files with 5 additions and 8 deletions

View File

@ -46,10 +46,7 @@
class odoo(
$version = "wmde8.0",
$source = 'https://srcsrv.wikimedia.de/WMDE/odoo.git'
# $source = 'https://www.github.com/odoo/odoo.git'
$version = "8.0"
)
inherits odoo::params {
@ -87,7 +84,7 @@ inherits odoo::params {
vcsrepo { "$odoo_systemdir":
ensure => present,
provider => git,
source => $source,
source => 'https://www.github.com/odoo/odoo.git',
revision => $version,
# submodules => false,
depth => 1,

View File

@ -20,13 +20,13 @@ class odoo::params{
"python",
"devel/py-pip",
"git",
"postgresql96-client",
"postgresql93-client",
"gcc",
"libxslt",
"openldap-client",
]
$pip_cmd = "/usr/local/bin/pip-2.7"
$preenv = "export CC=gcc && export C_INCLUDE_PATH=/usr/local/include/libxml2:/usr/local/include/sasl:/usr/local/include"
$pip_cmd = "/usr/local/bin/pip"
$preenv = "export CC=gcc && export C_INCLUDE_PATH=/usr/local/include/libxml2:/usr/local/include/sasl"
$conffile = "/usr/local/etc/odoo-server.conf"
}