mod_motd_sequential/README.markdown
changeset 1824 8de50be756e5
parent 1807 4d73a1a6ba68
equal deleted inserted replaced
1823:1b08597b5e6f 1824:8de50be756e5
    14 which message.
    14 which message.
    15 
    15 
    16 Configuration
    16 Configuration
    17 =============
    17 =============
    18 
    18 
    19 
    19 ``` lua
    20         modules_enabled = {
    20 modules_enabled = {
    21             -- other modules
    21   -- other modules
    22                 "motd_sequential";
    22     "motd_sequential";
    23         }
    23 }
    24         motd_sequential_messages = {
    24 motd_sequential_messages = {
    25             "Hello and welcome to our service!", -- First login
    25   "Hello and welcome to our service!", -- First login
    26             "Lorem ipsum dolor sit amet", -- Second time they login
    26   "Lorem ipsum dolor sit amet", -- Second time they login
    27             -- Add more messages here.
    27   -- Add more messages here.
    28         }
    28 }
       
    29 ```