mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
15 lines
451 B
Bash
Executable file
15 lines
451 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Move the dict stuff out to its own dist
|
|
if [ -d ${RD}/trees/bin/usr/share/dict ]; then
|
|
tar -cf - -C ${RD}/trees/bin/usr/share/dict . |
|
|
tar -xf - -C ${RD}/trees/dict/usr/share/dict &&
|
|
rm -rf ${RD}/trees/bin/usr/share/dict;
|
|
fi
|
|
|
|
for i in airport birthtoken flowers inter.phone na.phone zipcodes; do
|
|
if [ -f ${RD}/trees/bin/usr/share/misc/$i ]; then
|
|
mv ${RD}/trees/bin/usr/share/misc/$i \
|
|
${RD}/trees/dict/usr/share/misc;
|
|
fi;
|
|
done
|