mirror of
https://github.com/donaldzou/WGDashboard.git
synced 2024-11-10 08:53:51 +08:00
Enabling use of underscores in configuration name.
This commit is contained in:
parent
734a4b5e00
commit
dcf2055851
3 changed files with 5 additions and 5 deletions
|
@ -568,7 +568,7 @@ Bug Fixed:
|
|||
- [jQuery](https://jquery.com) `v3.5.1`
|
||||
- Python
|
||||
- [Flask](https://pypi.org/project/Flask/) `v2.0.1`
|
||||
- [ifcfg](https://pypi.org/project/ifcfg/) `v0.21`
|
||||
- [psutil](https://pypi.org/project/psutil/) `v5.9.8`
|
||||
- [icmplib](https://pypi.org/project/icmplib/) `v2.1.1`
|
||||
- [flask-qrcode](https://pypi.org/project/Flask-QRcode/) `v3.0.0`
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ import urllib.error
|
|||
from datetime import datetime, timedelta
|
||||
from operator import itemgetter
|
||||
# PIP installed library
|
||||
import ifcfg
|
||||
import psutil
|
||||
from flask import Flask, request, render_template, redirect, url_for, session, jsonify, g
|
||||
from flask_qrcode import QRcode
|
||||
from icmplib import ping, traceroute
|
||||
|
@ -472,8 +472,8 @@ def get_conf_status(config_name):
|
|||
@param config_name:
|
||||
@return: Return a string indicate the running status
|
||||
"""
|
||||
ifconfig = dict(ifcfg.interfaces().items())
|
||||
return "running" if config_name in ifconfig.keys() else "stopped"
|
||||
addrs = psutil.net_if_addrs()
|
||||
return "running" if config_name in addrs else "stopped"
|
||||
|
||||
|
||||
def get_conf_list():
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
Flask
|
||||
ifcfg
|
||||
psutil
|
||||
icmplib
|
||||
flask-qrcode
|
||||
gunicorn
|
||||
|
|
Loading…
Reference in a new issue