From e676a22764527eef6f5168e0cad2e837faec7f2d Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Sat, 6 Mar 2010 10:29:19 -0600 Subject: Add mirror rsync credentials data Allow this to be stored in the database for later use by an external generation script for the rsyncd secrets file. Signed-off-by: Dan McGee --- main/models.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'main/models.py') diff --git a/main/models.py b/main/models.py index eff55798..30681543 100644 --- a/main/models.py +++ b/main/models.py @@ -68,6 +68,8 @@ class Mirror(models.Model): public = models.BooleanField(default=True) active = models.BooleanField(default=True) isos = models.BooleanField(default=True) + rsync_user = models.CharField(max_length=50, null=True, blank=True) + rsync_password = models.CharField(max_length=50, null=True, blank=True) def __unicode__(self): return self.name -- cgit v1.2.3-2-g168b