-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.php
executable file
·36 lines (36 loc) · 1.03 KB
/
setup.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/php
<?php
/**
* This script adds links to /etc/munin/plugins/
* @author Yannick Warnier <[email protected]>
*/
/**
* Init
*/
$cwd = __DIR__;
$dest = '/etc/munin/plugins';
$cmd = 'ln -s %s %s';
@touch($dest.'/_testchamiloplugin');
if (!is_file($dest.'/_testchamiloplugin')) {
die('Cannot write in '.$dest."\n");
}
if (is_file($cwd.'/exclusions.dist.conf') && !is_file($cwd.'/exclusions.conf')) {
@copy($cwd.'/exclusions.dist.conf', $cwd.'/exclusions.conf');
}
$list = scandir(__DIR__);
/**
* Add links
*/
foreach ($list as $entry) {
if (substr($entry, 0, 1) == '.' or substr($entry, -10) != '_proxy.php') {
continue;
}
// transform name
$symlink = preg_replace('/^get_/', 'chamilo-', $entry);
$symlink = preg_replace('/_/', '-', $symlink);
$symlink = preg_replace('/-munin-proxy.php$/', '', $symlink);
exec('ln -s '.__DIR__.'/'.$entry.' '.$dest.'/'.$symlink);
//echo $entry."-> $symlink\n";
}
unlink($dest.'/_testchamiloplugin');
echo "Links successfully created in $dest.\n";