]> git.sur5r.net Git - bacula/bacula/commitdiff
Doc updates + fix Win32 build
authorKern Sibbald <kern@sibbald.com>
Wed, 20 Apr 2005 16:16:52 +0000 (16:16 +0000)
committerKern Sibbald <kern@sibbald.com>
Wed, 20 Apr 2005 16:16:52 +0000 (16:16 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@1944 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/.cvsignore
bacula/examples/python/.cvsignore
bacula/examples/python/EndJob.py [deleted file]
bacula/examples/python/NewVolume.py [deleted file]
bacula/examples/python/StartJob.py [deleted file]
bacula/src/version.h

index 02bb60a03e3587cbfe05374832cb53c37325ff23..1dbf598cbf10c61b15602d754fe3c7c2756489ea 100644 (file)
@@ -52,3 +52,9 @@ run_clean
 run_two_broken
 run_two
 run_clean_tape
+newdb
+kerns-nopython-conf
+newtape
+time.py
+time.pyc
+test.out
index c294236e0e5d42c150996bf30386d3903bbb5e2c..83c0bbc9b085984284ce5c1f283916f8a18ad204 100644 (file)
@@ -1,3 +1,3 @@
-EndJob.pyc
-NewVolume.pyc
-StartJob.pyc
+DirStartUp.pyc
+FDStartUp.pyc
+SDStartUp.pyc
diff --git a/bacula/examples/python/EndJob.py b/bacula/examples/python/EndJob.py
deleted file mode 100644 (file)
index f32df1f..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-import bacula
-
-def EndJob(jcr):
-     jobid = jcr.get("JobId")
-     client = jcr.get("Client") 
-     jcr.set(JobReport="Python EndJob output: JobId=%d Client=%s.\n" % (jobid, client))
-     if (jobid < 2) :
-        startid = bacula.run("run kernsave")
-        print "Python started new Job: jobid=", startid
-
-     return 1
diff --git a/bacula/examples/python/NewVolume.py b/bacula/examples/python/NewVolume.py
deleted file mode 100644 (file)
index 963fcfd..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-import bacula
-
-def NewVolume(jcr):
-    jobid = jcr.get("JobId")
-    print "JobId=", jobid
-    client = jcr.get("Client") 
-    print "Client=" + client
-    numvol = jcr.get("NumVols");
-    print "NumVols=", numvol
-    jcr.set(JobReport="Python New Volume set for Job.\n") 
-    jcr.set(VolumeName="TestA-001")
-    return 1
diff --git a/bacula/examples/python/StartJob.py b/bacula/examples/python/StartJob.py
deleted file mode 100644 (file)
index 89559bf..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-import bacula
-
-def StartJob(jcr):
-    jobid = jcr.get("JobId")
-    client = jcr.get("Client")
-    numvols = jcr.get("NumVols") 
-    jcr.set(JobReport="Python StartJob: JobId=%d Client=%s NumVols=%d\n" % (jobid,client,numvols))
-    return 1
index f6bdf3001f9ce2bcb768e99ee18260733adba83c..5eba91a939b796b293a63a09a80d93765a191080 100644 (file)
@@ -1,8 +1,8 @@
 /* */
 #undef  VERSION
-#define VERSION "1.37.13"
-#define BDATE   "19 April 2005"
-#define LSMDATE "19Apr05"
+#define VERSION "1.37.14"
+#define BDATE   "20 April 2005"
+#define LSMDATE "20Apr05"
 
 /* Debug flags */
 #undef  DEBUG