capistrano-windows-server 0.4.3 → 0.4.4

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -37,9 +37,9 @@ This section walks you through setting up SSH and Git on the windows server to p
37
37
  These instruction have been tested by me on Windows Server 2003 and 2008 r2. For other versions, YMMV.
38
38
  Administrative access is required.
39
39
 
40
- * *(Windows 7 or 2008 r2 only)* Disable User Access Control. We'll re-enable this later. Reboot if necessary.
40
+ * *(Windows 7 or 2008 r2 only)* Disable User Account Control. We'll re-enable this later. Reboot if necessary.
41
41
  <br><br>
42
- *Control Panel > Users > Notify never*
42
+ *Control Panel > User Accounts > Change User Account Control settings > Notify never*
43
43
 
44
44
  * Purchase and install WindowsGit from www.windowsgit.com ($9).
45
45
  <br><br>
@@ -65,9 +65,9 @@ Administrative access is required.
65
65
  <br><br>
66
66
  *Keys > Import: Paste in public keys; import one at a time.*
67
67
 
68
- * *(Windows 7 or 2008 r2 only)* Re-enable User Access Control
68
+ * *(Windows 7 or 2008 r2 only)* Re-enable User Account Control
69
69
  <br><br>
70
- *Control Panel > Users >* (restore previous value)
70
+ *Control Panel > User Accounts > Change User Account Control settings > * (restore previous value)
71
71
 
72
72
  Now that COPSSH is up and running, ensure that you can SSH into the server as the git user. If you have problems, check the COPSSH event log under the Status tab. Make sure $HOME/.ssh/authorized_keys contains the keys you added.
73
73
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.3
1
+ 0.4.4
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{capistrano-windows-server}
8
- s.version = "0.4.3"
8
+ s.version = "0.4.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Edward Anderson"]
12
- s.date = %q{2011-09-07}
12
+ s.date = %q{2011-09-27}
13
13
  s.description = %q{This gem modifies capistrano recipes to allow deploys to windows machines.
14
14
  Several nuances such as the lack of symlinks make the deploy a little different, but it's better than doing it by hand.
15
15
  See the github page for instruction on how to set up Windows to get it ready for a deploy.}
@@ -107,7 +107,7 @@ configuration.load do
107
107
  mongrel_instances.each do |n|
108
108
  run "mkdir -p #{current_path}/{tmp,log}" # These are often not under version control, but their absence keeps mongrel from recognizing the rails app
109
109
  run "cd #{current_path} && #{ruby_cmd 'mongrel', 'mongrel_rails'} service::install -e #{rails_env} -N #{mongrel_instance_prefix}#{n} -p #{base_port + n - mongrel_instances.first}; true"
110
- run %Q(sc.exe config "#{mongrel_instance_prefix}#{n}" start= auto; true)
110
+ run %Q(sc.exe config "#{mongrel_instance_prefix}#{n}" start= auto type= interact type= own; true)
111
111
  end
112
112
  end
113
113
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-windows-server
3
3
  version: !ruby/object:Gem::Version
4
- hash: 9
4
+ hash: 7
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 4
9
- - 3
10
- version: 0.4.3
9
+ - 4
10
+ version: 0.4.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Edward Anderson
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-09-07 00:00:00 -04:00
18
+ date: 2011-09-27 00:00:00 -04:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency