Advertisement
dUc0N

Server Configs (Minecraft)

Jun 6th, 2011
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 17.86 KB | None | 0 0
  1. # Config files from my server:
  2.  
  3. ##############################################################################
  4. # File listing                                                               #
  5. ##############################################################################
  6. [mineserv@inquisitor Permissions]$ pwd
  7. /srv/minecraft/plugins/Permissions
  8. [mineserv@inquisitor Permissions]$ ls -laR
  9. .:
  10. total 40
  11. drwxr-xr-x  5 mineserv nobody 4096 Jun  6 22:25 .
  12. drwxr-xr-x 13 mineserv nobody 4096 Jun  6 22:25 ..
  13. -rw-r--r--  1 mineserv nobody 8988 Jun  6 22:20 globalGroups.yml
  14. -rw-r--r--  1 mineserv nobody  344 Jun  6 22:19 globalUsers.yml
  15. drwxr-xr-x  2 mineserv nobody 4096 Jun  6 21:10 main
  16. drwxr-xr-x  2 mineserv nobody 4096 Jun  6 21:05 main_nether
  17. drwxr-xr-x  2 mineserv nobody 4096 Jun  6 21:05 sphere
  18. -rw-r--r--  1 mineserv nobody  119 Jun  6 21:09 storageconfig.yml
  19.  
  20. ./main:
  21. total 24
  22. drwxr-xr-x 2 mineserv nobody 4096 Jun  6 21:10 .
  23. -rw-r--r-- 1 mineserv nobody 8989 Jun  6 22:43 groups.yml       <-- These are just copies
  24. -rw-r--r-- 1 mineserv nobody  343 Jun  6 22:43 users.yml        <-- of the global ones
  25. drwxr-xr-x 5 mineserv nobody 4096 Jun  6 22:25 ..
  26.  
  27. ./main_nether:
  28. total 8
  29. drwxr-xr-x 2 mineserv nobody 4096 Jun  6 21:05 .
  30. drwxr-xr-x 5 mineserv nobody 4096 Jun  6 22:25 ..
  31.  
  32. ./sphere:
  33. total 8
  34. drwxr-xr-x 2 mineserv nobody 4096 Jun  6 21:05 .
  35. drwxr-xr-x 5 mineserv nobody 4096 Jun  6 22:25 ..
  36. [mineserv@inquisitor Permissions]$ ls -al ../
  37. total 2104
  38. drwxr-xr-x 13 mineserv nobody   4096 Jun  6 22:25 .
  39. drwxr--r--  7 mineserv nobody   4096 Jun  6 22:51 ..
  40. -rw-r--r--  1 mineserv nobody    786 Apr 24 13:14 blacklist_table.sql
  41. -rw-r--r--  1 mineserv nobody   4237 Jun  5 20:57 ChunkRegenerate.jar
  42. drwxr-xr-x  2 mineserv nobody   4096 Apr 24 14:00 craftscripts
  43. drwxr-xr-x  4 mineserv nobody   4096 Jun  5 18:47 Essentials
  44. -rw-r--r--  1 mineserv nobody   6359 Jun  1 21:10 EssentialsChat.jar
  45. drwxr-xr-x  2 mineserv nobody   4096 Jun  5 12:16 EssentialsGeoIP
  46. -rw-r--r--  1 mineserv nobody 257566 Jun  1 21:10 EssentialsGeoIP.jar
  47. -rw-r--r--  1 mineserv nobody 705910 Jun  1 21:10 Essentials.jar
  48. -rw-r--r--  1 mineserv nobody  50505 Jun  1 21:10 EssentialsProtect.jar
  49. -rw-r--r--  1 mineserv nobody   6259 Jun  1 21:10 EssentialsSpawn.jar
  50. drwxr-xr-x  4 mineserv nobody   4096 Jun  6 01:39 GroupManager
  51. -rw-r--r--  1 mineserv nobody  13481 May 15 18:20 Labyrinth.jar
  52. drwxr-xr-x  5 mineserv nobody   4096 Jun  6 22:51 Permissions
  53. drwxr-xr-x  2 mineserv nobody   4096 Jun  5 12:14 PermissionsAttributeProvider
  54. -rw-r--r--  1 mineserv nobody   6413 May 11 17:36 PermissionsAttributeProvider.jar
  55. drwxr-xr-x  2 mineserv nobody   4096 Jun  6 08:17 .permissions-backup
  56. -rw-r--r--  1 mineserv nobody    577 May  9 09:23 plugin.yml
  57. -rw-r--r--  1 mineserv nobody  58029 May 28 22:00 runecraft2.7.jar
  58. -rw-r--r--  1 mineserv nobody  21889 May  9 09:23 SignReadMore.jar
  59. drwxr-xr-x  2 mineserv nobody   4096 Jun  6 22:50 spare-parts               <-- Stuff like EssentialsGroupManager
  60. drwxr-xr-x  2 mineserv nobody   4096 Jun  6 21:28 SphereWorld
  61. -rw-r--r--  1 mineserv nobody 174489 Jun  1 08:44 SphereWorld-818-4f.jar
  62. drwxr-xr-x  2 mineserv nobody   4096 Jun  5 12:16 WorldEdit
  63. -rw-r--r--  1 mineserv nobody 460371 Apr 24 14:00 WorldEdit.jar
  64. drwxr-xr-x  3 mineserv nobody   4096 Jun  5 12:15 WorldGuard
  65. -rw-r--r--  1 mineserv nobody 224349 Apr 24 13:14 WorldGuard.jar
  66. -rw-r--r--  1 mineserv nobody  72897 Jun  4 21:09 zPermissions.jar
  67.  
  68. ##############################################################################
  69. # /srv/minecraft/plugins/Permissions/storageconfig.yml                       #
  70. ##############################################################################
  71. permissions:
  72.     storage:
  73.         type: YAML
  74.         worldcopy:
  75.             sphere: main
  76.             main_nether: main
  77.  
  78. ##############################################################################
  79. # /srv/minecraft/plugins/Permissions/globalUsers.yml                         #
  80. ##############################################################################
  81. ##
  82. # Users denote which users are included in which group. TheNo1Yeti is in the Admin group Herpina is a member of the Moderator group but also has access to the herp.derp permissions Derpina is a member of the admin group but does
  83. # not have access to the derp.derp permission node Users can have a prefix and suffix of their own.
  84. ##
  85. users:
  86. ##############################################################################
  87. # /srv/minecraft/plugins/Permissions/globalGroups.yml                        #
  88. ##############################################################################
  89. ##
  90. # AntiBuild is included with this.  To disable a group from being able to build then
  91. # set the build: flag to false (build: false).  If you want a group to be able to build
  92. # then set it to true.
  93. ##
  94. # Groups can contain inheritance.
  95. #   To make a group inherit the permissions from another
  96. #   group simply place the groups name in the "inheritance:" like so:
  97. #
  98. #   Example:
  99. #       inheritance:
  100. #           - Default
  101. ##
  102. #   Globalized Permission settings:
  103. #
  104. #       If a permission contains periods (.) you can denote a globalized parameter:
  105. #
  106. #           - 'foo.*'
  107. #
  108. #       This will allow you to use all general commands.
  109. #
  110. ##
  111. #   Single Asterisk denotes all commands:
  112. #
  113. #       - '*'
  114. ##
  115. #   To exempt a node use the - prefix like so:
  116. #       - '-foo.bar'
  117. ##
  118. #   prefix: and suffix: do not do anything on their own.  You need another outside plugin
  119. #   such as iChat or HeroChat in order for these to do anything.
  120. #
  121. # Basic YAML guide: https://github.com/TheYeti/Permissions/wiki/Guide-to-creating-YAML-configs
  122. #
  123. # PERMISSIONS REFERENCES:
  124. # Essentials - http://ess.earth2me.com/index.php/Command_Reference#Group_Manager_Commands
  125. # Labyrinth -  labyrinth.* allows everything
  126. # WorldGuard - http://forums.bukkit.org/threads/sec-worldguard-5-0-alpha10-multi-world-fire-polygonal-region-protection-with-blacklist-818.790/
  127. # WorldEdit -  http://forums.bukkit.org/threads/edit-sec-worldedit-4-6-new-2x-faster-global-masks-world-editing-de-griefing-818.62/
  128. # RuneCraft -  http://forums.bukkit.org/threads/fun-tp-mech-runecraft-v2-7-magic-effects-using-runes-766-818.14897/
  129. #
  130. groups:
  131.     Visitor:
  132.         default: true
  133.         info:
  134.             prefix: '&8'
  135.             suffix: '&f'
  136.             build: false
  137.         inheritance:
  138.         permissions:
  139.            - '-*'
  140.             - 'essentials.help'
  141.             - 'essentials.tpaccept'
  142.             - 'essentials.tpdeny'
  143.             - 'essentials.tpa'
  144.             - 'essentials.tpahere'
  145.             - 'essentials.balance'
  146.             - 'essentials.tptoggle'
  147.             - 'essentials.pay'
  148.             - 'essentials.info'
  149.             - 'essentials.msg'
  150.             - 'essentials.afk'
  151.             - 'essentials.rules'
  152.             - 'essentials.motd'
  153.             - 'essentials.me'
  154.             - 'essentials.list'
  155.             - 'essentials.helpop'
  156.             - 'essentials.whois'
  157.             - 'essentials.realname'
  158.             - 'essentials.seen'
  159.             - 'essentials.clearinventory'
  160.             - 'essentials.suicide'
  161.             - 'groupmanager.manwhois'
  162.             - 'essentials.signs.warp.use'
  163.     Member:
  164.         default: false
  165.         info:
  166.             prefix: '&f'
  167.             suffix: '&f'
  168.             build: true
  169.         inheritance:
  170.            - Visitor
  171.         permissions:
  172.            - 'essentials.signs.mail.use'
  173.             - 'essentials.signs.protection.create'
  174.             - 'essentials.signs.protection.use'
  175.             - 'essentials.signs.disposal.create'
  176.             - 'essentials.signs.disposal.use'
  177.             - 'essentials.signs.heal.use'
  178.             - 'essentials.signs.warp.use'
  179.             - 'essentials.signs.trade.use'
  180.             - 'essentials.signs.buy.use'
  181.             - 'essentials.signs.sell.use'
  182.             - 'essentials.signs.balance.use'
  183.             - 'essentials.portal'
  184.             - 'essentials.worth'
  185.             - 'essentials.sell'
  186.             - 'essentials.mail'
  187.             - 'essentials.mail.send'
  188.             - 'essentials.nick'
  189.             - 'essentials.spawn'
  190.             - 'essentials.chat.color'
  191.             - 'runecraft.teleport'
  192.             - 'runecraft.rune.*'
  193.             - '-runecraft.rune.hiddendoor'
  194.             - '-runecraft.rune.pyrokinesis'
  195.             - '-runecraft.rune.solarflare'
  196.             - '-runecraft.rune.faith'
  197.             - '-runecraft.rune.warppoint'
  198.             - '-runecraft.rune.topsyturvy'
  199.             - '-runecraft.rune.mound'
  200.             - '-runecraft.rune.bridgemaster'
  201.             - '-runecraft.rune.secretpanel'
  202.             - '-runecraft.rune.magicbeacon'
  203.             - '-runecraft.rune.zeerixschest'
  204.             - '-runecraft.rune.phaseblocks'
  205.             - '-runecraft.rune.surfacetension'
  206.             - '-runecraft.rune.accelerator'
  207.             - '-runecraft.rune.spring'
  208.             - '-runecraft.rune.forcefield'
  209.             - '-runecraft.rune.adminpick'
  210.             - '-runecraft.rune.altarofjudgement'
  211.     Elite:
  212.         default: false
  213.         info:
  214.             prefix: '&a'
  215.             suffix: '&f'
  216.             build: true
  217.         inheritance:
  218.            - Member
  219.         permissions:
  220.            - 'essentials.signs.mail.create'
  221.             - 'essentials.depth'
  222.             - 'essentials.getpos'
  223.             - 'essentials.compass'
  224.             - 'essentials.tp'
  225. #            - 'essentials.spawnmob'
  226.             - 'essentials.broadcast'
  227.             - 'essentials.ext'
  228. #            - 'essentials.kit'
  229.             - 'essentials.protect.admin'
  230.             - 'essentials.protect.exemptplacement'
  231.             - 'essentials.protect.exemptusage'
  232.             - 'essentials.spawn'
  233.             - 'essentials.shout'
  234.             - 'essentials.question'
  235.             - 'essentials.balance.others'
  236.             - 'signreadmore.srm'
  237.             - 'worldguard.stack'
  238.             - 'worldguard.locate'
  239.             - 'runecraft.rune.*'
  240.             - '-runecraft.rune.adminpick'
  241.             - '-runecraft.rune.altarofjudgement'
  242.     Moderator:
  243.         default: false
  244.         info:
  245.             prefix: '&a'
  246.             suffix: '&f'
  247.             build: true
  248.         inheritance:
  249.            - Elite
  250.         permissions:
  251.            - 'essentials.signs.*'
  252.             - 'essentials.top'
  253.             - 'essentials.jump'
  254.             - 'essentials.back'
  255.             - 'essentials.back.ondeath'
  256.             - 'essentials.world'
  257.             - 'essentials.tpo'
  258.             - 'essentials.tphere'
  259.             - 'essentials.tpohere'
  260.             - 'essentials.tpall'
  261.             - 'essentials.home'
  262.             - 'essentials.home.others'
  263.             - 'essentials.sethome'
  264.             - 'essentials.warp'
  265.             - 'essentials.warp.*'
  266.             - 'essentials.setworth'
  267.             - 'essentials.helpop.receive'
  268.             - 'essentials.gc'
  269.             - 'essentials.spawnmob'
  270.             - 'essentials.clearinventory.others'
  271.             - 'essentials.antioch'
  272.             - 'essentials.burn'
  273.             - 'essentials.kill'
  274.             - 'essentials.backup'
  275.             - 'essentials.nuke'
  276.             - 'essentials.ban'
  277.             - 'essentials.tempban'
  278.             - 'essentials.banip'
  279.             - 'essentials.mute'
  280.             - 'essentials.kick'
  281.             - 'essentials.unban'
  282.             - 'essentials.unbanip'
  283.             - 'essentials.togglejail'
  284.             - 'essentials.invsee'
  285.             - 'essentials.give'
  286.             - 'essentials.item'
  287.             - 'essentials.time'
  288.             - 'essentials.tree'
  289.             - 'essentials.bigtree'
  290.             - 'essentials.god'
  291.             - 'essentials.god.others'
  292.             - 'essentials.heal.*'
  293.             - 'essentials.heal'
  294.             - 'essentials.powertool'
  295.             - 'essentials.thunder'
  296.             - 'essentials.lightning'
  297.             - 'essentials.protect.*'
  298.             - 'essentials.chat.*'
  299.             - 'essentials.geoip.show'
  300.             - 'groupmanager.manuadd'
  301.             - 'groupmanager.manudel'
  302.             - 'groupmanager.manpromote'
  303.             - 'groupmanager.mandemote'
  304.             - 'permissions.promote.*'
  305.             - 'chunkregenerate.chunkregenerate'
  306.             - 'worldedit.fixlava'
  307.             - 'worldedit.fixwater'
  308.             - 'worldedit.snow'
  309.             - 'worldedit.thaw'
  310.             - 'worldedit.butcher'
  311.             - 'worldguard.*'
  312.             - '-worldguard.region.bypass.*'
  313.     Admin:
  314.         default: false
  315.         info:
  316.             prefix: '&9'
  317.             suffix: '&f'
  318.             build: true
  319.         inheritance:
  320.            - Moderator
  321.         permissions:
  322.            - 'essentials.teleport.*'
  323.             - 'essentials.tppos'
  324.             - 'essentials.setwarp'
  325.             - 'essentials.delwarp'
  326.             - 'essentials.eco'
  327.             - 'essentials.essentials'
  328.             - 'essentials.reloadall'
  329.             - 'essentials.plugin'
  330.             - 'essentials.ping'
  331.             - 'essentials.setjail'
  332.             - 'essentials.deljail'
  333.             - 'essentials.jail.exempt'
  334.             - 'essentials.unlimited'
  335.             - 'essentials.time'
  336.             - 'essentials.weather'
  337.             - 'essentials.setspawn'
  338.             - 'groupmanager.*'
  339.             - 'worldedit.*'
  340.             - 'labyrinth.*'
  341.             - 'runecraft.rune.*'
  342.             - 'permissions.reload.*'
  343.             - 'permissions.list.*'
  344.             - 'worldguard.region.bypass.*'
  345.     Superuser:
  346.         default: false
  347.         info:
  348.             prefix: '&c'
  349.             suffix: '&f'
  350.             build: true
  351.         inheritance:
  352.         permissions:
  353.            - '*'
  354. #
  355. tracks:
  356.     Maintrack:
  357.    - Visitor
  358.     - Member
  359.     - Elite
  360.     - Moderator
  361.     - Admin
  362.     - Superuser
  363.  
  364. ##############################################################################
  365. # Output                                                                     #
  366. ##############################################################################
  367. 22:44:31 [INFO] Reload complete.
  368. >pr -list worlds
  369. 22:44:34 [INFO] [Permissions] Loaded worlds: * ,main_nether ,sphere ,main
  370. 22:44:36 [INFO] dUc0N [/192.168.1.152:59635] logged in with entity id 226 at (181.59375, 36.0, 257.15625)
  371. 22:44:36 [INFO] Creating user dUc0N
  372. >pr -list groups sphere
  373. 22:44:47 [INFO] [Permissions] Groups: Member, Admin, Moderator, Elite, Superuser, Visitor
  374. >pr -list groups main
  375. 22:44:52 [INFO] [Permissions] Groups: Member, Admin, Moderator, Elite, Superuser, Visitor
  376. >pr -list groups *
  377. 22:45:00 [INFO] [Permissions] Groups: Member, Admin, Moderator, Elite, Superuser, Visitor
  378. >pr dUc0N parents listall
  379. 22:45:11 [INFO] [Permissions] No world specified. Defaulting to default world.
  380. 22:45:11 [INFO] [Permissions] Parents: Group Visitor in main, Group Visitor in *
  381. >pr dUc0N w:* parents add Admin
  382. 22:46:12 [INFO] [Permissions] User/Group does not exist.
  383. 22:46:12 [INFO] [Permissions] Using closest match dUc0N.
  384. 22:46:12 [INFO] [Permissions] Closest user/group does not exist.
  385. >pr dUc0N w:* parents add Admin w:*
  386. 22:46:43 [INFO] [Permissions] User/Group does not exist.
  387. 22:46:43 [INFO] [Permissions] Using closest match dUc0N.
  388. 22:46:43 [INFO] [Permissions] Closest user/group does not exist.
  389. >pr dUc0N parents add Admin
  390. 22:46:50 [INFO] [Permissions] No world specified. Defaulting to default world.
  391. 22:46:50 [INFO] [Permissions] Parent added successfully.
  392. >pr dUc0N parents remove Visitor
  393. 22:46:59 [INFO] [Permissions] No world specified. Defaulting to default world.
  394. 22:46:59 [INFO] [Permissions] User/Group does not have such a parent.
  395. >pr dUc0N parents listall
  396. 22:47:15 [INFO] [Permissions] No world specified. Defaulting to default world.
  397. 22:47:15 [INFO] [Permissions] Parents: Group Admin in main, Group Moderator in main, Group Admin in *, Group Elite in main, Group Moderator in *, Group Member in main, Group Elite in *, Group Visitor in main, Group Member in *, Group Visitor in *
  398. >
  399. ###############################################################################
  400. # Output 2: So I deleted the globalUsers and globalGroups, and this happened: #
  401. ###############################################################################
  402. 22:51:56 [INFO] Reload complete.
  403. >pr -list worlds
  404. 22:51:58 [INFO] [Permissions] Loaded worlds: * ,main_nether ,sphere ,main
  405. >pr dUc0N parents listall
  406. 22:52:05 [INFO] [Permissions] No world specified. Defaulting to default world.
  407. 22:52:05 [INFO] [Permissions] Parents: Group Admin in main, Group Moderator in main, Group Elite in main, Group Member in main, Group Visitor in main
  408. 22:52:54 [INFO] dUc0N [/192.168.1.152:59977] logged in with entity id 218 at (181.59375, 36.0, 257.15625)
  409. >pr -reload all
  410. 22:53:10 [INFO] [Permissions] All worlds reloaded.
  411. >pr dUc0N w:sphere parents listall
  412. 22:53:17 [INFO] [Permissions] Parents: Group Admin in main, Group Moderator in main, Group Elite in main, Group Member in main, Group Visitor in main
  413. 22:53:45 [INFO] §9[PLAYER_COMMAND] dUc0N: /world main
  414. 22:53:56 [INFO] §9[PLAYER_COMMAND] dUc0N: /time day
  415. 22:54:08 [INFO] §9[PLAYER_COMMAND] dUc0N: /world sphere
  416. >pr dUc0N parent remove
  417. 22:55:54 [INFO] [Permissions] No world specified. Defaulting to default world.
  418. 22:55:54 [INFO] [Permissions] Syntax:
  419. 22:55:54 [INFO] /permissions <target> (w:<world>) [promote|demote] ...
  420. 22:55:54 [INFO] /permissions (g:)<target> (w:<world>) [perms|parents] [list|add|remove] ...
  421. 22:55:54 [INFO] /permissions (g:)<target> (w:<world>) info [get|set|remove] ...
  422. 22:55:54 [INFO] /permissions (g:)<target> (w:<world>) [prefix|suffix|build] [get|set] ...
  423. 22:55:54 [INFO] /pr | Displays Permissions Info
  424. 22:55:54 [INFO] /pr -reload | Reloads the default world
  425. 22:55:54 [INFO] /pr -reload all | Reloads all worlds
  426. 22:55:54 [INFO] /pr -reload [world] | Reloads [world]
  427. 22:55:54 [INFO] /pr (g:)<target> (w:<targetworld>) (action) (actionparams) | Directs (action) on specified group/user.
  428. >pr dUc0N parents remove Visitor
  429. 22:56:04 [INFO] [Permissions] No world specified. Defaulting to default world.
  430. 22:56:04 [INFO] [Permissions] User/Group does not have such a parent.
  431. >
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement