summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Hostbase/hostbase/models.py
diff options
context:
space:
mode:
authorKen Raffenetti <raffenet@mcs.anl.gov>2006-09-08 20:11:58 +0000
committerKen Raffenetti <raffenet@mcs.anl.gov>2006-09-08 20:11:58 +0000
commit064b4ca0e8d28062dbd028ca61f79798b84e260b (patch)
tree6457009c86c631e38163bfda55e0a78a757c3088 /src/lib/Server/Hostbase/hostbase/models.py
parent77bb154d6526739dc111d576f3ccb2392e2a1832 (diff)
downloadbcfg2-064b4ca0e8d28062dbd028ca61f79798b84e260b.tar.gz
bcfg2-064b4ca0e8d28062dbd028ca61f79798b84e260b.tar.bz2
bcfg2-064b4ca0e8d28062dbd028ca61f79798b84e260b.zip
minor updates
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@2230 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Server/Hostbase/hostbase/models.py')
-rw-r--r--src/lib/Server/Hostbase/hostbase/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/Server/Hostbase/hostbase/models.py b/src/lib/Server/Hostbase/hostbase/models.py
index 92bbb4b00..7c47b65bd 100644
--- a/src/lib/Server/Hostbase/hostbase/models.py
+++ b/src/lib/Server/Hostbase/hostbase/models.py
@@ -54,6 +54,7 @@ class Host(models.Model):
expiration_date = models.DateField(null=True, blank=True)
last = models.DateField(auto_now=True, auto_now_add=True)
status = models.CharField(maxlength=7, choices=STATUS_CHOICES)
+ dirty = models.BooleanField()
class Admin:
list_display = ('hostname', 'last')