1 ##############################################################################
3 # Copyright (c) 2011 Vifib SARL and Contributors. All Rights Reserved.
5 # WARNING: This program as such is intended to be used by professional
6 # programmers who take the whole responsibility of assessing all potential
7 # consequences resulting from its eventual inadequacies and bugs
8 # End users who are looking for a ready-to-use solution with commercial
9 # guarantees and support are strongly adviced to contract a Free Software
12 # This program is Free Software; you can redistribute it and/or
13 # modify it under the terms of the GNU General Public License
14 # as published by the Free Software Foundation; either version 3
15 # of the License, or (at your option) any later version.
17 # This program is distributed in the hope that it will be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # GNU General Public License for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with this program; if not, write to the Free Software
24 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 ##############################################################################
27 from slapos
.recipe
.librecipe
import GenericBaseRecipe
30 class Recipe(GenericBaseRecipe
):
32 Create script that will check if content at "url" is available
33 (e.g page has a link to itself).
37 url
= self
.options
['url'].strip()
40 'shell_path': self
.options
['dash_path'],
41 'curl_path': self
.options
['curl_path'],
42 'match': self
.options
.get('match', url
)
45 # XXX-Cedric in this script, curl won't check certificate
46 promise
= self
.createExecutable(
48 self
.substituteTemplate(self
.getTemplateFilename('check_page_content.in'), config
)