Add missing import
This commit is contained in:
parent
734945a923
commit
6d4e69cb41
3 changed files with 93 additions and 2 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit ef6938d2ef243f5fdcdd185b6b6061a76855a667
|
Subproject commit de6e1ff2eac0281ea8c3f312aaaaa337c22f9768
|
|
@ -1 +1 @@
|
||||||
Subproject commit ed000fcaf2cfa22bb558ed11c8a15d239240020b
|
Subproject commit 5a2882f08e30e4e9b8945d84e53c228ed2cfbeff
|
91
manager/tasks.py
Normal file
91
manager/tasks.py
Normal file
|
@ -0,0 +1,91 @@
|
||||||
|
from celery import shared_task
|
||||||
|
from distutils.dir_util import copy_tree
|
||||||
|
|
||||||
|
from .views import makewificonfig
|
||||||
|
|
||||||
|
import os
|
||||||
|
import time
|
||||||
|
import glob
|
||||||
|
import tempfile
|
||||||
|
import crypt
|
||||||
|
import subprocess
|
||||||
|
import datetime
|
||||||
|
|
||||||
|
@shared_task
|
||||||
|
def mkfirmware(device, path):
|
||||||
|
if device.firmware and device.firmware > device.model.firmware and device.firmware > device.changed and glob.glob("%s/%s.bin" % (path, device.id)):
|
||||||
|
return True
|
||||||
|
|
||||||
|
BEFORE = os.getcwd()
|
||||||
|
DEVICEDIR = "/opt/vpnmanager/device-config/%i/" % device.model.id
|
||||||
|
SRCDIR = "/opt/vpnmanager/imagebuilder/%i/" % device.model.id
|
||||||
|
|
||||||
|
if glob.glob(SRCDIR + "/.kumilock"):
|
||||||
|
return False
|
||||||
|
|
||||||
|
with open(SRCDIR + "/.kumilock", "w") as lock:
|
||||||
|
lock.write("")
|
||||||
|
|
||||||
|
tempdir = tempfile.TemporaryDirectory()
|
||||||
|
|
||||||
|
copy_tree(DEVICEDIR, tempdir.name)
|
||||||
|
|
||||||
|
# Write OpenVPN config
|
||||||
|
|
||||||
|
with open(tempdir.name + "/etc/openvpn/client.conf", "w") as vpnconf:
|
||||||
|
vpnconf.write(device.vpnconfig)
|
||||||
|
|
||||||
|
# Write secret
|
||||||
|
|
||||||
|
with open(tempdir.name + "/etc/vpnsecret", "w") as secret:
|
||||||
|
secret.write('SECRET="%s"' % device.secret)
|
||||||
|
|
||||||
|
# Write password
|
||||||
|
|
||||||
|
with open(tempdir.name + "/etc/shadow", "r") as shadow:
|
||||||
|
password = crypt.crypt(device.password, crypt.mksalt(crypt.METHOD_MD5))
|
||||||
|
shadowin = shadow.read()
|
||||||
|
|
||||||
|
with open(tempdir.name + "/etc/shadow", "w") as shadowout:
|
||||||
|
shadowout.write(shadowin.replace("$PASSWORD", password))
|
||||||
|
|
||||||
|
# Write Wireless config
|
||||||
|
|
||||||
|
with open(tempdir.name + "/etc/config/wireless", "r") as wireless:
|
||||||
|
wirein = wireless.read()
|
||||||
|
|
||||||
|
with open(tempdir.name + "/etc/config/wireless", "w") as wireout:
|
||||||
|
wire = wirein.replace("$SSID", device.serial)
|
||||||
|
wireout.write(wire + "\n" + makewificonfig(device))
|
||||||
|
|
||||||
|
# Create compilation environment
|
||||||
|
|
||||||
|
os.system("rm -rf " + SRCDIR + "/files/")
|
||||||
|
os.mkdir(SRCDIR + "/files/")
|
||||||
|
os.system("cp -r " + tempdir.name + "/* " + SRCDIR + "/files/")
|
||||||
|
|
||||||
|
tempdir.cleanup()
|
||||||
|
|
||||||
|
os.system("rm " + SRCDIR + "/bin/targets/ar71xx/generic/*")
|
||||||
|
|
||||||
|
# Build image
|
||||||
|
|
||||||
|
os.chdir(SRCDIR)
|
||||||
|
|
||||||
|
try:
|
||||||
|
subprocess.call(["/usr/bin/make"])
|
||||||
|
except:
|
||||||
|
os.remove(SRCDIR + "/.kumilock")
|
||||||
|
os.chdir(BEFORE)
|
||||||
|
return False
|
||||||
|
|
||||||
|
os.chdir(BEFORE)
|
||||||
|
|
||||||
|
os.rename(glob.glob(SRCDIR + "/bin/targets/ar71xx/generic/*squashfs-sysupgrade.bin")[0], "%s/%s.bin" % (path, device.id))
|
||||||
|
os.remove(SRCDIR + "/.kumilock")
|
||||||
|
os.system("rm -rf " + SRCDIR + "/files/")
|
||||||
|
os.system("rm " + SRCDIR + "/bin/targets/ar71xx/generic/*")
|
||||||
|
device.firmware = datetime.datetime.now()
|
||||||
|
device.save()
|
||||||
|
return True
|
||||||
|
|
Loading…
Reference in a new issue