From 07ee63f04cd1b79207c2d38d0afa8ad235360283 Mon Sep 17 00:00:00 2001 From: guanghongwei Date: Mon, 15 Sep 2014 21:19:07 +0800 Subject: [PATCH] =?UTF-8?q?=E9=8D=92=E7=8A=BB=E6=AB=8Eruncommand=E9=90=A9?= =?UTF-8?q?=EE=86=BC=E7=B6=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/encodings.xml | 5 +++++ .idea/jumpserver.iml | 9 +++++++++ .idea/misc.xml | 12 ++++++++++++ .idea/modules.xml | 9 +++++++++ .idea/scopes/scope_settings.xml | 5 +++++ .idea/vcs.xml | 7 +++++++ shell.conf | 2 +- webroot/AutoSa/RunCommand/__init__.py | 0 webroot/AutoSa/RunCommand/admin.py | 3 --- webroot/AutoSa/RunCommand/models.py | 12 ------------ webroot/AutoSa/RunCommand/views.py | 2 -- 11 files changed, 48 insertions(+), 18 deletions(-) create mode 100644 .idea/encodings.xml create mode 100644 .idea/jumpserver.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/scopes/scope_settings.xml create mode 100644 .idea/vcs.xml delete mode 100644 webroot/AutoSa/RunCommand/__init__.py delete mode 100644 webroot/AutoSa/RunCommand/admin.py delete mode 100644 webroot/AutoSa/RunCommand/models.py delete mode 100644 webroot/AutoSa/RunCommand/views.py diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 000000000..7c62b52a1 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/.idea/jumpserver.iml b/.idea/jumpserver.iml new file mode 100644 index 000000000..68c3f23cd --- /dev/null +++ b/.idea/jumpserver.iml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 000000000..743130e55 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 000000000..c0087f33b --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/.idea/scopes/scope_settings.xml b/.idea/scopes/scope_settings.xml new file mode 100644 index 000000000..0d5175ca0 --- /dev/null +++ b/.idea/scopes/scope_settings.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 000000000..ab55cf163 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/shell.conf b/shell.conf index e87fa28e1..34b2545d0 100644 --- a/shell.conf +++ b/shell.conf @@ -2,7 +2,7 @@ host=127.0.0.1 ldapassword=VNLqNCjpNBIetEoCA2h3 -domain=dianping +domain=yolu suffix=com #host2=172.16.2.74 #host2_port=2001 \ No newline at end of file diff --git a/webroot/AutoSa/RunCommand/__init__.py b/webroot/AutoSa/RunCommand/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/webroot/AutoSa/RunCommand/admin.py b/webroot/AutoSa/RunCommand/admin.py deleted file mode 100644 index 8c38f3f3d..000000000 --- a/webroot/AutoSa/RunCommand/admin.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.contrib import admin - -# Register your models here. diff --git a/webroot/AutoSa/RunCommand/models.py b/webroot/AutoSa/RunCommand/models.py deleted file mode 100644 index ca0791ef4..000000000 --- a/webroot/AutoSa/RunCommand/models.py +++ /dev/null @@ -1,12 +0,0 @@ -from django.db import models - - -class Server(models.Model): - ip = models.CharField(max_length=16) - username = models.CharField(max_length=20) - password = models.CharField(max_length=30) - port = models.IntegerField(max_length=5) - sudo = models.BooleanField() - - def __unicode__(self): - return self.ip \ No newline at end of file diff --git a/webroot/AutoSa/RunCommand/views.py b/webroot/AutoSa/RunCommand/views.py deleted file mode 100644 index 28002783d..000000000 --- a/webroot/AutoSa/RunCommand/views.py +++ /dev/null @@ -1,2 +0,0 @@ -from django.shortcuts import render -