mirror of
https://github.com/ansible/awx.git
synced 2026-02-12 07:04:45 -03:30
30 lines
1.2 KiB
Python
30 lines
1.2 KiB
Python
# Generated by Django 3.2.13 on 2022-09-29 18:10
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0171_add_health_check_started'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='inventory',
|
|
name='prevent_instance_group_fallback',
|
|
field=models.BooleanField(
|
|
default=False,
|
|
help_text='If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on.If this setting is enabled and you provided an empty list, the global instance groups will be applied.',
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name='jobtemplate',
|
|
name='prevent_instance_group_fallback',
|
|
field=models.BooleanField(
|
|
default=False,
|
|
help_text='If enabled, the job template will prevent adding any inventory or organization instance groups to the list of preferred instances groups to run on.If this setting is enabled and you provided an empty list, the global instance groups will be applied.',
|
|
),
|
|
),
|
|
]
|