6 lines
89 B
Bash
6 lines
89 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
if [ ! -f "/inn2/db/history" ]; then
|
||
|
|
cp -r /inn2/db-default/* /inn2/db
|
||
|
|
fi
|