Skip to content

Commit cd64069

Browse files
committed
Merge branch 'master' into develop
# Conflicts: # requirements.txt # setup.py
2 parents e26310d + e81e0e8 commit cd64069

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

app/api/models/LXCContainer.py

-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ def __init__(self, input):
4545
if input.get('imageAlias'):
4646
self.setImageAlias(input.get('imageAlias'))
4747

48-
super(LXCContainer, self).__init__(remoteHost=self.remoteHost)
4948
if input.get('autostart') != None:
5049
self.setBootType(input.get('autostart'))
5150
else:

lxdui.service

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[Unit]
2+
Description=Web UI for the native Linux container technology LXD/LXC
3+
After=network.target snapd.service
4+
Requires=snapd.service
5+
6+
[Service]
7+
Type=simple
8+
PIDFile=/run/lxdui/lxdui.pid
9+
ExecStart=/usr/local/bin/lxdui start
10+
ExecStop=/usr/local/bin/lxdui stop
11+
12+
[Install]
13+
WantedBy=multi-user.target

requirements.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ Flask==1.0.2
33
flask-login==0.4.1
44
flask_jwt==0.3.2
55
jsonschema==2.6.0
6-
requests==2.9.1
6+
requests==2.20.0
77
netaddr==0.7.19
88
pyopenssl==17.5.0
9-
psutil==5.4.5
10-
pylxd==2.2.7
9+
psutil==5.6.6
10+
pylxd==2.2.10
1111
terminado==0.8.1
1212
tornado==5.0.2
1313
tornado-xstatic

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@
3333
'flask-login==0.4.1',
3434
'flask_jwt==0.3.2',
3535
'jsonschema==2.6.0',
36-
'requests==2.9.1',
36+
'requests==2.20.0',
3737
'netaddr==0.7.19',
3838
'pyopenssl==17.5.0',
39-
'psutil==5.4.5',
39+
'psutil==5.6.6',
4040
'pylxd==2.2.7',
4141
'terminado==0.8.1',
4242
'tornado==5.0.2',

0 commit comments

Comments
 (0)