salted-rails 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (96) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +48 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE +20 -0
  5. data/README.md +79 -0
  6. data/Rakefile +1 -0
  7. data/lib/salted_rails.rb +5 -0
  8. data/lib/salted_rails/base.rb +5 -0
  9. data/lib/salted_rails/capistrano.rb +6 -0
  10. data/lib/salted_rails/vagrant_helper.rb +155 -0
  11. data/lib/salted_rails/version.rb +3 -0
  12. data/pillar/capistrano.sls +3 -0
  13. data/pillar/capistrano/top.sls +5 -0
  14. data/pillar/common.sls +15 -0
  15. data/pillar/vagrant.sls +3 -0
  16. data/pillar/vagrant/top.sls +5 -0
  17. data/salt/apt/partner-sources.sls +13 -0
  18. data/salt/apt/unwanted.sls +5 -0
  19. data/salt/capistrano.sls +0 -0
  20. data/salt/capistrano/minion +14 -0
  21. data/salt/capistrano/minion.sls +6 -0
  22. data/salt/capistrano/top.sls +8 -0
  23. data/salt/common.sls +19 -0
  24. data/salt/crons/init.sls +23 -0
  25. data/salt/databases/mysql/client-encoding-and-collation.cnf +2 -0
  26. data/salt/databases/mysql/client.sls +17 -0
  27. data/salt/databases/mysql/common.sls +22 -0
  28. data/salt/databases/mysql/config.sls +6 -0
  29. data/salt/databases/mysql/custom_config.sls +14 -0
  30. data/salt/databases/mysql/default-table-engine.cnf +2 -0
  31. data/salt/databases/mysql/group.sls +4 -0
  32. data/salt/databases/mysql/init.sls +8 -0
  33. data/salt/databases/mysql/server-encoding-and-collation.cnf +4 -0
  34. data/salt/databases/mysql/server.sls +59 -0
  35. data/salt/databases/phpmyadmin/etc/nginx/sites-available/.gitignore +3 -0
  36. data/salt/databases/phpmyadmin/etc/nginx/sites-available/phpmyadmin.conf +24 -0
  37. data/salt/databases/phpmyadmin/init.sls +27 -0
  38. data/salt/develop/init.sls +3 -0
  39. data/salt/echo_pillar.sls +9 -0
  40. data/salt/editors/vim/init.sls +12 -0
  41. data/salt/editors/vim/vimrc +23 -0
  42. data/salt/lang/php/composer.sls +9 -0
  43. data/salt/lang/php/etc/php5/fpm/php.fpm.ini +1818 -0
  44. data/salt/lang/php/etc/php5/fpm/pool.d/www.conf +393 -0
  45. data/salt/lang/php/init.sls +38 -0
  46. data/salt/lang/php/nginx.sls +9 -0
  47. data/salt/lang/python/python-libs.sls +28 -0
  48. data/salt/lang/ruby.sls +60 -0
  49. data/salt/lang/ruby.sls.bak +106 -0
  50. data/salt/lang/system_ruby.sls +43 -0
  51. data/salt/munin/files/nginx/plugin-conf.d/nginx +2 -0
  52. data/salt/munin/files/nginx/plugins/nginx_combined_localhost +160 -0
  53. data/salt/munin/files/nginx/plugins/nginx_request +114 -0
  54. data/salt/munin/files/nginx/plugins/nginx_status +126 -0
  55. data/salt/munin/files/node/checkPermissions.sh +10 -0
  56. data/salt/munin/files/node/munin-node.conf +54 -0
  57. data/salt/munin/files/php5-fpm/plugins/phpfpm_average +39 -0
  58. data/salt/munin/files/php5-fpm/plugins/phpfpm_connections +71 -0
  59. data/salt/munin/files/php5-fpm/plugins/phpfpm_memory +24 -0
  60. data/salt/munin/files/php5-fpm/plugins/phpfpm_processes +38 -0
  61. data/salt/munin/files/php5-fpm/plugins/phpfpm_status +83 -0
  62. data/salt/munin/files/server/munin.conf +107 -0
  63. data/salt/munin/nginx.sls +13 -0
  64. data/salt/munin/node.sls +34 -0
  65. data/salt/munin/php5-fpm.sls +13 -0
  66. data/salt/munin/server.sls +7 -0
  67. data/salt/railsapp/database.sls +25 -0
  68. data/salt/railsapp/files/Gemfile +57 -0
  69. data/salt/railsapp/files/Gemfile.lock +133 -0
  70. data/salt/railsapp/gems.sls +18 -0
  71. data/salt/railsapp/init.sls +3 -0
  72. data/salt/run-standalone +3 -0
  73. data/salt/salt/minion/config.template +259 -0
  74. data/salt/salt/minion/debconf.sls +3 -0
  75. data/salt/salt/minion/init.sls +49 -0
  76. data/salt/salt/minion/lsb.sls +8 -0
  77. data/salt/salt/minion/mysql.conf +1 -0
  78. data/salt/salt/minion/mysql.sls +20 -0
  79. data/salt/server/monit.sls +31 -0
  80. data/salt/server/sudo/init.sls +16 -0
  81. data/salt/server/sudo/sudoers +90 -0
  82. data/salt/sysutils/file.sls +8 -0
  83. data/salt/sysutils/init.sls +5 -0
  84. data/salt/sysutils/net.sls +9 -0
  85. data/salt/sysutils/status.sls +11 -0
  86. data/salt/sysutils/tmux.sls +3 -0
  87. data/salt/vagrant.sls +0 -0
  88. data/salt/vagrant/minion +14 -0
  89. data/salt/vagrant/minion.sls +6 -0
  90. data/salt/vagrant/top.sls +8 -0
  91. data/salt/www/chromium.sls +6 -0
  92. data/salt/www/nginx/etc/nginx/nginx.conf +53 -0
  93. data/salt/www/nginx/init.sls +20 -0
  94. data/salt/www/users.sls +12 -0
  95. data/salted-rails.gemspec +23 -0
  96. metadata +163 -0
@@ -0,0 +1,3 @@
1
+ debconf-utils:
2
+ pkg:
3
+ - installed
@@ -0,0 +1,49 @@
1
+ # Configuration file for salt-minion. Some workaround is present here:
2
+ # currently salt-minion cannot restart itself, thus it's impossible to restart
3
+ # minion after valuable changes like changing config file.
4
+
5
+ /etc/salt/minion.d:
6
+ file.directory:
7
+ - user: root
8
+ - group: root
9
+ - mode: 0755
10
+ - clean: True
11
+ - require:
12
+ - pkg: salt-minion
13
+
14
+ restart_minion:
15
+ cmd.wait:
16
+ - name: "echo 'invoke-rc.d salt-minion restart'|at now + 1 min"
17
+ - order: last
18
+ - watch:
19
+ - pkg: salt-minion
20
+ - file: /etc/salt/minion
21
+ - file: /etc/salt/minion.d
22
+ - require:
23
+ - pkg: at
24
+
25
+ salt-minion:
26
+ service:
27
+ - running
28
+ - enable: True
29
+ pkg.installed:
30
+ - names:
31
+ - salt-minion
32
+ - at
33
+ file.managed:
34
+ - name: /etc/salt/minion
35
+ - owner: root
36
+ - group: root
37
+ - mode: 0644
38
+ - source: salt://salt/minion/config.template
39
+ - template: jinja
40
+ - context:
41
+ master: salt
42
+ file_roots:
43
+ base:
44
+ - /srv/salt/private
45
+ - /srv/salt/base
46
+ pillar_roots:
47
+ base:
48
+ - /srv/salt/private/pillar
49
+ - /srv/salt/base/pillar
@@ -0,0 +1,8 @@
1
+ include:
2
+ - salt.minion
3
+
4
+ lsb-release:
5
+ pkg.installed:
6
+ - watch_in:
7
+ - cmd: restart_minion
8
+
@@ -0,0 +1 @@
1
+ mysql.default_file: /etc/mysql/debian.cnf
@@ -0,0 +1,20 @@
1
+ include:
2
+ - salt.minion
3
+
4
+ python-mysqldb:
5
+ pkg:
6
+ - installed
7
+
8
+ /etc/salt/minion.d/mysql.conf:
9
+ file.managed:
10
+ - source: salt://salt/minion/mysql.conf
11
+ - user: root
12
+ - group: root
13
+ - mode: 0644
14
+ - require_in:
15
+ - file: /etc/salt/minion.d
16
+ - require:
17
+ - pkg: mysql-server
18
+ - pkg: python-mysqldb
19
+ - watch_in:
20
+ - cmd: restart_minion
@@ -0,0 +1,31 @@
1
+ monit:
2
+ pkg.installed: []
3
+ service.running:
4
+ - enable: True
5
+ - require:
6
+ - pkg.installed: monit
7
+ - file.sed: /etc/default/monit
8
+ - file.append: /etc/monit/monitrc
9
+ - watch:
10
+ - file.append: /etc/monit/monitrc
11
+ file.append:
12
+ - name: /etc/monit/monitrc
13
+ - text:
14
+ - set daemon 30
15
+ - include /etc/monit/conf.d/*
16
+ - require:
17
+ - pkg: monit
18
+
19
+ /etc/default/monit:
20
+ file.sed:
21
+ {% if grains['oscodename'] == 'precise' or grains['oscodename'] == 'quantal' or grains['oscodename'] == 'raring' %}
22
+ - before: 'no'
23
+ - after: 'yes'
24
+ - limit: '^START='
25
+ {% else %}
26
+ - before: 0
27
+ - after: 1
28
+ - limit: ^startup=
29
+ {% endif %}
30
+ - require:
31
+ - pkg: monit
@@ -0,0 +1,16 @@
1
+ sudo:
2
+ pkg:
3
+ - installed
4
+ /etc/sudoers:
5
+ file:
6
+ - managed
7
+ - source: salt://sudo/sudoers
8
+ - user: root
9
+ {% if grains['os'] == 'FreeBSD'%}
10
+ - group: wheel
11
+ {% else %}
12
+ - group: root
13
+ {% endif %}
14
+ - mode: 400
15
+ - require:
16
+ - pkg: sudo
@@ -0,0 +1,90 @@
1
+ ## sudoers file.
2
+ ##
3
+ ## This file MUST be edited with the 'visudo' command as root.
4
+ ## Failure to use 'visudo' may result in syntax or file permission errors
5
+ ## that prevent sudo from running.
6
+ ##
7
+ ## See the sudoers man page for the details on how to write a sudoers file.
8
+ ##
9
+
10
+ ##
11
+ ## Host alias specification
12
+ ##
13
+ ## Groups of machines. These may include host names (optionally with wildcards),
14
+ ## IP addresses, network numbers or netgroups.
15
+ # Host_Alias WEBSERVERS = www1, www2, www3
16
+
17
+ ##
18
+ ## User alias specification
19
+ ##
20
+ ## Groups of users. These may consist of user names, uids, Unix groups,
21
+ ## or netgroups.
22
+ # User_Alias ADMINS = millert, dowdy, mikef
23
+
24
+ ##
25
+ ## Cmnd alias specification
26
+ ##
27
+ ## Groups of commands. Often used to group related commands together.
28
+ # Cmnd_Alias PROCESSES = /usr/bin/nice, /bin/kill, /usr/bin/renice, \
29
+ # /usr/bin/pkill, /usr/bin/top
30
+
31
+ ##
32
+ ## Defaults specification
33
+ ##
34
+ ## You may wish to keep some of the following environment variables
35
+ ## when running commands via sudo.
36
+ ##
37
+ ## Locale settings
38
+ # Defaults env_keep += "LANG LANGUAGE LINGUAS LC_* _XKB_CHARSET"
39
+ ##
40
+ ## Run X applications through sudo; HOME is used to find the
41
+ ## .Xauthority file. Note that other programs use HOME to find
42
+ ## configuration files and this may lead to privilege escalation!
43
+ # Defaults env_keep += "HOME"
44
+ ##
45
+ ## X11 resource path settings
46
+ # Defaults env_keep += "XAPPLRESDIR XFILESEARCHPATH XUSERFILESEARCHPATH"
47
+ ##
48
+ ## Desktop path settings
49
+ # Defaults env_keep += "QTDIR KDEDIR"
50
+ ##
51
+ ## Allow sudo-run commands to inherit the callers' ConsoleKit session
52
+ # Defaults env_keep += "XDG_SESSION_COOKIE"
53
+ ##
54
+ ## Uncomment to enable special input methods. Care should be taken as
55
+ ## this may allow users to subvert the command being run via sudo.
56
+ # Defaults env_keep += "XMODIFIERS GTK_IM_MODULE QT_IM_MODULE QT_IM_SWITCHER"
57
+ ##
58
+ ## Uncomment to enable logging of a command's output, except for
59
+ ## sudoreplay and reboot. Use sudoreplay to play back logged sessions.
60
+ # Defaults log_output
61
+ # Defaults!/usr/bin/sudoreplay !log_output
62
+ # Defaults!/usr/local/bin/sudoreplay !log_output
63
+ # Defaults!/sbin/reboot !log_output
64
+
65
+ ##
66
+ ## Runas alias specification
67
+ ##
68
+
69
+ ##
70
+ ## User privilege specification
71
+ ##
72
+ root ALL=(ALL) ALL
73
+
74
+ ## Uncomment to allow members of group wheel to execute any command
75
+ # %wheel ALL=(ALL) ALL
76
+
77
+ ## Same thing without a password
78
+ %wheel ALL=(ALL) NOPASSWD: ALL
79
+
80
+ ## Uncomment to allow members of group sudo to execute any command
81
+ # %sudo ALL=(ALL) ALL
82
+
83
+ ## Uncomment to allow any user to run sudo if they know the password
84
+ ## of the user they are running the command as (root by default).
85
+ # Defaults targetpw # Ask for the password of the target user
86
+ # ALL ALL=(ALL) ALL # WARNING: only use this together with 'Defaults targetpw'
87
+
88
+ ## Read drop-in files from /etc/sudoers.d
89
+ ## (the '#' here does not indicate a comment)
90
+ #includedir /etc/sudoers.d
@@ -0,0 +1,8 @@
1
+ # Optional packages
2
+ file:
3
+ pkg.installed:
4
+ - pkgs:
5
+ - gzip
6
+ - unzip
7
+ - saidar
8
+ - less
@@ -0,0 +1,5 @@
1
+ include:
2
+ - sysutils.file
3
+ - sysutils.net
4
+ - sysutils.status
5
+ - sysutils.tmux
@@ -0,0 +1,9 @@
1
+ # Optional packages
2
+ net:
3
+ pkg.installed:
4
+ - pkgs:
5
+ - traceroute
6
+ - whois
7
+ - lynx-cur
8
+ - wget
9
+ - curl
@@ -0,0 +1,11 @@
1
+ # Optional packages
2
+ status:
3
+ pkg.installed:
4
+ - pkgs:
5
+ - saidar
6
+ - sysstat
7
+ - iotop
8
+ - lsof
9
+ - htop
10
+ - nethogs
11
+ - facter
@@ -0,0 +1,3 @@
1
+ tmux:
2
+ pkg:
3
+ - installed
data/salt/vagrant.sls ADDED
File without changes
@@ -0,0 +1,14 @@
1
+ # Standard masterless salt minion set-up
2
+ master: localhost
3
+ file_client: local
4
+ state_auto_order: True
5
+
6
+ file_roots:
7
+ base:
8
+ - /srv/salt/vagrant
9
+ - /srv/salt
10
+
11
+ pillar_roots:
12
+ base:
13
+ - /srv/pillar/vagrant
14
+ - /srv/pillar
@@ -0,0 +1,6 @@
1
+ minion:
2
+ file:
3
+ - source: salt://vagrant/minion
4
+ - name: /etc/salt/minion
5
+ - mode: 644
6
+
@@ -0,0 +1,8 @@
1
+ base:
2
+ '*':
3
+ - common
4
+ - vagrant
5
+
6
+ # if GUI:
7
+ # www.chromium
8
+
@@ -0,0 +1,6 @@
1
+ chromium-browser:
2
+ pkg.installed:
3
+ - names:
4
+ - chromium-browser
5
+ - chromium-codecs-ffmpeg
6
+ - chromium-codecs-ffmpeg-extra
@@ -0,0 +1,53 @@
1
+ user www-data www-data;
2
+ worker_processes 4;
3
+ pid /var/run/nginx.pid;
4
+
5
+ events {
6
+ worker_connections 768;
7
+ # multi_accept on;
8
+ }
9
+
10
+ http {
11
+ sendfile on;
12
+ tcp_nopush on;
13
+ tcp_nodelay on;
14
+ types_hash_max_size 2048;
15
+ server_tokens off;
16
+
17
+ # Headers
18
+ add_header X-Server-ID $hostname;
19
+
20
+ # Size Limits & Buffer Overflows
21
+ # One of the most important things to tweak
22
+ client_body_buffer_size 128k;
23
+ client_header_buffer_size 1k;
24
+ client_max_body_size 20m;
25
+ large_client_header_buffers 4 16k;
26
+
27
+ # Timeouts
28
+ client_body_timeout 10;
29
+ client_header_timeout 20;
30
+ keepalive_timeout 15 15;
31
+ send_timeout 10;
32
+
33
+ # SSL settings
34
+ ssl_session_cache shared:SSL:10m;
35
+ ssl_session_timeout 10m;
36
+
37
+ # server_names_hash_bucket_size 64;
38
+ # server_name_in_redirect off;
39
+
40
+ ##
41
+ # Gzip Settings
42
+ ##
43
+
44
+ gzip on;
45
+ gzip_disable "msie6";
46
+
47
+ include mime.types;
48
+ default_type application/octet-stream;
49
+
50
+ # include /etc/nginx/naxsi_core.rules;
51
+ include conf.d/*.autoload.conf;
52
+ include sites-enabled/*.conf;
53
+ }
@@ -0,0 +1,20 @@
1
+ nginx:
2
+ pkg.installed:
3
+ - name: nginx-full
4
+ service:
5
+ - running
6
+ - enable: True
7
+ - reload: True
8
+ - watch:
9
+ #- file: {{ pillar['etc_dir'] }}nginx/nginx.conf
10
+ #- file: {{ pillar['etc_dir'] }}nginx/sites-enabled/*
11
+ - file: {{ pillar['etc_dir'] }}nginx/*
12
+ require:
13
+ - file: {{ pillar['etc_dir'] }}nginx/nginx.conf
14
+
15
+ #{{ pillar['etc_dir'] }}nginx/nginx.conf:
16
+ # file.managed:
17
+ # - source: salt://www/nginx/etc/nginx/nginx.conf
18
+ # - user: root
19
+ # - group: root
20
+ # - mode: 644
@@ -0,0 +1,12 @@
1
+ {{ pillar['www_dir'] }}:
2
+ file.directory:
3
+ - user: www-data
4
+ - group: www-data
5
+ - mode: 775
6
+ - makedirs: True
7
+ - require:
8
+ - group: www-data
9
+
10
+ www-data:
11
+ group.present:
12
+ - system: True
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'salted_rails/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "salted-rails"
8
+ spec.version = SaltedRails::VERSION
9
+ spec.authors = ["Ian Heggie"]
10
+ spec.email = ["ian@heggie.biz"]
11
+ spec.description = %q{Provision rails using salt for vagrant or capistrano controlled systems}
12
+ spec.summary = %q{Provision rails using salt for vagrant or capistrano controlled systems}
13
+ spec.homepage = "https://github.com/ianheggie/salted-rails"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+ end
metadata ADDED
@@ -0,0 +1,163 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: salted-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Ian Heggie
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2013-09-29 00:00:00 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bundler
16
+ prerelease: false
17
+ requirement: &id001 !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: "1.3"
22
+ type: :development
23
+ version_requirements: *id001
24
+ - !ruby/object:Gem::Dependency
25
+ name: rake
26
+ prerelease: false
27
+ requirement: &id002 !ruby/object:Gem::Requirement
28
+ requirements:
29
+ - &id003
30
+ - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: "0"
33
+ type: :development
34
+ version_requirements: *id002
35
+ description: Provision rails using salt for vagrant or capistrano controlled systems
36
+ email:
37
+ - ian@heggie.biz
38
+ executables: []
39
+
40
+ extensions: []
41
+
42
+ extra_rdoc_files: []
43
+
44
+ files:
45
+ - .gitignore
46
+ - Gemfile
47
+ - LICENSE
48
+ - README.md
49
+ - Rakefile
50
+ - lib/salted_rails.rb
51
+ - lib/salted_rails/base.rb
52
+ - lib/salted_rails/capistrano.rb
53
+ - lib/salted_rails/vagrant_helper.rb
54
+ - lib/salted_rails/version.rb
55
+ - pillar/capistrano.sls
56
+ - pillar/capistrano/top.sls
57
+ - pillar/common.sls
58
+ - pillar/vagrant.sls
59
+ - pillar/vagrant/top.sls
60
+ - salt/apt/partner-sources.sls
61
+ - salt/apt/unwanted.sls
62
+ - salt/capistrano.sls
63
+ - salt/capistrano/minion
64
+ - salt/capistrano/minion.sls
65
+ - salt/capistrano/top.sls
66
+ - salt/common.sls
67
+ - salt/crons/init.sls
68
+ - salt/databases/mysql/client-encoding-and-collation.cnf
69
+ - salt/databases/mysql/client.sls
70
+ - salt/databases/mysql/common.sls
71
+ - salt/databases/mysql/config.sls
72
+ - salt/databases/mysql/custom_config.sls
73
+ - salt/databases/mysql/default-table-engine.cnf
74
+ - salt/databases/mysql/group.sls
75
+ - salt/databases/mysql/init.sls
76
+ - salt/databases/mysql/server-encoding-and-collation.cnf
77
+ - salt/databases/mysql/server.sls
78
+ - salt/databases/phpmyadmin/etc/nginx/sites-available/.gitignore
79
+ - salt/databases/phpmyadmin/etc/nginx/sites-available/phpmyadmin.conf
80
+ - salt/databases/phpmyadmin/init.sls
81
+ - salt/develop/init.sls
82
+ - salt/echo_pillar.sls
83
+ - salt/editors/vim/init.sls
84
+ - salt/editors/vim/vimrc
85
+ - salt/lang/php/composer.sls
86
+ - salt/lang/php/etc/php5/fpm/php.fpm.ini
87
+ - salt/lang/php/etc/php5/fpm/pool.d/www.conf
88
+ - salt/lang/php/init.sls
89
+ - salt/lang/php/nginx.sls
90
+ - salt/lang/python/python-libs.sls
91
+ - salt/lang/ruby.sls
92
+ - salt/lang/ruby.sls.bak
93
+ - salt/lang/system_ruby.sls
94
+ - salt/munin/files/nginx/plugin-conf.d/nginx
95
+ - salt/munin/files/nginx/plugins/nginx_combined_localhost
96
+ - salt/munin/files/nginx/plugins/nginx_request
97
+ - salt/munin/files/nginx/plugins/nginx_status
98
+ - salt/munin/files/node/checkPermissions.sh
99
+ - salt/munin/files/node/munin-node.conf
100
+ - salt/munin/files/php5-fpm/plugins/phpfpm_average
101
+ - salt/munin/files/php5-fpm/plugins/phpfpm_connections
102
+ - salt/munin/files/php5-fpm/plugins/phpfpm_memory
103
+ - salt/munin/files/php5-fpm/plugins/phpfpm_processes
104
+ - salt/munin/files/php5-fpm/plugins/phpfpm_status
105
+ - salt/munin/files/server/munin.conf
106
+ - salt/munin/nginx.sls
107
+ - salt/munin/node.sls
108
+ - salt/munin/php5-fpm.sls
109
+ - salt/munin/server.sls
110
+ - salt/railsapp/database.sls
111
+ - salt/railsapp/files/Gemfile
112
+ - salt/railsapp/files/Gemfile.lock
113
+ - salt/railsapp/gems.sls
114
+ - salt/railsapp/init.sls
115
+ - salt/run-standalone
116
+ - salt/salt/minion/config.template
117
+ - salt/salt/minion/debconf.sls
118
+ - salt/salt/minion/init.sls
119
+ - salt/salt/minion/lsb.sls
120
+ - salt/salt/minion/mysql.conf
121
+ - salt/salt/minion/mysql.sls
122
+ - salt/server/monit.sls
123
+ - salt/server/sudo/init.sls
124
+ - salt/server/sudo/sudoers
125
+ - salt/sysutils/file.sls
126
+ - salt/sysutils/init.sls
127
+ - salt/sysutils/net.sls
128
+ - salt/sysutils/status.sls
129
+ - salt/sysutils/tmux.sls
130
+ - salt/vagrant.sls
131
+ - salt/vagrant/minion
132
+ - salt/vagrant/minion.sls
133
+ - salt/vagrant/top.sls
134
+ - salt/www/chromium.sls
135
+ - salt/www/nginx/etc/nginx/nginx.conf
136
+ - salt/www/nginx/init.sls
137
+ - salt/www/users.sls
138
+ - salted-rails.gemspec
139
+ homepage: https://github.com/ianheggie/salted-rails
140
+ licenses:
141
+ - MIT
142
+ metadata: {}
143
+
144
+ post_install_message:
145
+ rdoc_options: []
146
+
147
+ require_paths:
148
+ - lib
149
+ required_ruby_version: !ruby/object:Gem::Requirement
150
+ requirements:
151
+ - *id003
152
+ required_rubygems_version: !ruby/object:Gem::Requirement
153
+ requirements:
154
+ - *id003
155
+ requirements: []
156
+
157
+ rubyforge_project:
158
+ rubygems_version: 2.1.5
159
+ signing_key:
160
+ specification_version: 4
161
+ summary: Provision rails using salt for vagrant or capistrano controlled systems
162
+ test_files: []
163
+