
Ignore-this: c85084f1bcd4e1c94dbb6e56f1f54c3e darcs-hash:20090329195555-ffbb2-ede5492713c59ff52c18a878715a59b8d77dd6dc.gz
11 lines
284 B
Bash
Executable file
11 lines
284 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Test du liage des plugins par link_plugins.py
|
|
# Auteur : Nicolas Dandrimont
|
|
|
|
TEMPDIR=$(python -c 'import tempfile; print tempfile.mkdtemp()')
|
|
python /usr/scripts/munin/scripts/link_plugins.py -d $TEMPDIR
|
|
|
|
diff -u <(ls /etc/munin/plugins) <(ls $TEMPDIR)
|
|
|
|
rm -r $TEMPDIR
|