6 lines
99 B
Bash
6 lines
99 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
if [ ! -d "/inn2/spool/articles" ]; then
|
||
|
|
cp -r /inn2/spool-default/* /inn2/spool
|
||
|
|
fi
|