mirror of https://github.com/OpenIPC/composer.git
15 lines
288 B
Bash
Executable File
15 lines
288 B
Bash
Executable File
#!/bin/sh
|
|
echo "HTTP/1.1 302 Moved Temporarily
|
|
Date: $(TZ=GMT0 date +'%a, %d %b %Y %T %Z')
|
|
Server: $SERVER_SOFTWARE
|
|
Content-type: text/html; charset=UTF-8
|
|
Cache-Control: no-store
|
|
Pragma: no-cache
|
|
Location: /wait.html
|
|
Status: 302 Moved Temporarily
|
|
"
|
|
|
|
sleep 5
|
|
umount -a -t nfs -l
|
|
reboot -f
|