Commit 2a703825 authored by Vivien Alger's avatar Vivien Alger

Changes to kvm templates

parent 50d0d648
...@@ -11,7 +11,7 @@ so = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) ...@@ -11,7 +11,7 @@ so = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
connected = False connected = False
while not connected: while not connected:
try: try:
so.connect('%(qmp_socket)s') so.connect('%(socket_path)s')
except socket.error: except socket.error:
time.sleep(1) time.sleep(1)
else: else:
......
...@@ -10,8 +10,8 @@ exec %(qemu_path)s \ ...@@ -10,8 +10,8 @@ exec %(qemu_path)s \
-smp %(smp_count)s \ -smp %(smp_count)s \
-m %(ram_size)s \ -m %(ram_size)s \
-cdrom nbd:[%(nbd_ip)s]:%(nbd_port)s \ -cdrom nbd:[%(nbd_ip)s]:%(nbd_port)s \
-drive file=%(image)s,if=virtio,boot=on \ -drive file=%(disk_path)s,if=virtio,boot=on \
-vnc [%(vnc_ip)s]:1,ipv6,tls,password \ -vnc [%(vnc_ip)s]:1,ipv6,tls,password \
-boot menu=on \ -boot menu=on \
-qmp unix:%(qmp_socket)s,server \ -qmp unix:%(socket_path)s,server \
-pidfile %(pid_file)s -pidfile %(pid_file_path)s
#!/bin/sh #!/bin/sh
# BEWARE: This file is operated by slapgrid # BEWARE: This file is operated by slapgrid
# BEWARE: It will be overwritten automatically # BEWARE: It will be overwritten automatically
exec %(python_path)s %(slapmonitor_path)s %(pid_file)s %(database_path)s exec %(python_path)s %(slapmonitor_path)s %(pid_file_path)s %(database_path)s
#!/bin/sh
# BEWARE: This file is operated by slapgrid
# BEWARE: It will be overwritten automatically
%(python_path)s %(websockify_path)s --web %(noVNC_location)s --ssl-only %(proxy_ip)s:%(proxy_port)s %(vnc_ip)s:%(vnc_port)s
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment