mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[mdns] Remove logging and asyncio dependencies
This commit is contained in:
parent
3535b374ae
commit
cad5c39dae
1 changed files with 0 additions and 12 deletions
12
bin/yunomdns
12
bin/yunomdns
|
@ -3,7 +3,6 @@
|
||||||
"""
|
"""
|
||||||
WIP
|
WIP
|
||||||
Pythonic declaration of mDNS .local domains for YunoHost
|
Pythonic declaration of mDNS .local domains for YunoHost
|
||||||
Based off https://github.com/jstasiak/python-zeroconf/blob/master/tests/test_asyncio.py
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import subprocess
|
import subprocess
|
||||||
|
@ -13,8 +12,6 @@ import sys
|
||||||
import argparse
|
import argparse
|
||||||
import yaml
|
import yaml
|
||||||
|
|
||||||
import asyncio
|
|
||||||
import logging
|
|
||||||
import socket
|
import socket
|
||||||
from time import sleep
|
from time import sleep
|
||||||
from typing import List, Dict
|
from typing import List, Dict
|
||||||
|
@ -98,7 +95,6 @@ def get_network_interfaces():
|
||||||
return devices
|
return devices
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
logging.basicConfig(level=logging.DEBUG)
|
|
||||||
|
|
||||||
|
|
||||||
###
|
###
|
||||||
|
@ -110,7 +106,6 @@ if __name__ == '__main__':
|
||||||
Configuration file: /etc/yunohost/mdns.yml
|
Configuration file: /etc/yunohost/mdns.yml
|
||||||
Subdomains are not supported.
|
Subdomains are not supported.
|
||||||
''')
|
''')
|
||||||
parser.add_argument('--debug', action='store_true')
|
|
||||||
parser.add_argument('--regen', nargs='?', const='as_stored', choices=['domains', 'interfaces', 'all', 'as_stored'],
|
parser.add_argument('--regen', nargs='?', const='as_stored', choices=['domains', 'interfaces', 'all', 'as_stored'],
|
||||||
help='''
|
help='''
|
||||||
Regenerates selection into the configuration file then starts mDNS broadcasting.
|
Regenerates selection into the configuration file then starts mDNS broadcasting.
|
||||||
|
@ -125,13 +120,6 @@ if __name__ == '__main__':
|
||||||
able.add_argument('--disable', action='store_true')
|
able.add_argument('--disable', action='store_true')
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
if args.debug:
|
|
||||||
logging.getLogger('zeroconf').setLevel(logging.DEBUG)
|
|
||||||
logging.getLogger('asyncio').setLevel(logging.DEBUG)
|
|
||||||
else:
|
|
||||||
logging.getLogger('zeroconf').setLevel(logging.WARNING)
|
|
||||||
logging.getLogger('asyncio').setLevel(logging.WARNING)
|
|
||||||
|
|
||||||
###
|
###
|
||||||
# CONFIG
|
# CONFIG
|
||||||
###
|
###
|
||||||
|
|
Loading…
Add table
Reference in a new issue