Code

Cleaned up and documented patches.
[pkg-pnp4nagios.git] / debian / patches / adjust-template-path
1 Description: Install templates into /etc/ rather than /usr/share/.
2 Author: Sven Velt <sven@velt.de>
3 Forwarded: not-needed
5 --- a/sample-config/pnp/config.php.in
6 +++ b/sample-config/pnp/config.php.in
7 @@ -214,12 +214,12 @@
8  # Add your own template directories here
9  # First match wins!
10  #$conf['template_dirs'][] = '/usr/local/check_mk/pnp-templates';
11 -$conf['template_dirs'][] = '@datarootdir@/templates';
12 +$conf['template_dirs'][] = '@sysconfdir@/templates';
13  $conf['template_dirs'][] = '@datarootdir@/templates.dist';
14  
15  #
16  # Directory to search for special templates
17  #
18 -$conf['special_template_dir'] = '@datarootdir@/templates.special';
19 +$conf['special_template_dir'] = '@sysconfdir@/templates.special';
20  
21  ?>