Advertisement
Guest User

Untitled

a guest
Jan 15th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.79 KB | None | 0 0
  1. ####################################################################################################
  2.  
  3. # +----------------------------------------------------------------------------------------------+ #
  4.  
  5. # | __ __ ___ __ __ | #
  6.  
  7. # | | | | / ` |__/ |__) |__ |__) |\/| /__` | #
  8.  
  9. # | |___ \__/ \__, | \ | |___ | \ | | .__/ | #
  10.  
  11. # | | #
  12.  
  13. # | | #
  14.  
  15. # | SOURCE CODE: https://github.com/lucko/LuckPerms | #
  16.  
  17. # | WIKI: https://github.com/lucko/LuckPerms/wiki | #
  18.  
  19. # | BUG REPORTS: https://github.com/lucko/LuckPerms/issues | #
  20.  
  21. # | | #
  22.  
  23. # | Each option in this file is documented and explained here: | #
  24.  
  25. # | ==> https://github.com/lucko/LuckPerms/wiki/Configuration | #
  26.  
  27. # | | #
  28.  
  29. # | New options are not added to this file automatically. Default values are used if an | #
  30.  
  31. # | option cannot be found. The latest config versions can be obtained at the link above. | #
  32.  
  33. # +----------------------------------------------------------------------------------------------+ #
  34.  
  35. ####################################################################################################
  36.  
  37.  
  38.  
  39. # +----------------------------------------------------------------------------------------------+ #
  40.  
  41. # | General | #
  42.  
  43. # +----------------------------------------------------------------------------------------------+ #
  44.  
  45.  
  46.  
  47. # The name of the server, used for server specific permissions. Set to 'global' to disable.
  48.  
  49. server: hcf
  50.  
  51.  
  52.  
  53. # If users on this server should have their global permissions applied.
  54.  
  55. # If set to false, only server specific permissions will apply for users on this server
  56.  
  57. include-global: true
  58.  
  59.  
  60.  
  61. # If users on this server should have their global world permissions applied.
  62.  
  63. # If set to false, only world specific permissions will apply for users on this server
  64.  
  65. include-global-world: true
  66.  
  67.  
  68.  
  69. # If users on this server should have global (non-server specific) groups applied
  70.  
  71. apply-global-groups: true
  72.  
  73.  
  74.  
  75. # If users on this server should have global (non-world specific) groups applied
  76.  
  77. apply-global-world-groups: true
  78.  
  79.  
  80.  
  81. # If UUIDs should be pulled from the server, or looked up by username based upon previous
  82.  
  83. # connections.
  84.  
  85. #
  86.  
  87. # This option should be set to true in most cases. When set to false, in order to get a player's
  88.  
  89. # UUID, LuckPerms will:
  90.  
  91. #
  92.  
  93. # 1. Check if a player with the given username has joined before, if they have, use the UUID they
  94.  
  95. # used on their previous login.
  96.  
  97. # 2. Save and return the players "current" uuid.
  98.  
  99. #
  100.  
  101. # For offline mode (cracked) servers, a players UUID is generated based upon their username.
  102.  
  103. #
  104.  
  105. # IMPORTANT:
  106.  
  107. # If you are using BungeeCord proxy running in online mode, it is important that "online-mode=false"
  108.  
  109. # is set in server.properties, but "bungeecord: true" is set in the spigot.yml. You also need to set
  110.  
  111. # "ip_forward: true" in BungeeCord's config.yml.
  112.  
  113. #
  114.  
  115. # If for whatever reason you are not able to do this, and do not have ip-forward enabled, then you
  116.  
  117. # may need to set "use-server-uuids" to false.
  118.  
  119. #
  120.  
  121. # If your proxy is running in offline mode, you should still be setting up ip-forwarding as
  122.  
  123. # described above, but may also find that you need to set "bungee-online-mode" to false in
  124.  
  125. # paper.yml, if you are using Paper. (https://ci.destroystokyo.com/job/PaperSpigot/)
  126.  
  127. #
  128.  
  129. # This option only really exists for networks who for whatever reason cannot setup proper ip
  130.  
  131. # forwarding.
  132.  
  133. use-server-uuids: true
  134.  
  135.  
  136.  
  137. # If the servers own UUID cache/lookup facility should be used when there is no record for a player
  138.  
  139. # in the LuckPerms cache.
  140.  
  141. use-server-uuid-cache: false
  142.  
  143.  
  144.  
  145. # If set to true, LuckPerms will allow usernames with non alphanumeric characters.
  146.  
  147. #
  148.  
  149. # Note that due to the design of the storage implementation, usernames must still be
  150.  
  151. # 16 characters or less.
  152.  
  153. allow-invalid-usernames: false
  154.  
  155.  
  156.  
  157. # If LuckPerms should produce extra logging output when it handles logins.
  158.  
  159. # Useful if you're having issues with UUID forwarding or data not being loaded.
  160.  
  161. debug-logins: false
  162.  
  163.  
  164.  
  165. # If the plugin should send log notifications to users whenever permissions are modified.
  166.  
  167. log-notify: true
  168.  
  169.  
  170.  
  171. # Mirrors world names. Whenever LuckPerms checks what world a user is in, if the world name is in
  172.  
  173. # this list, the value assigned will be sent forward for permission calculation instead.
  174.  
  175. world-rewrite:
  176.  
  177. # world_nether: world
  178.  
  179. # world_the_end: world
  180.  
  181.  
  182.  
  183. # Controls how temporary permissions/parents/meta should be accumulated
  184.  
  185. #
  186.  
  187. # The default behaviour is "deny"
  188.  
  189. # If "accumulate": durations will be added to the existing expiry time
  190.  
  191. # If "replace": durations will be replaced if the new duration is later than the current expiration
  192.  
  193. # If "deny": the command will just fail if you try to add another node with the same expiry
  194.  
  195. temporary-add-behaviour: deny
  196.  
  197.  
  198.  
  199. # How should LuckPerms determine a users "primary" group.
  200.  
  201. #
  202.  
  203. # Available Options:
  204.  
  205. # -> stored use the value stored against the users record in the file/database
  206.  
  207. # -> parents-by-weight just use the users most highly weighted parent
  208.  
  209. # -> all-parents-by-weight same as above, but calculates based upon all parents inherited from both
  210.  
  211. # directly and indirectly
  212.  
  213. primary-group-calculation: parents-by-weight
  214.  
  215.  
  216.  
  217. # If set to false, the plugin will allow a Users primary group to be removed with the
  218.  
  219. # 'parent remove' command, and will set their primary group back to default.
  220.  
  221. prevent-primary-group-removal: false
  222.  
  223.  
  224.  
  225. # If the plugin should check for "extra" permissions with users run LP commands.
  226.  
  227. #
  228.  
  229. # These extra permissions allow finer control over what users can do with each command, and
  230.  
  231. # who they have access to edit.
  232.  
  233. #
  234.  
  235. # The permissions are *not* static, unlike the 'base' permisssions, and will depend upon the
  236.  
  237. # arguments given within the command.
  238.  
  239. argument-based-command-permissions: false
  240.  
  241.  
  242.  
  243.  
  244.  
  245.  
  246.  
  247.  
  248.  
  249. # +----------------------------------------------------------------------------------------------+ #
  250.  
  251. # | Permission Calculation | #
  252.  
  253. # +----------------------------------------------------------------------------------------------+ #
  254.  
  255.  
  256.  
  257. # If the plugin should apply wildcard permissions.
  258.  
  259. # If set to true, LuckPerms will detect wildcard permissions, and resolve & apply all registered
  260.  
  261. # permissions matching the wildcard.
  262.  
  263. apply-wildcards: true
  264.  
  265.  
  266.  
  267. # If the plugin should parse regex permissions.
  268.  
  269. # If set to true, LuckPerms will detect regex permissions, marked with "r=" at the start of the
  270.  
  271. # node, and resolve & apply all registered permissions matching the regex.
  272.  
  273. apply-regex: true
  274.  
  275.  
  276.  
  277. # If the plugin should complete and apply shorthand permissions.
  278.  
  279. # If set to true, LuckPerms will detect and expand shorthand node patterns.
  280.  
  281. apply-shorthand: true
  282.  
  283.  
  284.  
  285. # If the plugin should apply Bukkit child permissions.
  286.  
  287. # Plugin authors can define custom permissions structures for their plugin, which will be resolved
  288.  
  289. # and used by LuckPerms if this setting is enabled.
  290.  
  291. apply-bukkit-child-permissions: true
  292.  
  293.  
  294.  
  295. # If the plugin should apply Bukkit default permissions.
  296.  
  297. # Plugin authors can define permissions which should be given to all users by default, or setup
  298.  
  299. # permissions which should/shouldn't be given to opped players.
  300.  
  301. # If this option is set to false, LuckPerms will ignore these defaults.
  302.  
  303. apply-bukkit-default-permissions: false
  304.  
  305.  
  306.  
  307. # If the plugin should apply attachment permissions.
  308.  
  309. # Other plugins on the server are able to add their own "permission attachments" to players. This
  310.  
  311. # allows them to grant players additional permissions which last until the end of the session, or
  312.  
  313. # until they're removed. If this option is set to false, LuckPerms will not include these attachment
  314.  
  315. # permissions when considering if a player should have access to a certain permission.
  316.  
  317. apply-bukkit-attachment-permissions: false
  318.  
  319.  
  320.  
  321. # Define special group weights for this server.
  322.  
  323. # Default is just 0.
  324.  
  325. group-weight:
  326.  
  327. # admin: 10
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334.  
  335.  
  336.  
  337. # +----------------------------------------------------------------------------------------------+ #
  338.  
  339. # | Meta Formatting & Stacking | #
  340.  
  341. # +----------------------------------------------------------------------------------------------+ #
  342.  
  343.  
  344.  
  345. # Allows you to setup prefix/suffix stacking options.
  346.  
  347. #
  348.  
  349. # Available formats:
  350.  
  351. # - highest
  352.  
  353. # - lowest
  354.  
  355. # - highest_own
  356.  
  357. # - lowest_own
  358.  
  359. # - highest_inherited
  360.  
  361. # - lowest_inherited
  362.  
  363. # - highest_on_track_<track>
  364.  
  365. # - lowest_on_track_<track>
  366.  
  367. # - highest_not_on_track_<track>
  368.  
  369. # - lowest_not_on_track_<track>
  370.  
  371. #
  372.  
  373. # Each element is added in the order listed.
  374.  
  375. meta-formatting:
  376.  
  377. prefix:
  378.  
  379. format:
  380.  
  381. - "highest"
  382.  
  383. start-spacer: ""
  384.  
  385. middle-spacer: " "
  386.  
  387. end-spacer: ""
  388.  
  389. suffix:
  390.  
  391. format:
  392.  
  393. - "highest"
  394.  
  395. start-spacer: ""
  396.  
  397. middle-spacer: " "
  398.  
  399. end-spacer: ""
  400.  
  401.  
  402.  
  403.  
  404.  
  405.  
  406.  
  407.  
  408.  
  409. # +----------------------------------------------------------------------------------------------+ #
  410.  
  411. # | OP (Server Operator) Settings | #
  412.  
  413. # +----------------------------------------------------------------------------------------------+ #
  414.  
  415.  
  416.  
  417. # If the vanilla OP system is enabled. If set to false, all users will be de-opped, and the op/deop
  418.  
  419. # commands will be disabled.
  420.  
  421. enable-ops: true
  422.  
  423.  
  424.  
  425. # If set to true, any user with the permission "luckperms.autoop" will automatically be granted
  426.  
  427. # server operator status. This permission can be inherited, or set on specific servers/worlds,
  428.  
  429. # temporarily, etc.
  430.  
  431. #
  432.  
  433. # Additionally, setting this to true will force the "enable-ops" option above to false. All users
  434.  
  435. # will be de-opped unless they have the permission node, and the op/deop commands will be disabled.
  436.  
  437. #
  438.  
  439. # It is important to note that this setting is only checked when a player first joins the server,
  440.  
  441. # and when they switch worlds. Therefore, simply removing this permission from a user will not
  442.  
  443. # automatically de-op them. A player needs to relog to have the change take effect.
  444.  
  445. #
  446.  
  447. # It is recommended that you use this option instead of assigning a single '*' permission.
  448.  
  449. auto-op: false
  450.  
  451.  
  452.  
  453. # If opped players should be allowed to use LuckPerms commands. Set to false to only allow users who
  454.  
  455. # have the permissions access to the commands
  456.  
  457. commands-allow-op: true
  458.  
  459.  
  460.  
  461.  
  462.  
  463.  
  464.  
  465.  
  466.  
  467. # +----------------------------------------------------------------------------------------------+ #
  468.  
  469. # | Vault | #
  470.  
  471. # +----------------------------------------------------------------------------------------------+ #
  472.  
  473.  
  474.  
  475. # If the vault-server option below should be used.
  476.  
  477. # When this option is set to false, the server value defined above under "server" is used.
  478.  
  479. use-vault-server: false
  480.  
  481.  
  482.  
  483. # The name of the server used within Vault operations. If you don't want Vault operations to be
  484.  
  485. # server specific, set this to "global".
  486.  
  487. #
  488.  
  489. # Will only take effect if use-vault-server is set to true above.
  490.  
  491. vault-server: global
  492.  
  493.  
  494.  
  495. # If global permissions should be considered when retrieving meta or player groups
  496.  
  497. vault-include-global: true
  498.  
  499.  
  500.  
  501. # If Vault operations should ignore any world arguments if supplied.
  502.  
  503. vault-ignore-world: false
  504.  
  505.  
  506.  
  507. # If LuckPerms should print debugging info to console when a plugin uses a Vault function
  508.  
  509. vault-debug: false
  510.  
  511.  
  512.  
  513.  
  514.  
  515.  
  516.  
  517.  
  518.  
  519. # +----------------------------------------------------------------------------------------------+ #
  520.  
  521. # | Storage | #
  522.  
  523. # +----------------------------------------------------------------------------------------------+ #
  524.  
  525.  
  526.  
  527. # Which storage method the plugin should use.
  528.  
  529. #
  530.  
  531. # See: https://github.com/lucko/LuckPerms/wiki/Choosing-a-Storage-type
  532.  
  533. # Currently supported: mysql, mariadb, postgresql, sqlite, h2, json, yaml, hocon, mongodb
  534.  
  535. #
  536.  
  537. # Fill out connection info below if you're using MySQL, MariaDB, PostgreSQL or MongoDB
  538.  
  539. # If your MySQL server supports it, the "mariadb" option is preferred over "mysql".
  540.  
  541. storage-method: mysql
  542.  
  543.  
  544.  
  545. # When using a file-based storage type, LuckPerms can monitor the data files for changes, and then
  546.  
  547. # schedule automatic updates when changes are detected.
  548.  
  549. #
  550.  
  551. # If you don't want this to happen, set this option to false.
  552.  
  553. watch-files: true
  554.  
  555.  
  556.  
  557. # This block enables support for split datastores.
  558.  
  559. split-storage:
  560.  
  561. enabled: false
  562.  
  563. methods:
  564.  
  565. user: h2
  566.  
  567. group: h2
  568.  
  569. track: h2
  570.  
  571. uuid: h2
  572.  
  573. log: h2
  574.  
  575.  
  576.  
  577. data:
  578.  
  579. # Uses standard DB engine port by default
  580.  
  581. # MySQL: 3306, PostgreSQL: 5432, MongoDB: 27017
  582.  
  583. # Specify as "host:port" if differs
  584.  
  585. address: 149.56.243.223:3306
  586.  
  587.  
  588.  
  589. database: s196_luckperms
  590.  
  591. username: u196_Zuib6hrfp1
  592.  
  593. password: 'kyWilc8pcHqcwTuu'
  594.  
  595.  
  596.  
  597. # These settings apply to the MySQL connection pool.
  598.  
  599. # The default values will be suitable for the majority of users.
  600.  
  601. # Do not change these settings unless you know what you're doing!
  602.  
  603. pool-settings:
  604.  
  605.  
  606.  
  607. # Sets the maximum size of the MySQL connection pool.
  608.  
  609. # Basically this value will determine the maximum number of actual
  610.  
  611. # connections to the database backend.
  612.  
  613. #
  614.  
  615. # More information about determining the size of connection pools can be found here:
  616.  
  617. # https://github.com/brettwooldridge/HikariCP/wiki/About-Pool-Sizing
  618.  
  619. maximum-pool-size: 10
  620.  
  621.  
  622.  
  623. # Sets the minimum number of idle connections that the pool will try to maintain.
  624.  
  625. #
  626.  
  627. # For maximum performance and responsiveness to spike demands, it is recommended to not set
  628.  
  629. # this value and instead allow the pool to act as a fixed size connection pool.
  630.  
  631. # (set this value to the same as 'maximum-pool-size')
  632.  
  633. minimum-idle: 10
  634.  
  635.  
  636.  
  637. # This setting controls the maximum lifetime of a connection in the pool in milliseconds.
  638.  
  639. # The value should be at least 30 seconds less than any database or infrastructure imposed
  640.  
  641. # connection time limit.
  642.  
  643. maximum-lifetime: 28700 # 30 minutes
  644.  
  645.  
  646.  
  647. # This setting controls the maximum number of milliseconds that the plugin will wait for a
  648.  
  649. # connection from the pool, before timing out.
  650.  
  651. connection-timeout: 15000 # 15 seconds
  652.  
  653.  
  654.  
  655. # The prefix for all LuckPerms tables. Change this is you want to use different tables for
  656.  
  657. # different servers.
  658.  
  659. #
  660.  
  661. # This should *not* be set to "lp_" if you have previously ran LuckPerms v2.16.81 or earlier with
  662.  
  663. # this database.
  664.  
  665. table_prefix: 'luckperms_'
  666.  
  667.  
  668.  
  669. # The prefix to use for all LuckPerms collections. Change this if you want to use different
  670.  
  671. # collections for different servers. The default is no prefix.
  672.  
  673. mongodb_collection_prefix: ''
  674.  
  675.  
  676.  
  677. # This option controls how frequently LuckPerms will perform a sync task.
  678.  
  679. # A sync task will refresh all data from the storage, and ensure that the most up-to-date data is
  680.  
  681. # being used by the plugin.
  682.  
  683. #
  684.  
  685. # This is disabled by default, as most users will not need it. However, if you're using a remote
  686.  
  687. # storage type without a messaging service setup, you may wish to set this value to something like
  688.  
  689. # 3.
  690.  
  691. #
  692.  
  693. # Set to -1 to disable the task completely.
  694.  
  695. sync-minutes: -1
  696.  
  697.  
  698.  
  699. # Settings for the messaging service
  700.  
  701. #
  702.  
  703. # If enabled and configured, LuckPerms will use the messaging system to inform other
  704.  
  705. # connected servers of changes. Use the command "/luckperms networksync" to push changes.
  706.  
  707. # Data is NOT stored using this service. It is only used as a messaging platform.
  708.  
  709. #
  710.  
  711. # If you decide to enable this feature, you should set "sync-minutes" to -1, as there is no need for
  712.  
  713. # LuckPerms to poll the database for changes.
  714.  
  715. #
  716.  
  717. # Available options:
  718.  
  719. # -> bungee uses the plugin messaging channels. Must be enabled on all connected servers to work.
  720.  
  721. # -> lilypad uses lilypad pub sub to push changes. You need to have the LilyPad-Connect plugin
  722.  
  723. # installed.
  724.  
  725. # -> redis uses redis pub sub to push changes. Your redis server must be configured below.
  726.  
  727. # -> none nothing
  728.  
  729. messaging-service: bungee
  730.  
  731.  
  732.  
  733. # If LuckPerms should automatically push updates after a change has been made with a command.
  734.  
  735. auto-push-updates: true
  736.  
  737.  
  738.  
  739. # If LuckPerms should push logging entries to connected servers via the messaging service.
  740.  
  741. push-log-entries: true
  742.  
  743.  
  744.  
  745. # If LuckPerms should broadcast received logging entries to players on this platform.
  746.  
  747. #
  748.  
  749. # If you have LuckPerms installed on your backend servers as well as a BungeeCord proxy, you should
  750.  
  751. # set this option to false on either your backends or your proxies, to avoid players being messaged
  752.  
  753. # twice about log entries.
  754.  
  755. broadcast-received-log-entries: true
  756.  
  757.  
  758.  
  759. # Settings for Redis.
  760.  
  761. # Port 6379 is used by default; set address to "host:port" if differs
  762.  
  763. redis:
  764.  
  765. enabled: false
  766.  
  767. address: localhost
  768.  
  769. password: ''
  770.  
  771.  
  772.  
  773.  
  774.  
  775.  
  776.  
  777.  
  778.  
  779. # +----------------------------------------------------------------------------------------------+ #
  780.  
  781. # | Default Assignments | #
  782.  
  783. # +----------------------------------------------------------------------------------------------+ #
  784.  
  785.  
  786.  
  787. # This section allows you to define defaults to give users whenever they connect to the server.
  788.  
  789. # The default assignments are highly configurable and conditional.
  790.  
  791. #
  792.  
  793. # There is one default assignment built into LuckPerms, which will add all users to the "default"
  794.  
  795. # group if they are not a member of any other group. This setting cannot be disabled. However, you
  796.  
  797. # can use this section to add more of your own.
  798.  
  799. #
  800.  
  801. # IMPORTANT:
  802.  
  803. # In order to save storage space, LuckPerms does not store users who have no permissions defined,
  804.  
  805. # and are only a member of the default group. Adding default assignments to this section will negate
  806.  
  807. # this effect. It is HIGHLY RECCOMENDED that instead of assigning defaults here, you add permissions
  808.  
  809. # to the "default" group, or set the "default" group to inherit other groups, and then use the
  810.  
  811. # group-name-rewrite rule above.
  812.  
  813. #
  814.  
  815. # It is also important to note that these rules are considered every time a player logs into the
  816.  
  817. # server, and are applied directly to the user's data. Simply removing a rule here will not reverse
  818.  
  819. # the effect of that rule on any users who have already had it applied to them.
  820.  
  821. #
  822.  
  823. # The "has" and "lacks" conditions below support standard boolean logic, using the 'and' & 'or'
  824.  
  825. # characters used in Java.
  826.  
  827. # e.g. "(some.other.permission | some.permission.other) & some.thing.else" == a user has
  828.  
  829. # 'some.other.permission', or 'some.permission.other', and they also have 'some.thing.else'
  830.  
  831. #
  832.  
  833. # Groups are represented by the permission node: group.<group name>
  834.  
  835. # Per server and per world nodes are represented by "server-world/permission" or "server/permission"
  836.  
  837. #
  838.  
  839. # Within conditions, permission nodes MUST be escaped using "<" and ">". See the example below.
  840.  
  841. #
  842.  
  843. # Explanation of the examples below: (they're just to demonstrate the features & use cases)
  844.  
  845. #
  846.  
  847. # rule1:
  848.  
  849. # If a user is either in the vip or vip+ group, and they have the "titles.titlecollector" permission
  850.  
  851. # set to true, and the "some.random.permission" set to false... if they're not in the group
  852.  
  853. # "prison_titlepack" on the "prison" server, then give add them to the "prison_titlepack" group on
  854.  
  855. # the "prison" server, and remove "some.random.permission".
  856.  
  857. #
  858.  
  859. # rule2:
  860.  
  861. # If the user isn't in any of the following groups on the skyblock server: sb_level1, sb_level2,
  862.  
  863. # sb_level3, then add them to sb_level1 on the skyblock server.
  864.  
  865. #
  866.  
  867. # rule3:
  868.  
  869. # If the user is a member of the default group, remove them from default, add them to member, and
  870.  
  871. # set their primary group to member.
  872.  
  873. #
  874.  
  875. # WARNING: Unlike internal commands, this system does not ensure that a group exists before adding
  876.  
  877. # a user to it. It also does not unsure that a user is a member of a group before making that group
  878.  
  879. # their primary group.
  880.  
  881. #
  882.  
  883. # Before you use "give: group.<name>" or "set-primary-group", make sure that the group exists, and
  884.  
  885. # that the user is a member of the group.
  886.  
  887. default-assignments:
  888.  
  889. # rule1:
  890.  
  891. # if:
  892.  
  893. # has-true: (<group.vip> | <group.vip+>) & <titles.tilecollector>
  894.  
  895. # has-false: <some.random.permission>
  896.  
  897. # lacks: <prison/group.prison_titlepack>
  898.  
  899. # give:
  900.  
  901. # - prison/group.prison_titlepack
  902.  
  903. # take:
  904.  
  905. # - some.random.permission
  906.  
  907. # rule2:
  908.  
  909. # if:
  910.  
  911. # lacks: <skyblock/group.sb_level1> & <skyblock/group.sb_level2> & <skyblock/group.sb_level3>
  912.  
  913. # give:
  914.  
  915. # - skyblock/group.sb_level1
  916.  
  917. # rule3:
  918.  
  919. # if:
  920.  
  921. # has-true: <group.default>
  922.  
  923. # take:
  924.  
  925. # - group.default
  926.  
  927. # give:
  928.  
  929. # - group.member
  930.  
  931. # set-primary-group: member
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement