├── .idea
├── misc.xml
├── modules.xml
├── my_oms.iml
└── vcs.xml
├── README.md
├── account
├── __init__.py
├── admin.py
├── models.py
├── templates
│ └── registration
│ │ ├── logged_out.html
│ │ └── login.html
├── tests.py
├── urls.py
└── views.py
├── asset
├── __init__.py
├── admin.py
├── form.py
├── migrations
│ └── __init__.py
├── models.py
├── tests.py
└── views.py
├── demo
├── dashboard.jpg
├── host_list.jpg
├── install_record.jpg
├── log.jpg
├── login.jpg
├── module.jpg
├── remote.jpg
├── saltkey_list.jpg
└── system_install.jpg
├── deploy
├── __init__.py
├── admin.py
├── models.py
├── saltapi.py
├── tests.py
└── views.py
├── install
├── installed
├── __init__.py
├── admin.py
├── cobbler_api.py
├── form.py
├── migrations
│ └── __init__.py
├── models.py
├── tests.py
└── views.py
├── manage.py
├── my_oms
├── __init__.py
├── models.py
├── mysql.py
├── settings.py
├── settings_local.py
├── urls.py
├── views.py
└── wsgi.py
├── requirements.txt
└── templates
├── base.html
├── host_list.html
├── host_manage.html
├── index.html
├── install_list.html
├── install_manage.html
├── install_record_list.html
├── record.html
├── salt_key_list.html
├── salt_module_deploy.html
└── salt_remote_execution.html
/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
25 |
27 |
您已经成功退出. 你可以 重新登陆.
18 |