Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gelencsér Szabolcs
/
salt
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Wiki
Members
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
7a95ab50
authored
Oct 11, 2014
by
Guba Sándor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add agent builder windows state
parent
243de2b0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
95 additions
and
0 deletions
+95
-0
salt/winagent/files/distutils.cfg
+2
-0
salt/winagent/init.sls
+93
-0
No files found.
salt/winagent/files/distutils.cfg
0 → 100644
View file @
7a95ab50
[build]
compiler = mingw32
salt/winagent/init.sls
0 → 100644
View file @
7a95ab50
msysgit:
pkg.installed
python2:
pkg.installed
7zip:
pkg.installed
get-pip.py:
file.managed:
- name: c:/get-pip.py
- source: https://raw.githubusercontent.com/pypa/pip/master/contrib/get-pip.py
- source_hash: md5=515f9476562994aa997df488c6c6c080
ez_setup.py:
file.managed:
- name: c:/ez_setup.py
- source: https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py
- source_hash: md5=4cfc24855347d1e01a73ff38830455b4
mingwget.zip:
file.managed:
- name: c:/mingwget.zip
- source: http://heanet.dl.sourceforge.net/project/mingw/Installer/mingw-get/mingw-get-0.6.2-beta-20131004-1/mingw-get-0.6.2-mingw32-beta-20131004-1-bin.zip
- source_hash: md5=971778e9330ae006aaeb2d63344be5f3
psutil.exe:
file.managed:
- name: c:/psutil.exe
- source: https://pypi.python.org/packages/2.7/p/psutil/psutil-2.1.3.win32-py2.7.exe
- source_hash: md5=57ded53eb8082c438f626c9e0de3357a
distutils.cfg:
file.managed:
- name: C:\python27\Lib\distutils\distutils.cfg
- source: salt://winagent/files/distutils.cfg
- template: jinja
getpip:
cmd.run:
- name: c:/python27/python.exe c:/get-pip.py
- unless: which pip
- require:
- pkg: python2
- file: get-pip.py
- reload_modules: True
easy_install:
cmd.run:
- name: c:/python27/python.exe c:/ez_setup.py > nul
- unless: which pip
- require:
- pkg: python2
- file: ez_setup.py
- reload_modules: True
unzip-mingw:
cmd.run:
- name: '"c:/Program Files/7-zip/7z.exe" x -o"C:\MinGW" -y c:/mingwget.zip'
- require:
- pkg: 7zip
- file: mingwget.zip
install_gcc:
cmd.run:
- name: 'c:\MinGW\bin\mingw-get install gcc'
- require:
- cmd: unzip-mingw
- win_path: 'C:\MinGW\bin'
pywin32:
file.managed:
- name: 'C:/pywin32.exe'
- source: http://softlayer-ams.dl.sourceforge.net/project/pywin32/pywin32/Build%20219/pywin32-219.win32-py2.7.exe
- source_hash: md5=f270e9f88155f649fc1a6c2f85aa128d
install_pywin32:
cmd.run:
- name: 'c:/Python27/Scripts/easy_install c:/pywin32.exe'
- require:
- file: pywin32
git_clone:
cmd.run:
- name: '"C:\Program Files (x86)\Git\bin\git.exe" clone {{ pillar['agent']['repo_name'] }} c:/agent'
- require:
- pkg: msysgit
pyinstaller_agent:
cmd.run:
- name: 'pyinstaller -F --hidden-import pkg_resources --hidden-import infi agent-winservice.py'
- cwd: 'c:/agent'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment