]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/lib/runscript.h
Backport from BEE
[bacula/bacula] / bacula / src / lib / runscript.h
index 27b28d1e0e02382f457dad14e4221f311270a93d..2adb2549e69f40260a9373723c4cef987ac0004e 100644 (file)
@@ -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
  *
  * #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);