]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/ua_run.c
Some Win32 fixes
[bacula/bacula] / bacula / src / dird / ua_run.c
1 /*
2  *
3  *   Bacula Director -- Run Command
4  *
5  *     Kern Sibbald, December MMI
6  *
7  *   Version $Id$
8  */
9
10 /*
11    Copyright (C) 2001-2004 Kern Sibbald and John Walker
12
13    This program is free software; you can redistribute it and/or
14    modify it under the terms of the GNU General Public License as
15    published by the Free Software Foundation; either version 2 of
16    the License, or (at your option) any later version.
17
18    This program is distributed in the hope that it will be useful,
19    but WITHOUT ANY WARRANTY; without even the implied warranty of
20    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21    General Public License for more details.
22
23    You should have received a copy of the GNU General Public
24    License along with this program; if not, write to the Free
25    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
26    MA 02111-1307, USA.
27
28  */
29
30 #include "bacula.h"
31 #include "dird.h"
32
33 /* Imported subroutines */
34
35 /* Imported variables */
36 extern struct s_kw ReplaceOptions[];
37
38 /*
39  * For Backup and Verify Jobs
40  *     run [job=]<job-name> level=<level-name>
41  *
42  * For Restore Jobs
43  *     run <job-name> jobid=nn
44  *
45  */
46 int run_cmd(UAContext *ua, const char *cmd)
47 {
48    JCR *jcr;
49    char *job_name, *level_name, *jid, *store_name, *pool_name;
50    char *where, *fileset_name, *client_name, *bootstrap;
51    const char *replace;
52    char *when, *verify_job_name;
53    int Priority = 0;
54    int i, j, opt, files = 0;
55    bool kw_ok;
56    JOB *job = NULL;
57    JOB *verify_job = NULL;
58    STORE *store = NULL;
59    CLIENT *client = NULL;
60    FILESET *fileset = NULL;
61    POOL *pool = NULL;
62    static const char *kw[] = {        /* command line arguments */
63       N_("job"),                      /*  Used in a switch() */
64       N_("jobid"),                    /* 1 */
65       N_("client"),                   /* 2 */
66       N_("fd"), 
67       N_("fileset"),                  /* 4 */
68       N_("level"),                    /* 5 */
69       N_("storage"),                  /* 6 */
70       N_("sd"),                       /* 7 */
71       N_("pool"),                     /* 8 */
72       N_("where"),                    /* 9 */
73       N_("bootstrap"),                /* 10 */
74       N_("replace"),                  /* 11 */
75       N_("when"),                     /* 12 */
76       N_("priority"),                 /* 13 */
77       N_("yes"),          /* 14 -- if you change this change YES_POS too */
78       N_("verifyjob"),                /* 15 */
79       N_("files"),                    /* 16 number of files to restore */
80       NULL};
81
82 #define YES_POS 14
83
84    if (!open_db(ua)) {
85       return 1;
86    }
87
88    job_name = NULL;
89    level_name = NULL;
90    jid = NULL;
91    store_name = NULL;
92    pool_name = NULL;
93    where = NULL;
94    when = NULL;
95    client_name = NULL;
96    fileset_name = NULL;
97    bootstrap = NULL;
98    replace = NULL;
99    verify_job_name = NULL;
100
101    for (i=1; i<ua->argc; i++) {
102       Dmsg2(200, "Doing arg %d = %s\n", i, ua->argk[i]);
103       kw_ok = false;
104       /* Keep looking until we find a good keyword */
105       for (j=0; !kw_ok && kw[j]; j++) {
106          if (strcasecmp(ua->argk[i], _(kw[j])) == 0) {
107             /* Note, yes and run have no value, so do not err */
108             if (!ua->argv[i] && j != YES_POS /*yes*/) {  
109                bsendmsg(ua, _("Value missing for keyword %s\n"), ua->argk[i]);
110                return 1;
111             }
112             Dmsg1(200, "Got keyword=%s\n", kw[j]);
113             switch (j) {
114             case 0: /* job */
115                if (job_name) {
116                   bsendmsg(ua, _("Job name specified twice.\n"));
117                   return 1;
118                }
119                job_name = ua->argv[i];
120                kw_ok = true;
121                break;
122             case 1: /* JobId */
123                if (jid) {
124                   bsendmsg(ua, _("JobId specified twice.\n"));
125                   return 1;
126                }
127                jid = ua->argv[i];
128                kw_ok = true;
129                break;
130             case 2: /* client */
131             case 3: /* fd */
132                if (client_name) {
133                   bsendmsg(ua, _("Client specified twice.\n"));
134                   return 1;
135                }
136                client_name = ua->argv[i];
137                kw_ok = true;
138                break;
139             case 4: /* fileset */
140                if (fileset_name) {
141                   bsendmsg(ua, _("FileSet specified twice.\n"));
142                   return 1;
143                }
144                fileset_name = ua->argv[i];
145                kw_ok = true;
146                break;
147             case 5: /* level */
148                if (level_name) {
149                   bsendmsg(ua, _("Level specified twice.\n"));
150                   return 1;
151                }
152                level_name = ua->argv[i];
153                kw_ok = true;
154                break;
155             case 6: /* storage */
156             case 7: /* sd */
157                if (store_name) {
158                   bsendmsg(ua, _("Storage specified twice.\n"));
159                   return 1;
160                }
161                store_name = ua->argv[i];
162                kw_ok = true;
163                break;
164             case 8: /* pool */
165                if (pool_name) {
166                   bsendmsg(ua, _("Pool specified twice.\n"));
167                   return 1;
168                }
169                pool_name = ua->argv[i];
170                kw_ok = true;
171                break;
172             case 9: /* where */
173                if (where) {
174                   bsendmsg(ua, _("Where specified twice.\n"));
175                   return 1;
176                }
177                where = ua->argv[i];
178                kw_ok = true;
179                break;
180             case 10: /* bootstrap */
181                if (bootstrap) {
182                   bsendmsg(ua, _("Bootstrap specified twice.\n"));
183                   return 1;
184                }
185                bootstrap = ua->argv[i];
186                kw_ok = true;
187                break;
188             case 11: /* replace */
189                if (replace) {
190                   bsendmsg(ua, _("Replace specified twice.\n"));
191                   return 1;
192                }
193                replace = ua->argv[i];
194                kw_ok = true;
195                break;
196             case 12: /* When */
197                if (when) {
198                   bsendmsg(ua, _("When specified twice.\n"));
199                   return 1;
200                }
201                when = ua->argv[i];
202                kw_ok = true;
203                break;
204             case 13:  /* Priority */
205                if (Priority) {
206                   bsendmsg(ua, _("Priority specified twice.\n"));
207                   return 1;
208                }
209                Priority = atoi(ua->argv[i]);
210                if (Priority <= 0) {
211                   bsendmsg(ua, _("Priority must be positive nonzero setting it to 10.\n"));
212                   Priority = 10;
213                }
214                kw_ok = true;
215                break;
216             case 14: /* yes */
217                kw_ok = true;
218                break;
219             case 15: /* Verify Job */
220                if (verify_job_name) {
221                   bsendmsg(ua, _("Verify Job specified twice.\n"));
222                   return 1;
223                }
224                verify_job_name = ua->argv[i];
225                kw_ok = true;
226                break;
227             case 16: /* files */
228                files = atoi(ua->argv[i]);
229                kw_ok = true;
230                break;
231
232             default:
233                break;
234             }
235          } /* end strcase compare */
236       } /* end keyword loop */
237       /*
238        * End of keyword for loop -- if not found, we got a bogus keyword
239        */
240       if (!kw_ok) {
241          Dmsg1(200, "%s not found\n", ua->argk[i]);
242          /*
243           * Special case for Job Name, it can be the first
244           * keyword that has no value.
245           */
246          if (!job_name && !ua->argv[i]) {
247             job_name = ua->argk[i];   /* use keyword as job name */
248             Dmsg1(200, "Set jobname=%s\n", job_name);
249          } else {
250             bsendmsg(ua, _("Invalid keyword: %s\n"), ua->argk[i]);
251             return 1;
252          }
253       }
254    } /* end argc loop */
255              
256    Dmsg0(200, "Done scan.\n");
257
258    if (job_name) {
259       /* Find Job */
260       job = (JOB *)GetResWithName(R_JOB, job_name);
261       if (!job) {
262          if (*job_name != 0) {
263             bsendmsg(ua, _("Job \"%s\" not found\n"), job_name);
264          }
265          job = select_job_resource(ua);
266       } else {
267          Dmsg1(200, "Found job=%s\n", job_name);
268       }
269    } else {
270       bsendmsg(ua, _("A job name must be specified.\n"));
271       job = select_job_resource(ua);
272    }
273    if (!job) {
274       return 1;
275    }
276
277    if (store_name) {
278       store = (STORE *)GetResWithName(R_STORAGE, store_name);
279       if (!store) {
280          if (*store_name != 0) {
281             bsendmsg(ua, _("Storage \"%s\" not found.\n"), store_name);
282          }
283          store = select_storage_resource(ua);
284       }
285    } else {
286       store = job->storage;           /* use default */
287    }
288    if (!store) {
289       return 1;
290    }
291
292
293    if (pool_name) {
294       pool = (POOL *)GetResWithName(R_POOL, pool_name);
295       if (!pool) {
296          if (*pool_name != 0) {
297             bsendmsg(ua, _("Pool \"%s\" not found.\n"), pool_name);
298          }
299          pool = select_pool_resource(ua);
300       }
301    } else {
302       pool = job->pool;             /* use default */
303    }
304    if (!pool) {
305       return 1;
306    }
307
308    if (client_name) {
309       client = (CLIENT *)GetResWithName(R_CLIENT, client_name);
310       if (!client) {
311          if (*client_name != 0) {
312             bsendmsg(ua, _("Client \"%s\" not found.\n"), client_name);
313          }
314          client = select_client_resource(ua);
315       }
316    } else {
317       client = job->client;           /* use default */
318    }
319    if (!client) {
320       return 1;
321    }
322
323    if (fileset_name) {
324       fileset = (FILESET *)GetResWithName(R_FILESET, fileset_name);
325       if (!fileset) {
326          bsendmsg(ua, _("FileSet \"%s\" not found.\n"), fileset_name);
327          fileset = select_fileset_resource(ua);
328       }
329    } else {
330       fileset = job->fileset;           /* use default */
331    }
332    if (!fileset) {
333       return 1;
334    }
335
336    if (verify_job_name) {
337       verify_job = (JOB *)GetResWithName(R_JOB, verify_job_name);
338       if (!verify_job) {
339          bsendmsg(ua, _("Verify Job \"%s\" not found.\n"), verify_job_name);
340          verify_job = select_job_resource(ua);
341       }
342    } else {
343       verify_job = job->verify_job;
344    }
345
346    /*
347     * Create JCR to run job.  NOTE!!! after this point, free_jcr()
348     *  before returning.
349     */
350    jcr = new_jcr(sizeof(JCR), dird_free_jcr);
351    set_jcr_defaults(jcr, job);
352
353    jcr->store = store;
354    jcr->client = client;
355    jcr->fileset = fileset;
356    jcr->pool = pool;
357    jcr->ExpectedFiles = files;
358    if (where) {
359       if (jcr->where) {
360          free(jcr->where);
361       }
362       jcr->where = bstrdup(where);
363    }
364
365    if (when) {
366       jcr->sched_time = str_to_utime(when);
367       if (jcr->sched_time == 0) {
368          bsendmsg(ua, _("Invalid time, using current time.\n"));
369          jcr->sched_time = time(NULL);
370       }
371    }
372          
373    if (bootstrap) {
374       if (jcr->RestoreBootstrap) {
375          free(jcr->RestoreBootstrap);
376       }
377       jcr->RestoreBootstrap = bstrdup(bootstrap);
378    }
379
380    if (replace) {
381       jcr->replace = 0;
382       for (i=0; ReplaceOptions[i].name; i++) {
383          if (strcasecmp(replace, ReplaceOptions[i].name) == 0) {
384             jcr->replace = ReplaceOptions[i].token;
385          }
386       }
387       if (!jcr->replace) {
388          bsendmsg(ua, _("Invalid replace option: %s\n"), replace);
389          goto bail_out;
390       }
391    } else if (job->replace) {
392       jcr->replace = job->replace;
393    } else {
394       jcr->replace = REPLACE_ALWAYS;
395    }
396
397    if (Priority) {
398       jcr->JobPriority = Priority;
399    }
400
401 try_again:
402    replace = ReplaceOptions[0].name;
403    for (i=0; ReplaceOptions[i].name; i++) {
404       if (ReplaceOptions[i].token == jcr->replace) {
405          replace = ReplaceOptions[i].name;
406       }
407    }
408    if (level_name) {
409       if (!get_level_from_name(jcr, level_name)) {
410          bsendmsg(ua, _("Level %s not valid.\n"), level_name);
411          goto bail_out;
412       }
413    }
414    if (jid) {
415       jcr->RestoreJobId = atoi(jid);
416    }
417
418    /* Run without prompting? */
419    if (find_arg(ua, _("yes")) > 0) {
420       goto start_job;
421    }
422
423    /*  
424     * Prompt User to see if all run job parameters are correct, and
425     *   allow him to modify them.
426     */
427    Dmsg1(20, "JobType=%c\n", jcr->JobType);
428    switch (jcr->JobType) {
429       char ec1[30];
430       char dt[MAX_TIME_LENGTH];
431    case JT_ADMIN:
432          bsendmsg(ua, _("Run %s job\n\
433 JobName:  %s\n\
434 FileSet:  %s\n\
435 Client:   %s\n\
436 Storage:  %s\n\
437 When:     %s\n\
438 Priority: %d\n"),
439                  _("Admin"),
440                  job->hdr.name,
441                  jcr->fileset->hdr.name,
442                  NPRT(jcr->client->hdr.name),
443                  NPRT(jcr->store->hdr.name), 
444                  bstrutime(dt, sizeof(dt), jcr->sched_time), 
445                  jcr->JobPriority);
446       jcr->JobLevel = L_FULL;
447       break;
448    case JT_BACKUP:
449    case JT_VERIFY:
450       if (jcr->JobType == JT_BACKUP) {
451          bsendmsg(ua, _("Run %s job\n\
452 JobName:  %s\n\
453 FileSet:  %s\n\
454 Level:    %s\n\
455 Client:   %s\n\
456 Storage:  %s\n\
457 Pool:     %s\n\
458 When:     %s\n\
459 Priority: %d\n"),
460                  _("Backup"),
461                  job->hdr.name,
462                  jcr->fileset->hdr.name,
463                  level_to_str(jcr->JobLevel),
464                  jcr->client->hdr.name,
465                  jcr->store->hdr.name,
466                  NPRT(jcr->pool->hdr.name), 
467                  bstrutime(dt, sizeof(dt), jcr->sched_time),
468                  jcr->JobPriority);
469       } else {  /* JT_VERIFY */
470          const char *Name;
471          if (jcr->job->verify_job) {
472             Name = jcr->job->verify_job->hdr.name;
473          } else {
474             Name = "";
475          }
476          bsendmsg(ua, _("Run %s job\n\
477 JobName:     %s\n\
478 FileSet:     %s\n\
479 Level:       %s\n\
480 Client:      %s\n\
481 Storage:     %s\n\
482 Pool:        %s\n\
483 Verify Job:  %s\n\
484 When:        %s\n\
485 Priority:    %d\n"),
486               _("Verify"),
487               job->hdr.name,
488               jcr->fileset->hdr.name,
489               level_to_str(jcr->JobLevel),
490               jcr->client->hdr.name,
491               jcr->store->hdr.name,
492               NPRT(jcr->pool->hdr.name), 
493               Name,            
494               bstrutime(dt, sizeof(dt), jcr->sched_time),
495               jcr->JobPriority);
496       }
497       break;
498    case JT_RESTORE:
499       if (jcr->RestoreJobId == 0 && !jcr->RestoreBootstrap) {
500          if (jid) {
501             jcr->RestoreJobId = atoi(jid);
502          } else {
503             if (!get_pint(ua, _("Please enter a JobId for restore: "))) {
504                goto bail_out;
505             }  
506             jcr->RestoreJobId = ua->pint32_val;
507          }
508       }
509       jcr->JobLevel = L_FULL;      /* default level */
510       Dmsg1(20, "JobId to restore=%d\n", jcr->RestoreJobId);
511       if (jcr->RestoreJobId == 0) {
512          bsendmsg(ua, _("Run Restore job\n\
513 JobName:    %s\n\
514 Bootstrap:  %s\n\
515 Where:      %s\n\
516 Replace:    %s\n\
517 FileSet:    %s\n\
518 Client:     %s\n\
519 Storage:    %s\n\
520 When:       %s\n\
521 Priority:   %d\n"),
522               job->hdr.name,
523               NPRT(jcr->RestoreBootstrap),
524               jcr->where?jcr->where:NPRT(job->RestoreWhere),
525               replace,
526               jcr->fileset->hdr.name,
527               jcr->client->hdr.name,
528               jcr->store->hdr.name, 
529               bstrutime(dt, sizeof(dt), jcr->sched_time),
530               jcr->JobPriority);
531       } else {
532          bsendmsg(ua, _("Run Restore job\n\
533 JobName:    %s\n\
534 Bootstrap:  %s\n\
535 Where:      %s\n\
536 Replace:    %s\n\
537 FileSet:    %s\n\
538 Client:     %s\n\
539 Storage:    %s\n\
540 JobId:      %s\n\
541 When:       %s\n\
542 Priority:   %d\n"),
543               job->hdr.name,
544               NPRT(jcr->RestoreBootstrap),
545               jcr->where?jcr->where:NPRT(job->RestoreWhere),
546               replace,
547               jcr->fileset->hdr.name,
548               jcr->client->hdr.name,
549               jcr->store->hdr.name, 
550               jcr->RestoreJobId==0?"*None*":edit_uint64(jcr->RestoreJobId, ec1), 
551               bstrutime(dt, sizeof(dt), jcr->sched_time),
552               jcr->JobPriority);
553       }
554       break;
555    default:
556       bsendmsg(ua, _("Unknown Job Type=%d\n"), jcr->JobType);
557       goto bail_out;
558    }
559
560
561    if (!get_cmd(ua, _("OK to run? (yes/mod/no): "))) {
562       goto bail_out;
563    }
564    /*
565     * At user request modify parameters of job to be run.
566     */
567    if (ua->cmd[0] == 0) {
568       goto bail_out;
569    }
570    if (strncasecmp(ua->cmd, _("mod"), strlen(ua->cmd)) == 0) {
571       FILE *fd;
572
573       start_prompt(ua, _("Parameters to modify:\n"));
574       add_prompt(ua, _("Level"));            /* 0 */
575       add_prompt(ua, _("Storage"));          /* 1 */
576       add_prompt(ua, _("Job"));              /* 2 */
577       add_prompt(ua, _("FileSet"));          /* 3 */
578       add_prompt(ua, _("Client"));           /* 4 */
579       add_prompt(ua, _("When"));             /* 5 */
580       add_prompt(ua, _("Priority"));         /* 6 */
581       if (jcr->JobType == JT_BACKUP ||
582           jcr->JobType == JT_VERIFY) {
583          add_prompt(ua, _("Pool"));          /* 7 */
584          if (jcr->JobType == JT_VERIFY) {
585             add_prompt(ua, _("Verify Job"));  /* 8 */
586          }
587       } else if (jcr->JobType == JT_RESTORE) {
588          add_prompt(ua, _("Bootstrap"));     /* 7 */
589          add_prompt(ua, _("Where"));         /* 8 */
590          add_prompt(ua, _("Replace"));       /* 9 */
591          add_prompt(ua, _("JobId"));         /* 10 */
592       }
593       switch (do_prompt(ua, "", _("Select parameter to modify"), NULL, 0)) {
594       case 0:
595          /* Level */
596          if (jcr->JobType == JT_BACKUP) {
597             start_prompt(ua, _("Levels:\n"));
598             add_prompt(ua, _("Base"));
599             add_prompt(ua, _("Full"));
600             add_prompt(ua, _("Incremental"));
601             add_prompt(ua, _("Differential"));
602             add_prompt(ua, _("Since"));
603             switch (do_prompt(ua, "", _("Select level"), NULL, 0)) {
604             case 0:
605                jcr->JobLevel = L_BASE;
606                break;
607             case 1:
608                jcr->JobLevel = L_FULL;
609                break;
610             case 2:
611                jcr->JobLevel = L_INCREMENTAL;
612                break;
613             case 3:
614                jcr->JobLevel = L_DIFFERENTIAL;
615                break;
616             case 4:
617                jcr->JobLevel = L_SINCE;
618                break;
619             default:
620                break;
621             }
622             goto try_again;
623          } else if (jcr->JobType == JT_VERIFY) {
624             start_prompt(ua, _("Levels:\n"));
625             add_prompt(ua, _("Initialize Catalog"));
626             add_prompt(ua, _("Verify Catalog"));
627             add_prompt(ua, _("Verify Volume to Catalog"));
628             add_prompt(ua, _("Verify Disk to Catalog"));
629             add_prompt(ua, _("Verify Volume Data (not yet implemented)"));
630             switch (do_prompt(ua, "",  _("Select level"), NULL, 0)) {
631             case 0:
632                jcr->JobLevel = L_VERIFY_INIT;
633                break;
634             case 1:
635                jcr->JobLevel = L_VERIFY_CATALOG;
636                break;
637             case 2:
638                jcr->JobLevel = L_VERIFY_VOLUME_TO_CATALOG;
639                break;
640             case 3:
641                jcr->JobLevel = L_VERIFY_DISK_TO_CATALOG;
642                break;
643             case 4:
644                jcr->JobLevel = L_VERIFY_DATA;
645                break;
646             default:
647                break;
648             }
649             goto try_again;
650          } else {
651             bsendmsg(ua, _("Level not appropriate for this Job. Cannot be changed.\n"));
652          }
653          goto try_again;
654       case 1:
655          /* Storage */
656          store = select_storage_resource(ua);
657          if (store) {
658             jcr->store = store;
659             goto try_again;
660          }
661          break;
662       case 2:
663          /* Job */
664          job = select_job_resource(ua);
665          if (job) {
666             jcr->job = job;
667             set_jcr_defaults(jcr, job);
668             goto try_again;
669          }
670          break;
671       case 3:
672          /* FileSet */
673          fileset = select_fileset_resource(ua);
674          if (fileset) {
675             jcr->fileset = fileset;
676             goto try_again;
677          }      
678          break;
679       case 4:
680          /* Client */
681          client = select_client_resource(ua);
682          if (client) {
683             jcr->client = client;
684             goto try_again;
685          }
686          break;
687       case 5:
688          /* When */
689          if (!get_cmd(ua, _("Please enter desired start time as YYYY-MM-DD HH:MM:SS (return for now): "))) {
690             break;
691          }
692          if (ua->cmd[0] == 0) {
693             jcr->sched_time = time(NULL);
694          } else {
695             jcr->sched_time = str_to_utime(ua->cmd);
696             if (jcr->sched_time == 0) {
697                bsendmsg(ua, _("Invalid time, using current time.\n"));
698                jcr->sched_time = time(NULL);
699             }
700          }
701          goto try_again;
702       case 6:
703          /* Priority */
704          if (!get_pint(ua, _("Enter new Priority: "))) {
705             break;
706          }
707          if (ua->pint32_val == 0) {
708             bsendmsg(ua, _("Priority must be a positive integer.\n"));
709          } else {
710             jcr->JobPriority = ua->pint32_val;
711          }
712          goto try_again;
713       case 7:
714          /* Pool or Bootstrap depending on JobType */
715          if (jcr->JobType == JT_BACKUP ||
716              jcr->JobType == JT_VERIFY) {      /* Pool */
717             pool = select_pool_resource(ua);
718             if (pool) {
719                jcr->pool = pool;
720                goto try_again;
721             }
722             break;
723          }
724
725          /* Bootstrap */
726          if (!get_cmd(ua, _("Please enter the Bootstrap file name: "))) {
727             break;
728          }
729          if (jcr->RestoreBootstrap) {
730             free(jcr->RestoreBootstrap);
731             jcr->RestoreBootstrap = NULL;
732          }
733          if (ua->cmd[0] != 0) {
734             jcr->RestoreBootstrap = bstrdup(ua->cmd);
735             fd = fopen(jcr->RestoreBootstrap, "r");
736             if (!fd) {
737                bsendmsg(ua, _("Warning cannot open %s: ERR=%s\n"),
738                   jcr->RestoreBootstrap, strerror(errno));
739                free(jcr->RestoreBootstrap);
740                jcr->RestoreBootstrap = NULL;
741             } else {
742                fclose(fd);
743             }
744          }
745          goto try_again;
746       case 8:
747          /* Verify Job */
748          if (jcr->JobType == JT_VERIFY) {
749             JOB *job = select_job_resource(ua);
750             if (job) {
751                jcr->job->verify_job = job;
752             } else {
753                jcr->job->verify_job = NULL;
754             }
755             goto try_again;
756          }
757          /* Where */
758          if (!get_cmd(ua, _("Please enter path prefix for restore (/ for none): "))) {
759             break;
760          }
761          if (jcr->where) {
762             free(jcr->where);
763             jcr->where = NULL;
764          }
765          if (ua->cmd[0] == '/' && ua->cmd[1] == 0) {
766             ua->cmd[0] = 0;
767          }
768          jcr->where = bstrdup(ua->cmd);
769          goto try_again;
770       case 9:
771          /* Replace */
772          start_prompt(ua, _("Replace:\n"));
773          for (i=0; ReplaceOptions[i].name; i++) {
774             add_prompt(ua, ReplaceOptions[i].name);
775          }
776          opt = do_prompt(ua, "", _("Select replace option"), NULL, 0);
777          if (opt >=  0) {
778             jcr->replace = ReplaceOptions[opt].token;
779          }
780          goto try_again;
781       case 10:
782          /* JobId */
783          jid = NULL;                  /* force reprompt */
784          jcr->RestoreJobId = 0;
785          if (jcr->RestoreBootstrap) {
786             bsendmsg(ua, _("You must set the bootstrap file to NULL to be able to specify a JobId.\n"));
787          }
788          goto try_again;
789       default: 
790          goto try_again;
791       }
792       goto bail_out;
793    }
794
795    if (strncasecmp(ua->cmd, _("yes"), strlen(ua->cmd)) == 0) {
796       JobId_t JobId;
797       Dmsg1(200, "Calling run_job job=%x\n", jcr->job);
798 start_job:
799       JobId = run_job(jcr);
800       free_jcr(jcr);                  /* release jcr */
801       if (JobId == 0) {
802          bsendmsg(ua, _("Job failed.\n"));
803       } else {
804          bsendmsg(ua, _("Job started. JobId=%u\n"), JobId);
805       }
806       return 1;
807    }
808
809 bail_out:
810    bsendmsg(ua, _("Job not run.\n"));
811    free_jcr(jcr);
812    return 0;                       /* do not run */
813 }