Skip to content

Commit e51201b

Browse files
committed
auth not working
1 parent 171802c commit e51201b

16 files changed

+678
-521
lines changed

Flansible.sln

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25123.0
4+
VisualStudioVersion = 14.0.25420.1
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{888888A0-9F3D-457C-B088-3A5042F75D52}") = "Flansible", "Flansible\Flansible.pyproj", "{2C5D41CB-9AE1-4747-924B-A3AE2770B7DD}"
77
EndProject

Flansible/Flansible.pyproj

+35
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,39 @@
2323
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
2424
</PropertyGroup>
2525
<ItemGroup>
26+
<Compile Include="flansible\ansible_task_output.py">
27+
<SubType>Code</SubType>
28+
</Compile>
29+
<Compile Include="flansible\ansible_task_status.py">
30+
<SubType>Code</SubType>
31+
</Compile>
32+
<Compile Include="flansible\auth_helper.py">
33+
<SubType>Code</SubType>
34+
</Compile>
35+
<Compile Include="flansible\celery_runner.py">
36+
<SubType>Code</SubType>
37+
</Compile>
38+
<Compile Include="flansible\git.py">
39+
<SubType>Code</SubType>
40+
</Compile>
41+
<Compile Include="flansible\list_playbooks.py">
42+
<SubType>Code</SubType>
43+
</Compile>
44+
<Compile Include="flansible\run_ansible_command.py">
45+
<SubType>Code</SubType>
46+
</Compile>
47+
<Compile Include="flansible\run_ansible_playbook.py">
48+
<SubType>Code</SubType>
49+
</Compile>
50+
<Compile Include="flansible\util_classes.py">
51+
<SubType>Code</SubType>
52+
</Compile>
53+
<Compile Include="flansible\__init__.py">
54+
<SubType>Code</SubType>
55+
</Compile>
56+
<Compile Include="runserver.py">
57+
<SubType>Code</SubType>
58+
</Compile>
2659
<Compile Include="flansible_git.py">
2760
<SubType>Code</SubType>
2861
</Compile>
@@ -36,6 +69,7 @@
3669
</ItemGroup>
3770
<ItemGroup>
3871
<Content Include="config.ini" />
72+
<Content Include="flansible\config.ini" />
3973
<Content Include="Examples\app.wsgi" />
4074
<Content Include="Examples\python.conf" />
4175
<Content Include="Examples\README.md" />
@@ -46,6 +80,7 @@
4680
</ItemGroup>
4781
<ItemGroup>
4882
<Folder Include="Examples\" />
83+
<Folder Include="flansible\" />
4984
<Folder Include="Utils\" />
5085
</ItemGroup>
5186
<PropertyGroup>

Flansible/Utils/debug.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ echo kill screens if any
22
killall screen || true
33
cd /home/thadmin/flansible/
44
echo start celery
5-
screen -d -m -s /bin/bash celery worker -A app.celery --loglevel=info
5+
screen -d -m -s /bin/bash celery worker -A flansible.celery worker --loglevel=info
66
echo start flower
77
screen -d -m -s /bin/bash flower --broker=redis://localhost:6379/0
88
echo start app

0 commit comments

Comments
 (0)