- Timestamp:
- Oct 12, 2007, 12:21:57 PM (18 years ago)
- Location:
- branches/stable/mondo
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mondo/distributions/conf/mondo.conf.dist
r1671 r1680 81 81 82 82 # 83 # Create mindi CD (yes|no) ?83 # Differential backup or full (yes|no) 84 84 # 85 mondo_create_mindi_cd=no 85 mondo_differential=no 86 87 # DONE 86 88 87 89 # … … 89 91 # 90 92 mondo_kernel="NATIVE" 91 #mondorescue_kernel="/boot/vmlinuz.special" 92 93 # 94 # Additional modules to support 95 # (white space separated list of modules or "all" for maximum cloning capability) 96 # 97 mondo_additional_modules="all" 93 #mondo_kernel="/boot/vmlinuz.special" 98 94 99 95 # … … 104 100 105 101 # DONE 106 #107 # Differential backup or full (yes|no)108 #109 mondo_differential=no110 111 102 # 112 103 # Default compression tool -
branches/stable/mondo/src/include/mr_conf.h
r1639 r1680 47 47 /* Internal tape blocksize */ 48 48 int internal_tape_blocksize; 49 /* Create mindi CD ? */50 bool create_mindi_cd;51 49 /* Kernel to use */ 52 50 char *kernel; -
branches/stable/mondo/src/mondoarchive/mondo-cli.c
r1669 r1680 581 581 if (flag_set['D']) { 582 582 bkpinfo->differential = TRUE; 583 } else { 584 bkpinfo->differential = mr_conf->differential; 583 585 } 584 586 -
branches/stable/mondo/src/mondoarchive/mondoarchive.c
r1663 r1680 155 155 mr_cnf->external_tape_blocksize = 0; 156 156 mr_cnf->internal_tape_blocksize = 0; 157 mr_cnf->create_mindi_cd = FALSE;158 157 mr_cnf->kernel = NULL; 159 158 mr_cnf->additional_modules = NULL; … … 255 254 if (p != NULL) { 256 255 mr_cnf->internal_tape_blocksize = atoi(p); 257 mr_free(p);258 }259 260 p = mr_conf_bread("mondo_create_mindi_cd");261 if (p != NULL) {262 mr_cnf->create_mindi_cd = mr_atob(p);263 256 mr_free(p); 264 257 }
Note:
See TracChangeset
for help on using the changeset viewer.