5 lines
103 B
Bash
5 lines
103 B
Bash
|
#!/bin/sh
|
||
|
hostname=`hostname -f`
|
||
|
sed -i "s/XXX/${hostname}/" /var/www/index.html
|
||
|
/bin/asmttpd /var/www
|