Advertisement
Guest User

Untitled

a guest
May 25th, 2017
576
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 27.69 KB | None | 0 0
  1. Director { # define myself
  2. Name = edward-dir
  3. QueryFile = "/etc/bacula/scripts/query.sql"
  4. WorkingDirectory = "/var/lib/bacula"
  5. PidDirectory = "/var/run/bacula"
  6. Maximum Concurrent Jobs = 3
  7. Heartbeat Interval = 15
  8. Password = "" # Console password
  9. Messages = Daemon
  10. DirAddresses = {
  11. ip = { addr = 192.168.0.1; port = 9101; }
  12. ip = { addr = 127.0.0.1; port = 9101; }
  13. ip = { addr = dyn.kanojo.de; port = 9101; }
  14. }
  15. }
  16.  
  17. #########################################################
  18. # JOB DEFINITION #
  19. #########################################################
  20.  
  21. Job {
  22. Name = "edward"
  23. Type = Backup
  24. Level = Differential
  25. Client = edward-fd
  26. FileSet = "Edward Set"
  27. Schedule = "EdwardWeeklyCycle"
  28. Storage = File-Edward
  29. Messages = Standard
  30. Pool = EdwardPool
  31. Full Backup Pool = EdwardFullPool
  32. Priority = 10
  33. }
  34.  
  35. Job {
  36. Name = "ghostdubnew"
  37. Type = Backup
  38. Level = Differential
  39. Client = ghostdubnew-fd
  40. FileSet = "GhostdubNew Set"
  41. Schedule = "GhostdubNewWeeklyCycle"
  42. Storage = File-GhostdubNew
  43. Messages = Standard
  44. Pool = GhostdubNewPool
  45. Full Backup Pool = GhostdubNewFullPool
  46. Priority = 10
  47. }
  48.  
  49. #Job {
  50. # Name = "RestoreFiles"
  51. # Type = Restore
  52. # Client="ghostdubnew-fd"
  53. # FileSet="GhostdubNew Set"
  54. # Storage = File-GhostdubNew
  55. # Pool = GhostdubNewPool
  56. # Messages = Standard
  57. # Where = /tmp/bacula-restores
  58. #}
  59.  
  60. #Job {
  61. # Name = "ghostdubnew-full"
  62. # Type = Backup
  63. # Level = Full
  64. # Client = ghostdubnew-fd
  65. # FileSet = "GhostdubNew Set"
  66. # #Schedule = "GhostdubNewWeeklyCycle"
  67. # Storage = File-GhostdubNew
  68. # Messages = Standard
  69. # Pool = GhostdubNewPool
  70. # Full Backup Pool = GhostdubNewFullPool
  71. # Priority = 10
  72. }
  73.  
  74.  
  75. Job {
  76. Name = "cheza"
  77. Type = Backup
  78. Level = Differential
  79. Client = cheza-fd
  80. FileSet = "Cheza Set"
  81. Schedule = "ChezaWeeklyCycle"
  82. Storage = File-Cheza
  83. Messages = Standard
  84. Pool = ChezaPool
  85. Full Backup Pool = ChezaFullPool
  86. Priority = 10
  87.  
  88. RunBeforeJob = /etc/bacula/scripts/cheza_wakeup
  89. RunAfterJob = /etc/bacula/scripts/cheza_suspend
  90. }
  91.  
  92.  
  93. #########################################################
  94. # FILE SET DEFINITION #
  95. #########################################################
  96.  
  97. FileSet {
  98. Name = "Edward Set"
  99. Include {
  100. Options {
  101. signature = MD5
  102. }
  103. File = /
  104. }
  105.  
  106. Exclude {
  107. File = /proc
  108. File = /tmp
  109. File = /.journal
  110. File = /.fsck
  111. File = /mnt
  112. File = /media
  113. File = /store
  114. File = /store
  115. }
  116. }
  117.  
  118. FileSet {
  119. Name = "Catalog"
  120. Include {
  121. Options {
  122. signature = MD5
  123. }
  124. File = /var/lib/bacula/bacula.sql
  125. }
  126. }
  127.  
  128. FileSet {
  129. Name = "GhostdubNew Set"
  130. Include {
  131. Options {
  132. signature = MD5
  133. }
  134. File = /
  135. File = /boot
  136. }
  137.  
  138. Exclude {
  139. File = /proc
  140. File = /tmp
  141. File = /.journal
  142. File = /.fsck
  143. File = /mnt
  144. File = /media
  145. }
  146. }
  147.  
  148. FileSet {
  149. Name = "Cheza Set"
  150. Include {
  151. Options {
  152. signature = MD5
  153. }
  154. File = /
  155. }
  156.  
  157. Exclude {
  158. File = /proc
  159. File = /tmp
  160. File = /.journal
  161. File = /.fsck
  162. File = /mnt
  163. File = /media
  164. File = /store
  165. File = /dta
  166. File = /edward
  167. File = /ext
  168. File = /store2
  169. File = /store3
  170. File = /data
  171. }
  172. }
  173.  
  174.  
  175.  
  176. #########################################################
  177. # SCHEDULE DEFINITION #
  178. #########################################################
  179.  
  180.  
  181. Schedule {
  182. Name = "EdwardWeeklyCycle"
  183. Run = Full 2nd sun at 03:05
  184. Run = Differential tue at 03:05
  185. Run = Differential thu at 03:05
  186. Run = Differential sat at 03:05
  187.  
  188. }
  189.  
  190. Schedule {
  191. Name = "GhostdubNewWeeklyCycle"
  192. Run = Full 2nd sun at 03:05
  193. Run = Differential tue at 04:05
  194. Run = Differential thu at 04:05
  195. Run = Differential sat at 04:05
  196.  
  197. }
  198. Schedule {
  199. Name = "ChezaWeeklyCycle"
  200. Run = Full 2nd sun at 05:05
  201. Run = Differential tue at 05:05
  202. Run = Differential thu at 05:05
  203. Run = Differential sat at 05:05
  204. }
  205.  
  206. #########################################################
  207. # CLIENT DEFINITION #
  208. #########################################################
  209.  
  210.  
  211. Client {
  212. Name = edward-fd
  213. Address = edward
  214. FDPort = 9102
  215. Catalog = MyCatalog
  216. Password = "" # password for FileDaemon
  217. File Retention = 30 days # 30 days
  218. Job Retention = 30 days # six months
  219. AutoPrune = yes # Prune expired Jobs/Files
  220. }
  221.  
  222. Client {
  223. Name = ghostdubnew-fd
  224. Address = ghostdub.de
  225. FDPort = 9105
  226. Catalog = MyCatalog
  227. Password = "" # password for FileDaemon
  228. File Retention = 30 days # 30 days
  229. Job Retention = 30 days # six months
  230. AutoPrune = yes # Prune expired Jobs/Files
  231. }
  232.  
  233.  
  234. Client {
  235. Name = cheza-fd
  236. Address = cheza
  237. FDPort = 9102
  238. Catalog = MyCatalog
  239. Password = "" # password for FileDaemon
  240. File Retention = 30 days # 30 days
  241. Job Retention = 30 days # six months
  242. AutoPrune = yes # Prune expired Jobs/Files
  243. }
  244.  
  245. #########################################################
  246. # STORAGE DEFINITION #
  247. #########################################################
  248.  
  249.  
  250. Storage {
  251. Name = File-Edward
  252. Address = edward # N.B. Use a fully qualified name here
  253. SDPort = 9103
  254. Password = ""
  255. Device = FileStorage-Edward
  256. Media Type = File
  257. Heartbeat Interval = 15
  258. }
  259.  
  260. Storage {
  261. Name = File-GhostdubNew
  262. Address = dyn.kanojo.de # N.B. Use a fully qualified name here
  263. SDPort = 9103
  264. Password = ""
  265. Device = FileStorage-GhostdubNew
  266. Media Type = File
  267. Heartbeat Interval = 15
  268. }
  269.  
  270. Storage {
  271. Name = File-Cheza
  272. Address = edward # N.B. Use a fully qualified name here
  273. SDPort = 9103
  274. Password = ""
  275. Device = FileStorage-Cheza
  276. Media Type = File
  277. Heartbeat Interval = 15
  278. }
  279.  
  280.  
  281. #########################################################
  282. # CATALOG DEFINITION #
  283. #########################################################
  284.  
  285. Catalog {
  286. Name = MyCatalog
  287. dbname = bacula; password = "@db_pswd@"
  288. }
  289.  
  290.  
  291. #########################################################
  292. # POOL DEFINITION #
  293. #########################################################
  294.  
  295. Pool {
  296. Name = EdwardPool
  297. Pool Type = Backup
  298. Recycle = yes # Bacula can automatically recycle Volumes
  299. AutoPrune = yes # Prune expired volumes
  300. Volume Retention = 14 days
  301. Recycle = yes
  302. Recycle Oldest Volume = yes
  303. #Accept Any Volume = yes # write on any volume in the pool
  304. Maximum Volume Jobs = 1
  305. LabelFormat = "Edward"
  306. }
  307.  
  308. Pool {
  309. Name = EdwardFullPool
  310. Pool Type = Backup
  311. Recycle = yes # Bacula can automatically recycle Volumes
  312. AutoPrune = yes # Prune expired volumes
  313. Volume Retention = 30 days # one year
  314. Recycle = yes
  315. Recycle Oldest Volume = yes
  316. #Accept Any Volume = yes # write on any volume in the pool
  317. Maximum Volume Jobs = 1
  318. LabelFormat = "EdwardFull"
  319. }
  320.  
  321. Pool {
  322. Name = GhostdubNewPool
  323. Pool Type = Backup
  324. Recycle = yes # Bacula can automatically recycle Volumes
  325. AutoPrune = yes # Prune expired volumes
  326. Volume Retention = 14 days # one year
  327. Recycle = yes
  328. Recycle Oldest Volume = yes
  329. #Accept Any Volume = yes # write on any volume in the pool
  330. Maximum Volume Jobs = 1
  331. LabelFormat = "GhostdubNew"
  332. }
  333.  
  334. Pool {
  335. Name = GhostdubNewFullPool
  336. Pool Type = Backup
  337. Recycle = yes # Bacula can automatically recycle Volumes
  338. AutoPrune = yes # Prune expired volumes
  339. Volume Retention = 30 days # one year
  340. Recycle = yes
  341. Recycle Oldest Volume = yes
  342. #Accept Any Volume = yes # write on any volume in the pool
  343. Maximum Volume Jobs = 1
  344. LabelFormat = "GhostdubNewFull"
  345. }
  346.  
  347. Pool {
  348. Name = ChezaPool
  349. Pool Type = Backup
  350. Recycle = yes # Bacula can automatically recycle Volumes
  351. AutoPrune = yes
  352. Volume Retention = 14 days # one year
  353. Recycle = yes
  354. Recycle Oldest Volume = yes
  355. #Accept Any Volume = yes # write on any volume in the pool
  356. Maximum Volume Jobs = 1
  357. LabelFormat = "Cheza"
  358. }
  359.  
  360. Pool {
  361. Name = ChezaFullPool
  362. Pool Type = Backup
  363. Recycle = yes # Bacula can automatically recycle Volumes
  364. AutoPrune = yes
  365. Volume Retention = 30 days # one year
  366. Recycle = yes
  367. Recycle Oldest Volume = yes
  368. #Accept Any Volume = yes # write on any volume in the pool
  369. Maximum Volume Jobs = 1
  370. LabelFormat = "ChezaFull"
  371. }
  372.  
  373.  
  374. #########################################################
  375. # MISC DEFINITION #
  376. #########################################################
  377.  
  378.  
  379. Messages {
  380. Name = Standard
  381. mailcommand = "/usr/lib/bacula/bsmtp -h localhost -f \"\(Bacula\) %r\" -s \"Bacula: %t %e of %c %l\" %r"
  382. operatorcommand = "/usr/lib/bacula/bsmtp -h localhost -f \"\(Bacula\) %r\" -s \"Bacula: Intervention needed for %j\" %r"
  383. mail = bacula@nebuk.de = all, !skipped
  384. operator = bacula@nebuk.de = mount
  385. console = all, !skipped, !saved
  386. append = "/var/lib/bacula/log" = all, !skipped
  387. }
  388.  
  389. Messages {
  390. Name = Daemon
  391. mailcommand = "/usr/lib/bacula/bsmtp -h localhost -f \"\(Bacula\) %r\" -s \"Bacula daemon message\" %r"
  392. mail = bacula@nebuk.de = all, !skipped
  393. console = all, !skipped, !saved
  394. append = "/var/lib/bacula/log" = all, !skipped
  395. }
  396.  
  397.  
  398. Console {
  399. Name = edward-mon
  400. Password = ""Director { # define myself
  401. Name = edward-dir
  402. QueryFile = "/etc/bacula/scripts/query.sql"
  403. WorkingDirectory = "/var/lib/bacula"
  404. PidDirectory = "/var/run/bacula"
  405. Maximum Concurrent Jobs = 3
  406. Heartbeat Interval = 15
  407. Password = "" # Console password
  408. Messages = Daemon
  409. DirAddresses = {
  410. ip = { addr = 192.168.0.1; port = 9101; }
  411. ip = { addr = 127.0.0.1; port = 9101; }
  412. ip = { addr = dyn.kanojo.de; port = 9101; }
  413. }
  414. }
  415.  
  416. #########################################################
  417. # JOB DEFINITION #
  418. #########################################################
  419.  
  420. Job {
  421. Name = "edward"
  422. Type = Backup
  423. Level = Differential
  424. Client = edward-fd
  425. FileSet = "Edward Set"
  426. Schedule = "EdwardWeeklyCycle"
  427. Storage = File-Edward
  428. Messages = Standard
  429. Pool = EdwardPool
  430. Full Backup Pool = EdwardFullPool
  431. Priority = 10
  432. }
  433.  
  434. Job {
  435. Name = "ghostdubnew"
  436. Type = Backup
  437. Level = Differential
  438. Client = ghostdubnew-fd
  439. FileSet = "GhostdubNew Set"
  440. Schedule = "GhostdubNewWeeklyCycle"
  441. Storage = File-GhostdubNew
  442. Messages = Standard
  443. Pool = GhostdubNewPool
  444. Full Backup Pool = GhostdubNewFullPool
  445. Priority = 10
  446. }
  447.  
  448. #Job {
  449. # Name = "RestoreFiles"
  450. # Type = Restore
  451. # Client="ghostdubnew-fd"
  452. # FileSet="GhostdubNew Set"
  453. # Storage = File-GhostdubNew
  454. # Pool = GhostdubNewPool
  455. # Messages = Standard
  456. # Where = /tmp/bacula-restores
  457. #}
  458.  
  459. #Job {
  460. # Name = "ghostdubnew-full"
  461. # Type = Backup
  462. # Level = Full
  463. # Client = ghostdubnew-fd
  464. # FileSet = "GhostdubNew Set"
  465. # #Schedule = "GhostdubNewWeeklyCycle"
  466. # Storage = File-GhostdubNew
  467. # Messages = Standard
  468. # Pool = GhostdubNewPool
  469. # Full Backup Pool = GhostdubNewFullPool
  470. # Priority = 10
  471. }
  472.  
  473.  
  474. Job {
  475. Name = "cheza"
  476. Type = Backup
  477. Level = Differential
  478. Client = cheza-fd
  479. FileSet = "Cheza Set"
  480. Schedule = "ChezaWeeklyCycle"
  481. Storage = File-Cheza
  482. Messages = Standard
  483. Pool = ChezaPool
  484. Full Backup Pool = ChezaFullPool
  485. Priority = 10
  486.  
  487. RunBeforeJob = /etc/bacula/scripts/cheza_wakeup
  488. RunAfterJob = /etc/bacula/scripts/cheza_suspend
  489. }
  490.  
  491.  
  492. #########################################################
  493. # FILE SET DEFINITION #
  494. #########################################################
  495.  
  496. FileSet {
  497. Name = "Edward Set"
  498. Include {
  499. Options {
  500. signature = MD5
  501. }
  502. File = /
  503. }
  504.  
  505. Exclude {
  506. File = /proc
  507. File = /tmp
  508. File = /.journal
  509. File = /.fsck
  510. File = /mnt
  511. File = /media
  512. File = /store
  513. File = /store
  514. }
  515. }
  516.  
  517. FileSet {
  518. Name = "Catalog"
  519. Include {
  520. Options {
  521. signature = MD5
  522. }
  523. File = /var/lib/bacula/bacula.sql
  524. }
  525. }
  526.  
  527. FileSet {
  528. Name = "GhostdubNew Set"
  529. Include {
  530. Options {
  531. signature = MD5
  532. }
  533. File = /
  534. File = /boot
  535. }
  536.  
  537. Exclude {
  538. File = /proc
  539. File = /tmp
  540. File = /.journal
  541. File = /.fsck
  542. File = /mnt
  543. File = /media
  544. }
  545. }
  546.  
  547. FileSet {
  548. Name = "Cheza Set"
  549. Include {
  550. Options {
  551. signature = MD5
  552. }
  553. File = /
  554. }
  555.  
  556. Exclude {
  557. File = /proc
  558. File = /tmp
  559. File = /.journal
  560. File = /.fsck
  561. File = /mnt
  562. File = /media
  563. File = /store
  564. File = /dta
  565. File = /edward
  566. File = /ext
  567. File = /store2
  568. File = /store3
  569. File = /data
  570. }
  571. }
  572.  
  573.  
  574.  
  575. #########################################################
  576. # SCHEDULE DEFINITION #
  577. #########################################################
  578.  
  579.  
  580. Schedule {
  581. Name = "EdwardWeeklyCycle"
  582. Run = Full 2nd sun at 03:05
  583. Run = Differential tue at 03:05
  584. Run = Differential thu at 03:05
  585. Run = Differential sat at 03:05
  586.  
  587. }
  588.  
  589. Schedule {
  590. Name = "GhostdubNewWeeklyCycle"
  591. Run = Full 2nd sun at 03:05
  592. Run = Differential tue at 04:05
  593. Run = Differential thu at 04:05
  594. Run = Differential sat at 04:05
  595.  
  596. }
  597. Schedule {
  598. Name = "ChezaWeeklyCycle"
  599. Run = Full 2nd sun at 05:05
  600. Run = Differential tue at 05:05
  601. Run = Differential thu at 05:05
  602. Run = Differential sat at 05:05
  603. }
  604.  
  605. #########################################################
  606. # CLIENT DEFINITION #
  607. #########################################################
  608.  
  609.  
  610. Client {
  611. Name = edward-fd
  612. Address = edward
  613. FDPort = 9102
  614. Catalog = MyCatalog
  615. Password = "" # password for FileDaemon
  616. File Retention = 30 days # 30 days
  617. Job Retention = 30 days # six months
  618. AutoPrune = yes # Prune expired Jobs/Files
  619. }
  620.  
  621. Client {
  622. Name = ghostdubnew-fd
  623. Address = ghostdub.de
  624. FDPort = 9105
  625. Catalog = MyCatalog
  626. Password = "" # password for FileDaemon
  627. File Retention = 30 days # 30 days
  628. Job Retention = 30 days # six months
  629. AutoPrune = yes # Prune expired Jobs/Files
  630. }
  631.  
  632.  
  633. Client {
  634. Name = cheza-fd
  635. Address = cheza
  636. FDPort = 9102
  637. Catalog = MyCatalog
  638. Password = "" # password for FileDaemon
  639. File Retention = 30 days # 30 days
  640. Job Retention = 30 days # six months
  641. AutoPrune = yes # Prune expired Jobs/Files
  642. }
  643.  
  644. #########################################################
  645. # STORAGE DEFINITION #
  646. #########################################################
  647.  
  648.  
  649. Storage {
  650. Name = File-Edward
  651. Address = edward # N.B. Use a fully qualified name here
  652. SDPort = 9103
  653. Password = ""
  654. Device = FileStorage-Edward
  655. Media Type = File
  656. Heartbeat Interval = 15
  657. }
  658.  
  659. Storage {
  660. Name = File-GhostdubNew
  661. Address = dyn.kanojo.de # N.B. Use a fully qualified name here
  662. SDPort = 9103
  663. Password = ""
  664. Device = FileStorage-GhostdubNew
  665. Media Type = File
  666. Heartbeat Interval = 15
  667. }
  668.  
  669. Storage {
  670. Name = File-Cheza
  671. Address = edward # N.B. Use a fully qualified name here
  672. SDPort = 9103
  673. Password = ""
  674. Device = FileStorage-Cheza
  675. Media Type = File
  676. Heartbeat Interval = 15
  677. }
  678.  
  679.  
  680. #########################################################
  681. # CATALOG DEFINITION #
  682. #########################################################
  683.  
  684. Catalog {
  685. Name = MyCatalog
  686. dbname = bacula; password = "@db_pswd@"
  687. }
  688.  
  689.  
  690. #########################################################
  691. # POOL DEFINITION #
  692. #########################################################
  693.  
  694. Pool {
  695. Name = EdwardPool
  696. Pool Type = Backup
  697. Recycle = yes # Bacula can automatically recycle Volumes
  698. AutoPrune = yes # Prune expired volumes
  699. Volume Retention = 14 days
  700. Recycle = yes
  701. Recycle Oldest Volume = yes
  702. #Accept Any Volume = yes # write on any volume in the pool
  703. Maximum Volume Jobs = 1
  704. LabelFormat = "Edward"
  705. }
  706.  
  707. Pool {
  708. Name = EdwardFullPool
  709. Pool Type = Backup
  710. Recycle = yes # Bacula can automatically recycle Volumes
  711. AutoPrune = yes # Prune expired volumes
  712. Volume Retention = 30 days # one year
  713. Recycle = yes
  714. Recycle Oldest Volume = yes
  715. #Accept Any Volume = yes # write on any volume in the pool
  716. Maximum Volume Jobs = 1
  717. LabelFormat = "EdwardFull"
  718. }
  719.  
  720. Pool {
  721. Name = GhostdubNewPool
  722. Pool Type = Backup
  723. Recycle = yes # Bacula can automatically recycle Volumes
  724. AutoPrune = yes # Prune expired volumes
  725. Volume Retention = 14 days # one year
  726. Recycle = yes
  727. Recycle Oldest Volume = yes
  728. #Accept Any Volume = yes # write on any volume in the pool
  729. Maximum Volume Jobs = 1
  730. LabelFormat = "GhostdubNew"
  731. }
  732.  
  733. Pool {
  734. Name = GhostdubNewFullPool
  735. Pool Type = Backup
  736. Recycle = yes # Bacula can automatically recycle Volumes
  737. AutoPrune = yes # Prune expired volumes
  738. Volume Retention = 30 days # one year
  739. Recycle = yes
  740. Recycle Oldest Volume = yes
  741. #Accept Any Volume = yes # write on any volume in the pool
  742. Maximum Volume Jobs = 1
  743. LabelFormat = "GhostdubNewFull"
  744. }
  745.  
  746. Pool {
  747. Name = ChezaPool
  748. Pool Type = Backup
  749. Recycle = yes # Bacula can automatically recycle Volumes
  750. AutoPrune = yes
  751. Volume Retention = 14 days # one year
  752. Recycle = yes
  753. Recycle Oldest Volume = yes
  754. #Accept Any Volume = yes # write on any volume in the pool
  755. Maximum Volume Jobs = 1
  756. LabelFormat = "Cheza"
  757. }
  758.  
  759. Pool {
  760. Name = ChezaFullPool
  761. Pool Type = Backup
  762. Recycle = yes # Bacula can automatically recycle Volumes
  763. AutoPrune = yes
  764. Volume Retention = 30 days # one year
  765. Recycle = yes
  766. Recycle Oldest Volume = yes
  767. #Accept Any Volume = yes # write on any volume in the pool
  768. Maximum Volume Jobs = 1
  769. LabelFormat = "ChezaFull"
  770. }
  771.  
  772.  
  773. #########################################################
  774. # MISC DEFINITION #
  775. #########################################################
  776.  
  777.  
  778. Messages {
  779. Name = Standard
  780. mailcommand = "/usr/lib/bacula/bsmtp -h localhost -f \"\(Bacula\) %r\" -s \"Bacula: %t %e of %c %l\" %r"
  781. operatorcommand = "/usr/lib/bacula/bsmtp -h localhost -f \"\(Bacula\) %r\" -s \"Bacula: Intervention needed for %j\" %r"
  782. mail = bacula@nebuk.de = all, !skipped
  783. operator = bacula@nebuk.de = mount
  784. console = all, !skipped, !saved
  785. append = "/var/lib/bacula/log" = all, !skipped
  786. }
  787.  
  788. Messages {
  789. Name = Daemon
  790. mailcommand = "/usr/lib/bacula/bsmtp -h localhost -f \"\(Bacula\) %r\" -s \"Bacula daemon message\" %r"
  791. mail = bacula@nebuk.de = all, !skipped
  792. console = all, !skipped, !saved
  793. append = "/var/lib/bacula/log" = all, !skipped
  794. }
  795.  
  796.  
  797. Console {
  798. Name = edward-mon
  799. Password = ""
  800. CommandACL = status, .status
  801. }
  802.  
  803. CommandACL = status, .status
  804. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement