From f1c36bc4b3513ac6b327af37b7d1e06c38af3ecc Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Fri, 3 Mar 2006 23:41:02 +0000 Subject: [PATCH] magic-removal: syncdb now prompts to create a superuser when you install the auth models. git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2484 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/management.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/django/core/management.py b/django/core/management.py index c70a3f2612..37d699a725 100644 --- a/django/core/management.py +++ b/django/core/management.py @@ -458,6 +458,15 @@ def syncdb(): print "Creating example site object" ex = Site(domain="example.com", name="example.com") ex.save() + + # If we just installed the User model, ask about creating a superuser + from django.contrib.auth.models import User + if User in created_models: + msg = "\nIt looks like you just installed Django's auth system which means you don't have " \ + "any superusers defined.\nWould you like to create one now? (yes/no): " + confirm = raw_input(msg) + if confirm.lower().startswith('y'): + createsuperuser() syncdb.args = ''