mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2025-12-10 07:44:39 +01:00
16 lines
279 B
Bash
Executable file
16 lines
279 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "preparation script"
|
|
pwd
|
|
|
|
# link '/bin/sh' to bash instead of dash
|
|
ln -sf bash /bin/sh
|
|
|
|
cp -r ./test/files/etc/* /etc/
|
|
cp -r ./test/files/usr/* /usr/
|
|
cp -r ./test/files/var/* /var/
|
|
cp -r ./test/files/tmp/* /tmp/
|
|
cp -r ./test/files/lib/* /lib/
|
|
|
|
ls /etc/config/
|
|
|