10 lines
242 B
Bash
10 lines
242 B
Bash
#!/bin/bash
|
|
|
|
echo '{"progress": 0, "message": "This server is up!!!", "error":0, "code_error": 0, "sucks": 1}'
|
|
|
|
sleep 1
|
|
|
|
echo '{"progress": 100, "message": "Finishing scripts without errors", "error":0, "code_error": 0, "sucks": 1}'
|
|
|
|
exit 0
|
|
|