mirror of
https://github.com/ansible/awx.git
synced 2026-03-03 09:48:51 -03:30
tweak message about image pull option
This commit is contained in:
@@ -16,7 +16,7 @@ class Migration(migrations.Migration):
|
|||||||
field=models.CharField(
|
field=models.CharField(
|
||||||
choices=[
|
choices=[
|
||||||
('always', 'Always pull container before running.'),
|
('always', 'Always pull container before running.'),
|
||||||
('missing', 'No pull option has been selected.'),
|
('missing', 'Only pull the image if not present before running.'),
|
||||||
('never', 'Never pull container before running.'),
|
('never', 'Never pull container before running.'),
|
||||||
],
|
],
|
||||||
blank=True,
|
blank=True,
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ class ExecutionEnvironment(CommonModel):
|
|||||||
|
|
||||||
PULL_CHOICES = [
|
PULL_CHOICES = [
|
||||||
('always', _("Always pull container before running.")),
|
('always', _("Always pull container before running.")),
|
||||||
('missing', _("No pull option has been selected.")),
|
('missing', _("Only pull the image if not present before running.")),
|
||||||
('never', _("Never pull container before running.")),
|
('never', _("Never pull container before running.")),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user