mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2026-03-14 21:10:11 +01:00
18 lines
348 B
Bash
18 lines
348 B
Bash
#!/bin/sh
|
|
|
|
UNIFIED_PATH="/etc/bbfdm/plugins/"
|
|
|
|
# Link JSON plugins
|
|
for f in `ls -1 /etc/bbfdm/json/*.json`; do
|
|
echo "# BBFDM JSON plugin ${f} not aligned #"
|
|
ln -s ${f} "${UNIFIED_PATH}"
|
|
done
|
|
|
|
# Link DotSo plugins
|
|
for f in `ls -1 /usr/lib/bbfdm/*.so`; do
|
|
echo "# BBFDM DotSO plugin ${f} not aligned #"
|
|
ln -s ${f} "${UNIFIED_PATH}"
|
|
done
|
|
|
|
exit 0
|
|
|