First ansible commit

This commit is contained in:
2018-11-12 16:30:14 +08:00
commit 162b95eee7
8057 changed files with 1214120 additions and 0 deletions

11
.ve/bin/pip Executable file
View File

@@ -0,0 +1,11 @@
#!/home/chchang/ansible/.ve/bin/python2
# -*- coding: utf-8 -*-
import re
import sys
from pip._internal import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(main())