diff --git a/modules/rhizo_base/files/CGPconfig.php b/modules/rhizo_base/files/CGPconfig.php deleted file mode 100644 index eb9024f..0000000 --- a/modules/rhizo_base/files/CGPconfig.php +++ /dev/null @@ -1,110 +0,0 @@ - 'eth0', 't' => 'if_octets'); - -# default plugins time range -$CONFIG['time_range']['default'] = 86400; -$CONFIG['time_range']['uptime'] = 31536000; - -# show load averages and used memory on overview page -$CONFIG['showload'] = true; -$CONFIG['showmem'] = false; -$CONFIG['showtime'] = false; - -$CONFIG['term'] = array( - '1hour' => 3600, - '2hour' => 3600 * 2, - '8hour' => 3600 * 8, - 'day' => 86400, - 'week' => 86400 * 7, - 'month' => 86400 * 31, - 'quarter'=> 86400 * 31 * 3, - 'year' => 86400 * 365, -); - -# show graphs in bits or bytes -$CONFIG['network_datasize'] = 'bytes'; - -# "png", "svg", "canvas" or "hybrid" (canvas on detail page, png on the others) graphs -$CONFIG['graph_type'] = 'hybrid'; - -# For canvas graphs, use 'async' or 'sync' fetch method -$CONFIG['rrd_fetch_method'] = 'sync'; - -# use the negative X-axis in I/O graphs -$CONFIG['negative_io'] = false; - -# add XXth percentile line + legend to network graphs -# false = disabled; 95 = 95th percentile -$CONFIG['percentile'] = false; - -# create smooth graphs (rrdtool -E) -$CONFIG['graph_smooth'] = false; - -# draw min/max spikes in a lighter color in graphs with type default -$CONFIG['graph_minmax'] = false; - -# The URL that provides RRD files for the "canvas" graph type. Examples: -# 'rrd/{file}' is replaced by 'rrd/example.com/load/load.rrd' -# 'rrd.php?path={file_escaped}' becomes 'rrd.php?path=host%3Fload%3Fload.rrd' -$CONFIG['rrd_url'] = 'rrd.php?path={file_escaped}'; - -# browser cache time for the graphs (in seconds) -$CONFIG['cache'] = 90; - -# page refresh (in seconds) -$CONFIG['page_refresh'] = ''; - -# default width/height of the graphs -$CONFIG['width'] = 400; -$CONFIG['height'] = 175; -# default width/height of detailed graphs -$CONFIG['detail-width'] = 1000; -$CONFIG['detail-height'] = 450; -# max width/height of a graph (to prevent from OOM) -$CONFIG['max-width'] = $CONFIG['detail-width'] * 2; -$CONFIG['max-height'] = $CONFIG['detail-height'] * 2; - -# collectd's unix socket (unixsock plugin) -# enabled: 'unix:///var/run/collectd-unixsock' -# enabled (rrdcached): 'unix:///var/run/rrdcached.sock' -# disabled: NULL -$CONFIG['socket'] = NULL; - -# flush rrd data to disk using "collectd" (unixsock plugin) -# or a "rrdcached" server -$CONFIG['flush_type'] = 'collectd'; - -# system default timezone when not set -$CONFIG['default_timezone'] = 'UTC'; - - -# load local configuration -if (file_exists(dirname(__FILE__).'/config.local.php')) - include_once 'config.local.php'; diff --git a/modules/rhizo_base/manifests/init.pp b/modules/rhizo_base/manifests/init.pp index c9a054e..4320ad2 100644 --- a/modules/rhizo_base/manifests/init.pp +++ b/modules/rhizo_base/manifests/init.pp @@ -357,8 +357,9 @@ schedule { 'never': vcsrepo { '/var/www/html/CGP': schedule => 'onceday', ensure => latest, + revision => 'rhizo/tic', provider => git, - source => 'https://github.com/pommi/CGP.git', + source => 'https://gitlab.tic-ac.org/Rhizomatica/CGP.git', require => [ Package['git'] ], } @@ -382,12 +383,6 @@ schedule { 'never': require => File['/root/.ssh/bsc_dev'], } - file { '/var/www/html/CGP/conf/config.php': - source => 'puppet:///modules/rhizo_base/CGPconfig.php', - mode => '0644', - require => Vcsrepo['/var/www/html/CGP'], - } - file { '/root/collectd-hack': source => 'puppet:///modules/rhizo_base/collectd-hack', mode => '0750'