12 lines
191 B
Python
12 lines
191 B
Python
import requests
|
|
|
|
from solar.core.log import log
|
|
|
|
|
|
def test(resource):
|
|
log.debug('Testing apache_puppet')
|
|
requests.get(
|
|
'http://%s:%s' % (resource.args['ip'].value, 80)
|
|
|
|
)
|