X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=bacula%2Fsrc%2Flib%2Frunscript.h;h=2adb2549e69f40260a9373723c4cef987ac0004e;hb=b6a1f7208143a51f07573fe986fcea297f90944b;hp=27b28d1e0e02382f457dad14e4221f311270a93d;hpb=78717f3f0a57f3174a176ac9319a1b2eb485e9c3;p=bacula%2Fbacula diff --git a/bacula/src/lib/runscript.h b/bacula/src/lib/runscript.h index 27b28d1e0e..2adb2549e6 100644 --- a/bacula/src/lib/runscript.h +++ b/bacula/src/lib/runscript.h @@ -1,36 +1,24 @@ /* Bacula® - The Network Backup Solution - Copyright (C) 2006-2008 Free Software Foundation Europe e.V. + Copyright (C) 2006-2014 Free Software Foundation Europe e.V. - The main author of Bacula is Kern Sibbald, with contributions from - many others, a complete list can be found in the file AUTHORS. - This program is Free Software; you can redistribute it and/or - modify it under the terms of version three of the GNU Affero General Public - License as published by the Free Software Foundation and included - in the file LICENSE. + The main author of Bacula is Kern Sibbald, with contributions from many + others, a complete list can be found in the file AUTHORS. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Affero General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. + You may use this file and others of this release according to the + license defined in the LICENSE file, which includes the Affero General + Public License, v3.0 ("AGPLv3") and some additional permissions and + terms pursuant to its AGPLv3 Section 7. Bacula® is a registered trademark of Kern Sibbald. - The licensor of Bacula is the Free Software Foundation Europe - (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich, - Switzerland, email:ftf@fsfeurope.org. */ /* * Bacula RUNSCRIPT Structure definition for FileDaemon and Director * Eric Bollengier May 2006 * Version $Id$ */ - + #ifndef __RUNSCRIPT_H_ #define __RUNSCRIPT_H_ 1 @@ -41,17 +29,17 @@ * * #define USE_RUNSCRIPT * #include "lib/runscript.h" - * + * * RUNSCRIPT *script = new_runscript(); * script->set_command("/bin/sleep 20"); * script->on_failure = true; * script->when = SCRIPT_After; - * + * * script->run("LabelBefore"); // the label must contain "Before" or "After" special keyword * free_runscript(script); */ -/* +/* * RUNSCRIPT->when can take following bit values: */ enum { @@ -64,7 +52,7 @@ enum { enum { SHELL_CMD = '|', - CONSOLE_CMD = '@' + CONSOLE_CMD = '@' }; /* @@ -97,13 +85,13 @@ public: }; /* create new RUNSCRIPT (set all value to 0) */ -RUNSCRIPT *new_runscript(); +RUNSCRIPT *new_runscript(); /* create new RUNSCRIPT from an other */ RUNSCRIPT *copy_runscript(RUNSCRIPT *src); /* launch each script from runscripts*/ -int run_scripts(JCR *jcr, alist *runscripts, const char *name); +int run_scripts(JCR *jcr, alist *runscripts, const char *name); /* free RUNSCRIPT (and all POOLMEM) */ void free_runscript(RUNSCRIPT *script);