Browse Source

Поправил пару косяков. Ничего важного.

master
Mikhail Grebenkin 7 years ago
parent
commit
7c0e052019
2 changed files with 5 additions and 3 deletions
  1. +1
    -2
      kea_hosts_generane.py
  2. +4
    -1
      web-leases.py

+ 1
- 2
kea_hosts_generane.py View File

@ -61,7 +61,7 @@ qupdate_1c = "update 1c_import set imported = 1 where serial = '%s';"
def send_data(user, password, name, host):
errorcode = ''
work = True
# work = True
commands = []
# commands.append("hostname %s" % name)
# commands.append("echo '%s' > /etc/hostname" % name)
@ -71,7 +71,6 @@ def send_data(user, password, name, host):
# commands.append("echo 'dhcp=true' >> /config/network.conf")
# commands.append("sync")
commands.append("reboot \n")
print(commands)
client = paramiko.SSHClient()
client.set_missing_host_key_policy(paramiko.AutoAddPolicy()) # если нет хоста - добавляем
try:


+ 4
- 1
web-leases.py View File

@ -6,10 +6,12 @@ import MySQLdb
HOST = 'localhost'
@route('/static/')
def server_static(filepath):
return static_file(filepath, root='/home/mix/PycharmProjects/kea_for_miners/static/')
@route('/')
def server_homepage():
dbhost = '10.5.1.248'
@ -45,6 +47,7 @@ def server_homepage():
temp.append(row['hw_addr'])
temp.append(row['hostname'])
data_list.append(temp)
return template('main.tpl', A = data_list)
return template('main.tpl', A=data_list)
run(host='10.5.1.248', port=8080, debug=True)

Loading…
Cancel
Save

Powered by TurnKey Linux.