6 lines
99 B
Bash
6 lines
99 B
Bash
|
#! /bin/sh
|
||
|
|
||
|
if [ -e /conf/stack/robots.txt ]
|
||
|
then
|
||
|
cp /conf/stack/robots.txt /static/robots.txt
|
||
|
fi
|