From: Kern Sibbald Date: Mon, 14 Mar 2005 19:27:52 +0000 (+0000) Subject: - Add a second job and a second client to the default X-Git-Tag: Release-1.38.0~595 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ddc306384a29e8b60f1c48ffc57e955f7277779b;p=bacula%2Fbacula - Add a second job and a second client to the default bacula-dir.conf file. - Remove old style Include/Excludes. git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@1887 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/dird/bacula-dir.conf.in b/bacula/src/dird/bacula-dir.conf.in index 83c8ff6711..5d22a2fff1 100644 --- a/bacula/src/dird/bacula-dir.conf.in +++ b/bacula/src/dird/bacula-dir.conf.in @@ -46,6 +46,13 @@ Job { Write Bootstrap = "@working_dir@/Client1.bsr" } +#Job { +# Name = "Client2" +# Client = @hostname@2-fd +# JobDefs = "DefaultJob" +# Write Bootstrap = "@working_dir@/Client2.bsr" +#} + # Backup the catalog database (after the nightly save) Job { Name = "BackupCatalog" @@ -61,7 +68,10 @@ Job { Priority = 11 # run after main backup } +# # Standard Restore template, to be changed by Console program +# Only one such job is needed for all Jobs/Clients/Storage ... +# Job { Name = "RestoreFiles" Type = Restore @@ -150,6 +160,22 @@ Client { AutoPrune = yes # Prune expired Jobs/Files } +# +# Second Client (File Services) to backup +# You should change Name, Address, and Password before using +# +#Client { +# Name = @hostname@2-fd +# Address = @hostname@2 +# FDPort = @fd_port@ +# Catalog = MyCatalog +# Password = "@fd_password@2" # password for FileDaemon 2 +# File Retention = 30 days # 30 days +# Job Retention = 6 months # six months +# AutoPrune = yes # Prune expired Jobs/Files +#} + + # Definiton of file storage device Storage { Name = File diff --git a/bacula/src/dird/fd_cmds.c b/bacula/src/dird/fd_cmds.c index c4c9bba8b7..97dc669ac5 100644 --- a/bacula/src/dird/fd_cmds.c +++ b/bacula/src/dird/fd_cmds.c @@ -36,8 +36,6 @@ #include "dird.h" /* Commands sent to File daemon */ -static char inc[] = "include\n"; -static char exc[] = "exclude\n"; static char fileset[] = "fileset\n"; /* set full fileset */ static char jobcmd[] = "JobId=%d Job=%s SDid=%u SDtime=%u Authorization=%s\n"; /* Note, mtime_only is not used here -- implemented as file option */ @@ -48,7 +46,6 @@ static char runafter[] = "RunAfterJob %s\n"; /* Responses received from File daemon */ static char OKinc[] = "2000 OK include\n"; -static char OKexc[] = "2000 OK exclude\n"; static char OKjob[] = "2000 OK Job"; static char OKbootstrap[] = "2000 OK bootstrap\n"; static char OKlevel[] = "2000 OK level\n"; @@ -212,7 +209,7 @@ static void send_since_time(JCR *jcr) * Send level command to FD. * Used for backup jobs and estimate command. */ -int send_level_command(JCR *jcr) +bool send_level_command(JCR *jcr) { BSOCK *fd = jcr->file_bsock; /* @@ -248,139 +245,6 @@ int send_level_command(JCR *jcr) return 1; } - -/* - * Send either an Included or an Excluded list to FD - */ -static int send_list(JCR *jcr, int list) -{ - FILESET *fileset; - BSOCK *fd; - int num; - - fd = jcr->file_bsock; - fileset = jcr->fileset; - - if (list == INC_LIST) { - num = fileset->num_includes; - } else { - num = fileset->num_excludes; - } - - for (int i=0; iinclude_items[i]; - } else { - ie = fileset->exclude_items[i]; - } - for (int j=0; jname_list.size(); j++) { - p = (char *)ie->name_list.get(j); - switch (*p) { - case '|': - p++; /* skip over the | */ - fd->msg = edit_job_codes(jcr, fd->msg, p, ""); - bpipe = open_bpipe(fd->msg, 0, "r"); - if (!bpipe) { - berrno be; - Jmsg(jcr, M_FATAL, 0, _("Cannot run program: %s. ERR=%s\n"), - p, be.strerror()); - goto bail_out; - } - /* Copy File options */ - if (ie->num_opts) { - bstrncpy(buf, ie->opts_list[0]->opts, sizeof(buf)); - bstrncat(buf, " ", sizeof(buf)); - } else { - bstrncpy(buf, "0 ", sizeof(buf)); - } - Dmsg1(500, "Opts=%s\n", buf); - optlen = strlen(buf); - while (fgets(buf+optlen, sizeof(buf)-optlen, bpipe->rfd)) { - fd->msglen = Mmsg(fd->msg, "%s", buf); - Dmsg2(500, "Inc/exc len=%d: %s", fd->msglen, fd->msg); - if (!bnet_send(fd)) { - Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n")); - goto bail_out; - } - } - if ((stat=close_bpipe(bpipe)) != 0) { - berrno be; - Jmsg(jcr, M_FATAL, 0, _("Error running program %p: ERR=%s\n"), - p, be.strerror(stat)); - goto bail_out; - } - break; - case '<': - p++; /* skip over < */ - if ((ffd = fopen(p, "r")) == NULL) { - Jmsg(jcr, M_FATAL, 0, _("Cannot open %s file: %s. ERR=%s\n"), - list==INC_LIST?"included":"excluded", p, strerror(errno)); - goto bail_out; - } - /* Copy File options */ - if (ie->num_opts) { - bstrncpy(buf, ie->opts_list[0]->opts, sizeof(buf)); - bstrncat(buf, " ", sizeof(buf)); - } else { - bstrncpy(buf, "0 ", sizeof(buf)); - } - Dmsg1(500, "Opts=%s\n", buf); - optlen = strlen(buf); - while (fgets(buf+optlen, sizeof(buf)-optlen, ffd)) { - fd->msglen = Mmsg(fd->msg, "%s", buf); - if (!bnet_send(fd)) { - Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n")); - goto bail_out; - } - } - fclose(ffd); - break; - case '\\': - p++; /* skip over \ */ - /* Note, fall through wanted */ - default: - if (ie->num_opts) { - Dmsg2(500, "numopts=%d opts=%s\n", ie->num_opts, NPRT(ie->opts_list[0]->opts)); - pm_strcpy(fd->msg, ie->opts_list[0]->opts); - pm_strcat(fd->msg, " "); - } else { - pm_strcpy(fd->msg, "0 "); - } - fd->msglen = pm_strcat(fd->msg, p); - Dmsg1(500, "Inc/Exc name=%s\n", fd->msg); - if (!bnet_send(fd)) { - Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n")); - goto bail_out; - } - break; - } - } - } - bnet_sig(fd, BNET_EOD); /* end of data */ - if (list == INC_LIST) { - if (!response(jcr, fd, OKinc, "Include", DISPLAY_ERROR)) { - goto bail_out; - } - } else if (!response(jcr, fd, OKexc, "Exclude", DISPLAY_ERROR)) { - goto bail_out; - } - return 1; - -bail_out: - set_jcr_job_status(jcr, JS_ErrorTerminated); - return 0; - -} - - /* * Send either an Included or an Excluded list to FD */ @@ -538,30 +402,26 @@ bail_out: /* * Send include list to File daemon */ -int send_include_list(JCR *jcr) +bool send_include_list(JCR *jcr) { BSOCK *fd = jcr->file_bsock; if (jcr->fileset->new_include) { bnet_fsend(fd, fileset); return send_fileset(jcr); - } else { - bnet_fsend(fd, inc); } - return send_list(jcr, INC_LIST); + return true; } /* * Send exclude list to File daemon + * Under the new scheme, the Exclude list + * is part of the FileSet sent with the + * "include_list" above. */ -int send_exclude_list(JCR *jcr) +bool send_exclude_list(JCR *jcr) { - BSOCK *fd = jcr->file_bsock; - if (jcr->fileset->new_include) { - return 1; - } - bnet_fsend(fd, exc); - return send_list(jcr, EXC_LIST); + return true; } @@ -569,7 +429,7 @@ int send_exclude_list(JCR *jcr) * Send bootstrap file if any to the File daemon. * This is used for restore and verify VolumeToCatalog */ -int send_bootstrap_file(JCR *jcr) +bool send_bootstrap_file(JCR *jcr) { FILE *bs; char buf[1000]; diff --git a/bacula/src/dird/inc_conf.c b/bacula/src/dird/inc_conf.c index 80f0d2f3bb..9fa2428917 100644 --- a/bacula/src/dird/inc_conf.c +++ b/bacula/src/dird/inc_conf.c @@ -128,8 +128,10 @@ enum { }; /* - * Include keywords -- these are keywords that can appear - * in the options lists of an old include ( Include = compression= ...) + * This is the list of options that can be stored by store_opts + * Note, now that the old style Include/Exclude code is gone, + * the INC_KW code could be put into the "code" field of the + * options given above. */ static struct s_kw FS_option_kw[] = { {"compression", INC_KW_COMPRESSION}, @@ -271,11 +273,7 @@ static void scan_include_options(LEX *lc, int keyword, char *opts, int optlen) */ void store_inc(LEX *lc, RES_ITEM *item, int index, int pass) { - int token, i; - int options = lc->options; - int keyword; - char inc_opts[100]; - int inc_opts_len; + int token; /* * Decide if we are doing a new Include or an old include. The @@ -287,113 +285,7 @@ void store_inc(LEX *lc, RES_ITEM *item, int index, int pass) store_newinc(lc, item, index, pass); return; } - - /* What follows is scanning for the OLD style Include/Exclude */ - - if (token != T_EQUALS) { - scan_err1(lc, _("Expecting an equals sign, got: %s\n"), lc->str); - } - lc->options |= LOPT_NO_IDENT; /* make spaces significant */ - memset(&res_incexe, 0, sizeof(INCEXE)); - - /* Get include options */ - inc_opts[0] = 0; - while ((token=lex_get_token(lc, T_SKIP_EOL)) != T_BOB) { - - keyword = INC_KW_NONE; - for (i=0; FS_option_kw[i].name; i++) { - if (strcasecmp(lc->str, FS_option_kw[i].name) == 0) { - keyword = FS_option_kw[i].token; - break; - } - } - if (keyword == INC_KW_NONE) { - scan_err1(lc, _("Expected a FileSet keyword, got: %s"), lc->str); - } - /* Option keyword should be following by =