forked from sig_core/toolkit
4 lines
169 B
Bash
Executable file
4 lines
169 B
Bash
Executable file
#!/bin/bash
|
|
r_log "httpd" "Test basic https functionality"
|
|
curl -H 'Accept-Language: en' -ks https://localhost/ | grep "Test Page" > /dev/null 2>&1
|
|
r_checkExitStatus $?
|