]> git.sur5r.net Git - bacula/bacula/commitdiff
Tweak more copyrights
authorKern Sibbald <kern@sibbald.com>
Sun, 30 Nov 2014 11:25:03 +0000 (12:25 +0100)
committerKern Sibbald <kern@sibbald.com>
Sun, 30 Nov 2014 11:29:46 +0000 (12:29 +0100)
bacula/autoconf/Make.common.in
bacula/autoconf/bacula-macros/db.m4
bacula/scripts/Makefile.in
bacula/scripts/mtx-changer.in

index 035fe8d7a719bb5f7009da13c4d9c49dd9a831c3..ac6e30dc500d51767294c324731ff80e30cbaeb9 100644 (file)
@@ -1,4 +1,7 @@
 #
+# Author: Kern Sibbald
+# License: LGPLv3
+#
 # This file is pulled in by all the Unix Bacula Makefiles
 #   so it has all the "common" definitions
 #
index 1afdee32cc5fa670b7729589765d4d593676144f..3250744087b0fc133044bc79483e1a482fbea7df 100644 (file)
@@ -1,3 +1,7 @@
+#
+# Author: Kern Sibbald
+# License: LGPLv3
+#
 AC_DEFUN([BA_CHECK_DBI_DB],
 [
 AC_MSG_CHECKING(for DBI support)
index 6d9503c0b9b6337bcd976b3901fce3c2951347af..8a0949326ed71e5bae169fa9e77259149cbf2756 100755 (executable)
@@ -1,5 +1,7 @@
-# 
-# 
+#
+# Author: Kern Sibbald
+# License: LGPLv3
+#
 @MCOMMON@
 
 working_dir=@working_dir@
index ad9c0cacf2f9ce9b9124c9cdcc4cca78f57732d2..6a40f72d396642c1401a5a71ee891e92088b88ad 100644 (file)
 #  others, a complete list can be found in the file AUTHORS.
 #
 #  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.
+#  license defined in the LICENSE file, which includes the GNU Lesser
+#  General Public License, v3.0 ("LGPLv3") and some additional permissions and
+#  terms pursuant to its LGPLv3 Section 7.
 #
 #  Bacula® is a registered trademark of Kern Sibbald.
 #
-#
 #  If you set in your Device resource
 #
 #  Changer Command = "path-to-this-script/mtx-changer %c %o %S %a %d"
@@ -28,7 +27,7 @@
 #    in come cases, not all are used.
 #
 #  mtx-changer "changer-device" "command" "slot" "archive-device" "drive-index"
-#                  $1              $2       $3        $4               $5
+#                 $1              $2       $3        $4               $5
 #
 #  for example:
 #
 #   is /dev/nst0.
 #
 #  The commands are:
-#      Command            Function
-#      unload             unload a given slot
-#      load               load a given slot
-#      loaded             which slot is loaded?
-#      list               list Volume names (requires barcode reader)
-#      slots              how many slots total?
-#      listall            list all info
+#      Command           Function
+#      unload            unload a given slot
+#      load              load a given slot
+#      loaded            which slot is loaded?
+#      list              list Volume names (requires barcode reader)
+#      slots             how many slots total?
+#      listall           list all info
 #      transfer
 #
 #  Slots are numbered from 1 ...
@@ -80,7 +79,7 @@ fi
 dbgfile="@working_dir@/mtx.log"
 debug() {
     if test -f $dbgfile; then
-        echo "`date +\"%Y%m%d-%H:%M:%S\"` $*" >> $dbgfile
+       echo "`date +\"%Y%m%d-%H:%M:%S\"` $*" >> $dbgfile
     fi
 }
 
@@ -93,8 +92,8 @@ make_temp_file() {
   if test x${TMPFILE} = x; then
      TMPFILE="@working_dir@/mtx.$$"
      if test -f ${TMPFILE}; then
-        echo "ERROR: Temp file security problem on: ${TMPFILE}"
-        exit 1
+       echo "ERROR: Temp file security problem on: ${TMPFILE}"
+       exit 1
      fi
   fi
 }
@@ -115,8 +114,8 @@ make_err_file() {
   if test x${ERRFILE} = x; then
      ERRFILE="@working_dir@/mtx.err.$$"
      if test -f ${ERRFILE}; then
-        echo "ERROR: Temp file security problem on: ${ERRFILE}"
-        exit 1
+       echo "ERROR: Temp file security problem on: ${ERRFILE}"
+       exit 1
      fi
   fi
 }
@@ -151,14 +150,14 @@ check_parm_count() {
     pCount=$1
     pCountNeed=$2
     if test $pCount -lt $pCountNeed; then
-        echo "ERROR: usage: mtx-changer ctl-device command [slot archive-device drive-index]"
-        echo "  Insufficient number of arguments given."
-        if test $pCount -lt 2; then
-            echo "  Mimimum usage is first two arguments ..."
-        else
-            echo "  Command expected $pCountNeed arguments"
-        fi
-        exit 1
+       echo "ERROR: usage: mtx-changer ctl-device command [slot archive-device drive-index]"
+       echo "  Insufficient number of arguments given."
+       if test $pCount -lt 2; then
+           echo "  Mimimum usage is first two arguments ..."
+       else
+           echo "  Command expected $pCountNeed arguments"
+       fi
+       exit 1
     fi
 }
 
@@ -167,17 +166,17 @@ check_parm_count() {
 #
 case $2 in
     list|listall)
-        check_parm_count $# 2
-        ;;
+       check_parm_count $# 2
+       ;;
     slots)
-        check_parm_count $# 2
-        ;;
+       check_parm_count $# 2
+       ;;
     transfer)
-        check_parm_count $# 4
-        ;;
+       check_parm_count $# 4
+       ;;
     *)
-        check_parm_count $# 5
-        ;;
+       check_parm_count $# 5
+       ;;
 esac
 
 
@@ -195,10 +194,10 @@ case $cmd in
       debug "Doing mtx -f $ctl unload $slot $drive"
 
       if test ${offline} -eq 1 ; then
-        mt -f $device offline
+       mt -f $device offline
       fi
       if test ${offline_sleep} -ne 0 ; then
-        sleep ${offline_sleep}
+       sleep ${offline_sleep}
       fi
       make_err_file
       ${MTX} -f $ctl unload $slot $drive 2>${ERRFILE}
@@ -214,7 +213,7 @@ case $cmd in
       ${MTX} -f $ctl load $slot $drive 2>${ERRFILE}
       rtn=$?
       if test ${load_sleep} -ne 0 ; then
-        sleep ${load_sleep}
+       sleep ${load_sleep}
       fi
       wait_for_drive $device
       cat ${ERRFILE}
@@ -226,14 +225,14 @@ case $cmd in
       debug "Doing mtx -f $ctl -- to list volumes"
       make_temp_file
       if test ${inventory} -ne 0 ; then
-        ${MTX} -f $ctl inventory
+       ${MTX} -f $ctl inventory
       fi
       ${MTX} -f $ctl status >${TMPFILE}
       rtn=$?
       if test ${vxa_packetloader} -ne 0 ; then
-        cat ${TMPFILE} | grep " *Storage Element [0-9]*:.*Full" | sed "s/ Storage Element //" | sed "s/Full :VolumeTag=//"
+       cat ${TMPFILE} | grep " *Storage Element [0-9]*:.*Full" | sed "s/ Storage Element //" | sed "s/Full :VolumeTag=//"
       else
-        cat ${TMPFILE} | grep " Storage Element [0-9]*:.*Full" | awk "{print \$3 \$4}" | sed "s/Full *\(:VolumeTag=\)*//"
+       cat ${TMPFILE} | grep " Storage Element [0-9]*:.*Full" | awk "{print \$3 \$4}" | sed "s/Full *\(:VolumeTag=\)*//"
       fi
       cat ${TMPFILE} | grep "^Data Transfer Element [0-9]*:Full (Storage Element [0-9]" | awk '{printf "%s:%s\n",$7,$10}'
       rm -f ${TMPFILE} >/dev/null 2>&1
@@ -241,25 +240,25 @@ case $cmd in
       ;;
 
    listall)
-#  Drive content:         D:Drive num:F:Slot loaded:Volume Name
+#  Drive content:        D:Drive num:F:Slot loaded:Volume Name
 #  D:0:F:2:vol2        or D:Drive num:E
 #  D:1:F:42:vol42
 #  D:3:E
 #
 #  Slot content:
-#  S:1:F:vol1             S:Slot num:F:Volume Name
-#  S:2:E               or S:Slot num:E
+#  S:1:F:vol1            S:Slot num:F:Volume Name
+#  S:2:E              or S:Slot num:E
 #  S:3:F:vol4
 #
 #  Import/Export tray slots:
-#  I:10:F:vol10           I:Slot num:F:Volume Name
-#  I:11:E              or I:Slot num:E
+#  I:10:F:vol10          I:Slot num:F:Volume Name
+#  I:11:E             or I:Slot num:E
 #  I:12:F:vol40
 
       debug "Doing mtx -f $ctl -- to list all"
       make_temp_file
       if test ${inventory} -ne 0 ; then
-        ${MTX} -f $ctl inventory
+       ${MTX} -f $ctl inventory
       fi
       ${MTX} -f $ctl status >${TMPFILE}
       rtn=$?