Migrate to generic template names

This commit is contained in:
j3s 2020-06-05 00:55:32 +00:00
parent e0c9e77bed
commit a709fe7469
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,9 @@
UPDATE os_images SET deprecated = FALSE WHERE id = 'ubuntu18';
DELETE FROM os_images WHERE id = 'ubuntu20';
UPDATE os_images SET template_image_file_name = 'alpine-cloud-2020-04-18.qcow2' WHERE id = 'alpine311';
UPDATE os_images SET template_image_file_name = 'openbsd-6.7-x86_64.qcow2' WHERE id = 'openbsd67';
UPDATE os_images SET template_image_file_name = 'debian-10-genericcloud-amd64-20191117-80.qcow2' WHERE id = 'debian10';
UPDATE os_images SET template_image_file_name = 'CentOS-7-x86_64-GenericCloud.qcow2' WHERE id = 'centos7';
UPDATE os_images SET template_image_file_name = 'CentOS-8-GenericCloud-8.1.1911-20200113.3.x86_64.qcow2' WHERE id = 'centos8';
UPDATE schemaversion SET version = 5;

View File

@ -0,0 +1,9 @@
UPDATE os_images SET deprecated = TRUE WHERE id = 'ubuntu18';
INSERT INTO os_images (id, template_image_file_name, description, deprecated) VALUES ('ubuntu20', 'ubuntu20.img', 'Ubuntu 20.04 LTS (Fossa)', FALSE);
UPDATE os_images SET template_image_file_name = 'alpine311.img' WHERE id = 'alpine311';
UPDATE os_images SET template_image_file_name = 'openbsd67.img' WHERE id = 'openbsd67';
UPDATE os_images SET template_image_file_name = 'debian10.img' WHERE id = 'debian10';
UPDATE os_images SET template_image_file_name = 'centos7.img' WHERE id = 'centos7';
UPDATE os_images SET template_image_file_name = 'centos8.img' WHERE id = 'centos8';
UPDATE schemaversion SET version = 6;