This commit is contained in:
Holger Sielaff
2025-08-27 09:55:55 +02:00
commit 90c0ff61ed
107 changed files with 8535 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
# Generated by Django 5.2.4 on 2025-07-22 13:21
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('proxmox', '0006_lxc_created_at_lxc_updated_at_lxctemplate_created_at_and_more'),
]
operations = [
migrations.AddField(
model_name='lxctemplate',
name='net0',
field=models.CharField(blank=True, default='name=eth0,bridge=vmbr0,firewall=0,ip=dhcp', max_length=150, null=True),
),
migrations.AlterField(
model_name='lxc',
name='net0',
field=models.CharField(blank=True, default='name=eth0,bridge=vmbr0,firewall=0,ip=dhcp', max_length=150, null=True),
),
]