Advertisement
Guest User

Untitled

a guest
May 7th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.22 KB | None | 0 0
  1.  
  2. ####################################################################
  3. #############Director Configuration#################################
  4. ####################################################################
  5. Director { # define myself
  6. Name = jabba-dir
  7. DIRport = 9101 # where we listen for UA connections
  8. QueryFile = "/etc/bacula/query.sql"
  9. WorkingDirectory = "/var/bacula"
  10. PidDirectory = "/var/run"
  11. Maximum Concurrent Jobs = 1
  12. Password = "heartcenter" # Console password
  13. Messages = Daemon
  14. }
  15.  
  16. ####################################################################
  17. #############Job Defs###############################################
  18. ####################################################################
  19. JobDefs {
  20. Name = "DefaultJob"
  21. Type = Backup
  22. Level = Incremental
  23. Client = jabba-fd
  24. FileSet = "Full Set"
  25. Schedule = "WeeklyCycle"
  26. Storage = File
  27. Messages = Standard
  28. Pool = Default
  29. Priority = 10
  30. }
  31.  
  32. JobDefs {
  33. Name = "Windows OS"
  34. Type = Backup
  35. Level = Full
  36. Schedule = "Windows OS"
  37. Storage = MSL5026
  38. Messages = Standard
  39. Pool = Default
  40. Write Bootstrap = "%i-%c_%n.bsr"
  41. }
  42.  
  43. JobDefs {
  44. Name = "Windows Data"
  45. Type = Backup
  46. Level = Full
  47. Schedule = "Cluster"
  48. Storage = MSL5026
  49. Messages = Standard
  50. Pool = Default
  51. Write Bootstrap = "%i-%c_%n.bsr"
  52. }
  53.  
  54. JobDefs {
  55. Name = "Linux Data"
  56. Type = Backup
  57. Level = Full
  58. Schedule = "Lando"
  59. Storage = MSL5026
  60. Messages = Standard
  61. Pool = Default
  62. Write Bootstrap = "%i-%c_%n.bsr"
  63. }
  64.  
  65. ####################################################################
  66. #############Job's##################################################
  67. ####################################################################
  68. Job {
  69. Name = "Client1"
  70. JobDefs = "DefaultJob"
  71. Write Bootstrap = "/var/bacula/Client1.bsr"
  72. }
  73.  
  74. Job {
  75. Name = "BackupCatalog"
  76. JobDefs = "DefaultJob"
  77. Level = Full
  78. FileSet="Catalog"
  79. Schedule = "WeeklyCycleAfterBackup"
  80. # This creates an ASCII copy of the catalog
  81. # WARNING!!! Passing the password via the command line is insecure.
  82. # see comments in make_catalog_backup for details.
  83. # Arguments to make_catalog_backup are:
  84. # make_catalog_backup <database-name> <user-name> <password> <host>
  85. RunBeforeJob = "/etc/bacula/make_catalog_backup bacula bacula"
  86. # This deletes the copy of the catalog
  87. RunAfterJob = "/etc/bacula/delete_catalog_backup"
  88. Write Bootstrap = "/var/bacula/BackupCatalog.bsr"
  89. Priority = 11 # run after main backup
  90. }
  91.  
  92. #############Windows OS Backups#####################################
  93.  
  94. Job {
  95. Name = "HCSQL OS"
  96. JobDefs = "Windows OS"
  97. FileSet = "Windows OS"
  98. Schedule = "Windows OS"
  99. Client = "HCSQL-fd"
  100. }
  101.  
  102. Job {
  103. Name = "HCDOC OS"
  104. JobDefs = "Windows OS"
  105. FileSet = "Windows OS"
  106. Schedule = "Windows OS"
  107. Client = "hcdoc-fd"
  108. }
  109.  
  110. Job {
  111. Name = "HCADP OS"
  112. JobDefs = "Windows OS"
  113. FileSet = "Windows OS"
  114. Schedule = "Windows OS"
  115. Client = "HCADP-fd"
  116. }
  117.  
  118. Job {
  119. Name = "Citrix OS"
  120. JobDefs = "Windows OS"
  121. FileSet = "Windows OS"
  122. Schedule = "Windows OS"
  123. Client = "Citrix-fd"
  124. }
  125.  
  126. Job {
  127. Name = "HCDC1 OS"
  128. JobDefs = "Windows OS"
  129. FileSet = "Windows OS"
  130. Schedule = "Windows OS"
  131. Client = "HCDC1-fd"
  132. }
  133.  
  134. Job {
  135. Name = "HCDC2 OS"
  136. JobDefs = "Windows OS"
  137. FileSet = "Windows OS"
  138. Schedule = "Windows OS"
  139. Client = "HCDC2-fd"
  140. }
  141.  
  142. Job {
  143. Name = "R2D2 OS"
  144. JobDefs = "Windows OS"
  145. FileSet = "Windows OS"
  146. Schedule = "Windows OS"
  147. Client = "r2d2-fd"
  148. }
  149. #############Windows Data Backups###################################
  150.  
  151. Job {
  152. Name = "HCSQL Data"
  153. JobDefs = "Windows Data"
  154. FileSet = "HCSQL"
  155. Schedule = "Cluster"
  156. Client = "HCSQL-fd"
  157. }
  158.  
  159. Job {
  160. Name = "HCDOC Data"
  161. JobDefs = "Windows Data"
  162. FileSet = "HCDOC"
  163. Schedule = "Cluster"
  164. Client = "hcdoc-fd"
  165. }
  166.  
  167. Job {
  168. Name = "HCADP Data"
  169. JobDefs = "Windows Data"
  170. FileSet = "HCADP"
  171. Schedule = "HCADP"
  172. Client = "HCADP-fd"
  173. }
  174.  
  175. Job {
  176. Name = "HCDC1 Data"
  177. JobDefs = "Windows Data"
  178. FileSet = "Domain Controllers"
  179. Schedule = "Domain Controllers"
  180. Client = "HCDC1-fd"
  181. }
  182.  
  183. Job {
  184. Name = "HCDC2 Data"
  185. JobDefs = "Windows Data"
  186. FileSet = "Domain Controllers"
  187. Schedule = "Domain Controllers"
  188. Client = "HCDC2-fd"
  189. }
  190.  
  191. Job {
  192. Name = "R2D2 Data"
  193. JobDefs = "Windows Data"
  194. FileSet = "R2D2"
  195. Schedule = "R2D2"
  196. Client = "r2d2-fd"
  197. }
  198.  
  199. Job {
  200. Name = "R2D2 Exchange Agent"
  201. JobDefs = "Windows Data"
  202. FileSet = "Exchange Agent"
  203. Schedule = "R2D2"
  204. Client = "r2d2-exch-fd"
  205. }
  206. #############Linux Data Backups#####################################
  207.  
  208. Job {
  209. Name = "Lando Data"
  210. JobDefs = "Linux Data"
  211. FileSet = "Lando - Windu"
  212. Schedule = "Lando"
  213. Client = "Lando-fd"
  214. }
  215.  
  216. Job {
  217. Name = "Windu Data"
  218. JobDefs = "Linux Data"
  219. FileSet = "Lando - Windu"
  220. Schedule = "Windu"
  221. Client = "Windu-fd"
  222. }
  223.  
  224. Job {
  225. Name = "Yoda Data"
  226. JobDefs = "Linux Data"
  227. FileSet = "Yoda - Jabba"
  228. Schedule = "Yoda"
  229. Client = "Yoda-fd"
  230. }
  231.  
  232. Job {
  233. Name = "Jabba Data"
  234. JobDefs = "Linux Data"
  235. FileSet = "Yoda - Jabba"
  236. Schedule = "Jabba"
  237. Client = "jabba-fd"
  238. }
  239.  
  240. ####################################################################
  241. #############Restore Job############################################
  242. ####################################################################
  243. Job {
  244. Name = "RestoreFiles"
  245. Type = Restore
  246. Client=jabba-fd
  247. FileSet="Full Set"
  248. Storage = File
  249. Pool = Default
  250. Messages = Standard
  251. Where = /bacula-restores
  252. }
  253.  
  254. ####################################################################
  255. #############File Sets##############################################
  256. ####################################################################
  257. FileSet {
  258. Name = "Full Set"
  259. Include {
  260. Options {
  261. signature = MD5
  262. }
  263. File = /
  264. }
  265. Exclude {
  266. File = /proc
  267. File = /tmp
  268. File = /.journal
  269. File = /.fsck
  270. }
  271. }
  272.  
  273. FileSet {
  274. Name = "Catalog"
  275. Include {
  276. Options {
  277. signature = MD5
  278. }
  279. File = /var/bacula/bacula.sql
  280. }
  281. }
  282.  
  283. FileSet {
  284. Name = "Lando - Windu"
  285. Include {
  286. Options {
  287. signature = MD5
  288. }
  289. File = /etc
  290. File = /home
  291. File = /packages
  292. File = /root
  293. }
  294. }
  295.  
  296. FileSet {
  297. Name = "Yoda - Jabba"
  298. Include {
  299. Options {
  300. signature = MD5
  301. }
  302. File = /etc
  303. File = /home
  304. File = /packages
  305. File = /var/lib/mysql
  306. File = /root
  307. }
  308. }
  309.  
  310. FileSet {
  311. Name = "Windows OS"
  312. Include {
  313. Options {
  314. signature = MD5
  315. Exclude = yes
  316. IgnoreCase = yes
  317. # Exclude Documents and Settings Folders
  318. WildDir = "[A-Z]:/Documents and Settings/*"
  319.  
  320. # Some random bits of Windows we want to ignore
  321. WildFile = "[A-Z]:/WINNT/security/logs/scepol.log"
  322. WildDir = "[A-Z]:/WINNT/system32/config"
  323. WildDir = "[A-Z]:/WINNT/msdownld.tmp"
  324. WildDir = "[A-Z]:/WINNT/Internet Logs"
  325. WildDir = "[A-Z]:/WINNT/$Nt*Uninstall*"
  326. WildDir = "[A-Z]:/WINNT/sysvol"
  327. WildFile = "[A-Z]:/WINNT/cluster/CLUSDB"
  328. WildFile = "[A-Z]:/WINNT/cluster/CLUSDB.LOG"
  329. WildFile = "[A-Z]:/WINNT/NTDS/edb.log"
  330. WildFile = "[A-Z]:/WINNT/NTDS/ntds.dit"
  331. WildFile = "[A-Z]:/WINNT/NTDS/temp.edb"
  332. WildFile = "[A-Z]:/WINNT/ntfrs/jet/log/edb.log"
  333. WildFile = "[A-Z]:/WINNT/ntfrs/jet/ntfrs.jdb"
  334. WildFile = "[A-Z]:/WINNT/ntfrs/jet/temp/tmp.edb"
  335. WildFile = "[A-Z]:/WINNT/system32/CPL.CFG"
  336. WildFile = "[A-Z]:/WINNT/system32/dhcp/dhcp.mdb"
  337. WildFile = "[A-Z]:/WINNT/system32/dhcp/j50.log"
  338. WildFile = "[A-Z]:/WINNT/system32/dhcp/tmp.edb"
  339. WildFile = "[A-Z]:/WINNT/system32/LServer/edb.log"
  340. WildFile = "[A-Z]:/WINNT/system32/LServer/TLSLic.edb"
  341. WildFile = "[A-Z]:/WINNT/system32/LServer/tmp.edb"
  342. WildFile = "[A-Z]:/WINNT/system32/wins/j50.log"
  343. WildFile = "[A-Z]:/WINNT/system32/wins/wins.mdb"
  344. WildFile = "[A-Z]:/WINNT/system32/wins/winstmp.mdb"
  345.  
  346. # Temporary directories & files
  347. WildDir = "[A-Z]:/WINNT/Temp"
  348. WildDir = "[A-Z]:/temp"
  349. WildFile = "*.tmp"
  350. WildDir = "[A-Z]:/tmp"
  351. WildDir = "[A-Z]:/var/tmp"
  352.  
  353. # Recycle bins
  354. WildDir = "[A-Z]:/RECYCLER"
  355.  
  356. # Swap files
  357. WildFile = "[A-Z]:/pagefile.sys"
  358.  
  359. # These are programs and are easier to reinstall than restore from
  360. # backup
  361. WildDir = "[A-Z]:/cygwin"
  362. WildDir = "[A-Z]:/Program Files/Grisoft"
  363. WildDir = "[A-Z]:/Program Files/Java"
  364. WildDir = "[A-Z]:/Program Files/Java Web Start"
  365. WildDir = "[A-Z]:/Program Files/JavaSoft"
  366. WildDir = "[A-Z]:/Program Files/Microsoft Office"
  367. WildDir = "[A-Z]:/Program Files/Mozilla Firefox"
  368. WildDir = "[A-Z]:/Program Files/Mozilla Thunderbird"
  369. WildDir = "[A-Z]:/Program Files/mozilla.org"
  370. WildDir = "[A-Z]:/Program Files/OpenOffice*"
  371. }
  372. File = "C:/"
  373. }
  374. }
  375.  
  376. FileSet {
  377. Name = "HCADP"
  378. Include {
  379. Options {
  380. signature = MD5
  381. IgnoreCase = yes
  382. }
  383. File = "C:/backup"
  384. }
  385. }
  386.  
  387. FileSet {
  388. Name = "R2D2"
  389. Include {
  390. Options {
  391. signature = MD5
  392. IgnoreCase = yes
  393. }
  394. File = "D:/"
  395. File = "N:/"
  396. }
  397. Exclude {
  398. File = "D:/Exmerge PST"
  399. }
  400.  
  401. }
  402.  
  403. FileSet {
  404. Name = "Exchange Agent"
  405. Include {
  406. Options {
  407. Exclude = Yes
  408. signature = MD5
  409. IgnoreCase = yes
  410. }
  411. File = "/Microsoft Information Store"
  412. }
  413. }
  414.  
  415. FileSet {
  416. Name = "HCDOC"
  417. Include {
  418. Options {
  419. signature = MD5
  420. IgnoreCase = yes
  421. }
  422. File = "F:/"
  423. }
  424. }
  425.  
  426. FileSet {
  427. Name = "HCSQL"
  428. Include {
  429. Options {
  430. signature = MD5
  431. IgnoreCase = yes
  432. }
  433. File = "D:/"
  434. File = "E:/"
  435. File = "Q:/"
  436. }
  437. }
  438.  
  439. FileSet {
  440. Name = "Domain Controllers"
  441. Include {
  442. Options {
  443. signature = MD5
  444. IgnoreCase = yes
  445. }
  446. File = "D:/"
  447. }
  448. }
  449. ####################################################################
  450. #############Schedule###############################################
  451. ####################################################################
  452. Schedule {
  453. Name = "WeeklyCycle"
  454. Run = Full 1st sun at 23:05
  455. Run = Differential 2nd-5th sun at 23:05
  456. Run = Incremental mon-sat at 23:05
  457. }
  458.  
  459. Schedule {
  460. Name = "WeeklyCycleAfterBackup"
  461. Run = Full sun-sat at 23:10
  462. }
  463.  
  464. Schedule {
  465. Name = "Windows OS"
  466. Run = Full first fri at 19:00
  467. }
  468.  
  469. Schedule {
  470. Name = "Lando"
  471. Run = FullPool="Linux Data Monthly" Full first sat at 00:00
  472. Run = DifferentialPool="Linux Data Daily" Differential mon-fri at 01:00
  473. }
  474.  
  475. Schedule {
  476. Name = "Yoda"
  477. Run = FullPool="Linux Data Monthly" Full first sat at 00:00
  478. Run = DifferentialPool="Linux Data Daily" Differential mon-fri at 01:00
  479. }
  480.  
  481. Schedule {
  482. Name = "Windu"
  483. Run = FullPool="Linux Data Monthly" Full first sat at 00:30
  484. Run = DifferentialPool="Linux Data Daily" Differential mon-fri at 01:30
  485. }
  486.  
  487. Schedule {
  488. Name = "Jabba"
  489. Run = FullPool="Linux Data Monthly" Full first sat at 00:30
  490. Run = DifferentialPool="Linux Data Daily" Differential mon-fri at 01:30
  491. }
  492.  
  493. Schedule {
  494. Name = "HCADP"
  495. Run = FullPool="Windows Data Weekly" Full first-fifth fri at 18:00
  496. Run = DifferentialPool="Windows Data Daily" Differential mon-fri at 01:00
  497. }
  498.  
  499. Schedule {
  500. Name = "R2D2"
  501. Run = FullPool="Windows Data Weekly" Full second,fourth mon at 20:00
  502. Run = DifferentialPool="Windows Data Daily" Differential mon-fri at 20:00
  503. }
  504.  
  505. Schedule {
  506. Name = "Domain Controllers"
  507. Run = FullPool="Windows Data Weekly" Full first,second sat at 03:00
  508. Run = DifferentialPool="Windows Data Daily" Differential mon-fri at 22:00
  509. }
  510.  
  511. Schedule {
  512. Name = "Cluster"
  513. Run = FullPool="Windows Data Weekly" Full first-fifth sat at 05:00
  514. Run = DifferentialPool="Windows Data Daily" Differential mon-fri at 20:00
  515. }
  516.  
  517. ####################################################################
  518. #############Clients################################################
  519. ####################################################################
  520. Client {
  521. Name = jabba-fd
  522. Address = jabba
  523. FDPort = 9102
  524. Catalog = MyCatalog
  525. Password = "heartcenter"
  526. File Retention = 90 days
  527. Job Retention = 6 months
  528. AutoPrune = yes
  529. }
  530.  
  531. Client {
  532. Name = hcdoc-fd
  533. Address = hcdoc
  534. FDPort = 9102
  535. Catalog = MyCatalog
  536. Password = "heartcenter"
  537. File Retention = 90 days
  538. Job Retention = 6 months
  539. AutoPrune = yes
  540. }
  541.  
  542. Client {
  543. Name = HCSQL-fd
  544. Address = hcsql
  545. FDPort = 9102
  546. Catalog = MyCatalog
  547. Password = "heartcenter"
  548. File Retention = 90 days
  549. Job Retention = 6 months
  550. AutoPrune = yes
  551. }
  552.  
  553. Client {
  554. Name = HCADP-fd
  555. Address = hcadp
  556. FDPort = 9102
  557. Catalog = MyCatalog
  558. Password = "heartcenter"
  559. File Retention = 90 days
  560. Job Retention = 6 months
  561. AutoPrune = yes
  562. }
  563.  
  564. Client {
  565. Name = HCDC1-fd
  566. Address = hcdc1
  567. FDPort = 9102
  568. Catalog = MyCatalog
  569. Password = "heartcenter"
  570. File Retention = 90 days
  571. Job Retention = 6 months
  572. AutoPrune = yes
  573. }
  574.  
  575. Client {
  576. Name = HCDC2-fd
  577. Address = hcdc2
  578. FDPort = 9102
  579. Catalog = MyCatalog
  580. Password = "heartcenter"
  581. File Retention = 90 days
  582. Job Retention = 6 months
  583. AutoPrune = yes
  584. }
  585.  
  586. Client {
  587. Name = Citrix-fd
  588. Address = hscitrix
  589. FDPort = 9102
  590. Catalog = MyCatalog
  591. Password = "heartcenter"
  592. File Retention = 90 days
  593. Job Retention = 6 months
  594. AutoPrune = yes
  595. }
  596.  
  597. Client {
  598. Name = r2d2-fd
  599. Address = r2d2
  600. FDPort = 9102
  601. Catalog = MyCatalog
  602. Password = "heartcenter"
  603. File Retention = 90 days
  604. Job Retention = 6 months
  605. AutoPrune = yes
  606. }
  607.  
  608. Client {
  609. Name = r2d2-exch-fd
  610. Address = r2d2
  611. FDPort = 9105
  612. Catalog = MyCatalog
  613. Password = "heartcenter"
  614. File Retention = 90 days
  615. Job Retention = 6 months
  616. AutoPrune = yes
  617. }
  618. Client {
  619. Name = Lando-fd
  620. Address = lando
  621. FDPort = 9102
  622. Catalog = MyCatalog
  623. Password = "heartcenter"
  624. File Retention = 90 days
  625. Job Retention = 6 months
  626. AutoPrune = yes
  627. }
  628.  
  629. Client {
  630. Name = Windu-fd
  631. Address = windu
  632. FDPort = 9102
  633. Catalog = MyCatalog
  634. Password = "heartcenter"
  635. File Retention = 90 days
  636. Job Retention = 6 months
  637. AutoPrune = yes
  638. }
  639.  
  640. Client {
  641. Name = Yoda-fd
  642. Address = yoda
  643. FDPort = 9102
  644. Catalog = MyCatalog
  645. Password = "heartcenter"
  646. File Retention = 90 days
  647. Job Retention = 6 months
  648. AutoPrune = yes
  649. }
  650. ####################################################################
  651. #############Storage################################################
  652. ####################################################################
  653. Storage {
  654. Name = File
  655. # Do not use "localhost" here
  656. Address = jabba # N.B. Use a fully qualified name here
  657. SDPort = 9103
  658. Password = "heartcenter"
  659. Device = FileStorage
  660. Media Type = File
  661. }
  662.  
  663. Storage {
  664. Name = MSL5026
  665. # Do not use "localhost" here
  666. Address = jabba # N.B. Use a fully qualified name here
  667. SDPort = 9103
  668. Password = "heartcenter" # password for Storage daemon
  669. Device = MSL5026 # must be same as Device in Storage daemon
  670. Media Type = SuperDLT-1 # must be same as MediaType in Storage daemon
  671. Autochanger = yes # enable for autochanger device
  672. Maximum Concurrent Jobs = 2
  673. }
  674.  
  675. ####################################################################
  676. #############Catalog################################################
  677. ####################################################################
  678. Catalog {
  679. Name = MyCatalog
  680. dbname = "bacula"; dbuser = "bacula"; dbpassword = ""
  681. }
  682.  
  683. ####################################################################
  684. #############Email##################################################
  685. ####################################################################
  686. Messages {
  687. Name = Standard
  688. mailcommand = "/usr/sbin/bsmtp -h localhost -f \"\(Bacula\) \<%r\>\" -s \"Bacula: %t %e of %c %l\" %r"
  689. operatorcommand = "/usr/sbin/bsmtp -h localhost -f \"\(Bacula\) \<%r\>\" -s \"Bacula: Intervention needed for %j\" %r"
  690. mail = root@localhost = all, !skipped
  691. operator = root@localhost = mount
  692. console = all, !skipped, !saved
  693. #
  694. # WARNING! the following will create a file that you must cycle from
  695. # time to time as it will grow indefinitely. However, it will
  696. # also keep all your messages if they scroll off the console.
  697. #
  698. append = "/var/bacula/log" = all, !skipped
  699. }
  700.  
  701. # Message delivery for daemon messages (no job).
  702. Messages {
  703. Name = Daemon
  704. mailcommand = "/usr/sbin/bsmtp -h localhost -f \"\(Bacula\) \<%r\>\" -s \"Bacula daemon message\" %r"
  705. mail = root@localhost = all, !skipped
  706. console = all, !skipped, !saved
  707. append = "/var/bacula/log" = all, !skipped
  708. }
  709.  
  710. ####################################################################
  711. #############Pools##################################################
  712. ####################################################################
  713. Pool {
  714. Name = Default
  715. Pool Type = Backup
  716. Recycle = yes # Bacula can automatically recycle Volumes
  717. AutoPrune = yes # Prune expired volumes
  718. Volume Retention = 365 days # one year
  719. Catalog Files = yes
  720. Cleaning Prefix = CLN
  721. }
  722.  
  723. Pool {
  724. Name = File
  725. Pool Type = Backup
  726. Recycle = yes # Bacula can automatically recycle Volumes
  727. AutoPrune = yes # Prune expired volumes
  728. Volume Retention = 365 days # one year
  729. Catalog Files = yes
  730. Label Format = "File-"
  731. }
  732.  
  733. Pool {
  734. Name = Scratch
  735. Pool Type = Backup
  736. Cleaning Prefix = CLN
  737. }
  738.  
  739. Pool {
  740. Name = "Windows OS Monthly"
  741. Pool Type = Backup
  742. Recycle = yes
  743. AutoPrune = yes
  744. Volume Retention = 80 days
  745. Catalog Files = yes
  746. Cleaning Prefix = CLN
  747. }
  748.  
  749. Pool {
  750. Name = "Windows Data Weekly"
  751. Pool Type = Backup
  752. Recycle = yes
  753. AutoPrune = yes
  754. Volume Retention = 80 days
  755. Catalog Files = yes
  756. Cleaning Prefix = CLN
  757. }
  758.  
  759. Pool {
  760. Name = "Windows Data Daily"
  761. Pool Type = Backup
  762. Recycle = yes
  763. AutoPrune = yes
  764. Volume Retention = 6 days
  765. Catalog Files = yes
  766. Cleaning Prefix = CLN
  767. }
  768.  
  769. Pool {
  770. Name = "Linux Data Monthly"
  771. Pool Type = Backup
  772. Recycle = yes
  773. AutoPrune = yes
  774. Volume Retention = 80 days
  775. Catalog Files = yes
  776. Cleaning Prefix = CLN
  777. }
  778.  
  779. Pool {
  780. Name = "Linux Data Daily"
  781. Pool Type = Backup
  782. Recycle = yes
  783. AutoPrune = yes
  784. Volume Retention = 6 days
  785. Catalog Files = yes
  786. Cleaning Prefix = CLN
  787. }
  788. ####################################################################
  789. #############Console################################################
  790. ####################################################################
  791. Console {
  792. Name = jabba-mon
  793. Password = "heartcenter"
  794. CommandACL = status, .status
  795. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement