mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-09-19 04:59:01 +00:00
Split RESESRVED_USERNAMES list #551
- Have each module declare its own reserved_usernames list
This commit is contained in:
parent
a017a9bf4a
commit
307f4876ff
@ -49,6 +49,7 @@ description = [
|
|||||||
'it immediately after enabling this service.')
|
'it immediately after enabling this service.')
|
||||||
]
|
]
|
||||||
|
|
||||||
|
reserved_usernames = ['debian-deluged']
|
||||||
|
|
||||||
def init():
|
def init():
|
||||||
"""Initialize the Deluge module."""
|
"""Initialize the Deluge module."""
|
||||||
|
|||||||
@ -50,6 +50,7 @@ description = [
|
|||||||
'name, they will get a response with your current IP address.')
|
'name, they will get a response with your current IP address.')
|
||||||
]
|
]
|
||||||
|
|
||||||
|
reserved_usernames = ['ez-ipupd']
|
||||||
|
|
||||||
def init():
|
def init():
|
||||||
"""Initialize the module."""
|
"""Initialize the module."""
|
||||||
|
|||||||
@ -52,6 +52,8 @@ description = [
|
|||||||
'>XMPP client</a>.'),
|
'>XMPP client</a>.'),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
reserved_usernames = ['ejabberd']
|
||||||
|
|
||||||
service = None
|
service = None
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|||||||
@ -57,6 +57,8 @@ description = [
|
|||||||
'is needed.'), box_name=_(cfg.box_name)),
|
'is needed.'), box_name=_(cfg.box_name)),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
reserved_usernames = ['Debian-minetest']
|
||||||
|
|
||||||
CONFIG_FILE = '/etc/minetest/minetest.conf'
|
CONFIG_FILE = '/etc/minetest/minetest.conf'
|
||||||
AUG_PATH = '/files' + CONFIG_FILE + '/.anon'
|
AUG_PATH = '/files' + CONFIG_FILE + '/.anon'
|
||||||
|
|
||||||
|
|||||||
@ -51,6 +51,8 @@ description = [
|
|||||||
'website</a>.')
|
'website</a>.')
|
||||||
]
|
]
|
||||||
|
|
||||||
|
reserved_usernames = ['monkeysphere']
|
||||||
|
|
||||||
|
|
||||||
def init():
|
def init():
|
||||||
"""Initialize the monkeysphere module."""
|
"""Initialize the monkeysphere module."""
|
||||||
|
|||||||
@ -51,6 +51,8 @@ description = [
|
|||||||
'from your desktop and Android devices are available.')
|
'from your desktop and Android devices are available.')
|
||||||
]
|
]
|
||||||
|
|
||||||
|
reserved_usernames = ['mumble-server']
|
||||||
|
|
||||||
|
|
||||||
def init():
|
def init():
|
||||||
"""Intialize the Mumble module."""
|
"""Intialize the Mumble module."""
|
||||||
|
|||||||
@ -59,6 +59,8 @@ description = [
|
|||||||
box_name=_(cfg.box_name)),
|
box_name=_(cfg.box_name)),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
reserved_usernames = ['privoxy']
|
||||||
|
|
||||||
service = None
|
service = None
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -59,6 +59,8 @@ description = [
|
|||||||
'are available.'),
|
'are available.'),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
reserved_usernames = ['quasselcore']
|
||||||
|
|
||||||
|
|
||||||
def init():
|
def init():
|
||||||
"""Initialize the quassel module."""
|
"""Initialize the quassel module."""
|
||||||
|
|||||||
@ -52,6 +52,8 @@ description = [
|
|||||||
'login.'), box_name=_(cfg.box_name)),
|
'login.'), box_name=_(cfg.box_name)),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
reserved_usernames = ['radicale']
|
||||||
|
|
||||||
CONFIG_FILE = '/etc/radicale/config'
|
CONFIG_FILE = '/etc/radicale/config'
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -59,9 +59,10 @@ description = [
|
|||||||
'service and re-enable it.'),
|
'service and re-enable it.'),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
reserved_usernames = ['repro']
|
||||||
|
|
||||||
service = None
|
service = None
|
||||||
|
|
||||||
reserved_usernames = ['repro']
|
|
||||||
|
|
||||||
def init():
|
def init():
|
||||||
"""Initialize the repro module."""
|
"""Initialize the repro module."""
|
||||||
|
|||||||
@ -49,6 +49,8 @@ description = [
|
|||||||
'<a href=\'/restore/\'>reStore web-interface</a>.')
|
'<a href=\'/restore/\'>reStore web-interface</a>.')
|
||||||
]
|
]
|
||||||
|
|
||||||
|
reserved_usernames = ['node-restores']
|
||||||
|
|
||||||
service = None
|
service = None
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -50,6 +50,8 @@ description = [
|
|||||||
'Tor Browser</a>.')
|
'Tor Browser</a>.')
|
||||||
]
|
]
|
||||||
|
|
||||||
|
reserved_usernames = ['debian-tor']
|
||||||
|
|
||||||
socks_service = None
|
socks_service = None
|
||||||
bridge_service = None
|
bridge_service = None
|
||||||
|
|
||||||
|
|||||||
@ -46,6 +46,8 @@ description = [
|
|||||||
_('Access the web interface at <a href="/transmission">/transmission</a>.')
|
_('Access the web interface at <a href="/transmission">/transmission</a>.')
|
||||||
]
|
]
|
||||||
|
|
||||||
|
reserved_usernames = ['debian-transmission']
|
||||||
|
|
||||||
service = None
|
service = None
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user