ubuntu-machine-rachid 0.5.3.2.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MIT-LICENSE +20 -0
- data/README +15 -0
- data/lib/capistrano/ext/ubuntu-machine/apache.rb +118 -0
- data/lib/capistrano/ext/ubuntu-machine/aptitude.rb +99 -0
- data/lib/capistrano/ext/ubuntu-machine/extras.rb +39 -0
- data/lib/capistrano/ext/ubuntu-machine/ffmpeg.rb +43 -0
- data/lib/capistrano/ext/ubuntu-machine/gems.rb +41 -0
- data/lib/capistrano/ext/ubuntu-machine/git.rb +15 -0
- data/lib/capistrano/ext/ubuntu-machine/helpers.rb +36 -0
- data/lib/capistrano/ext/ubuntu-machine/iptables.rb +20 -0
- data/lib/capistrano/ext/ubuntu-machine/lmsensors.rb +26 -0
- data/lib/capistrano/ext/ubuntu-machine/machine.rb +50 -0
- data/lib/capistrano/ext/ubuntu-machine/mysql.rb +64 -0
- data/lib/capistrano/ext/ubuntu-machine/network.rb +42 -0
- data/lib/capistrano/ext/ubuntu-machine/ntp.rb +37 -0
- data/lib/capistrano/ext/ubuntu-machine/odbc.rb +44 -0
- data/lib/capistrano/ext/ubuntu-machine/php.rb +8 -0
- data/lib/capistrano/ext/ubuntu-machine/postfix.rb +7 -0
- data/lib/capistrano/ext/ubuntu-machine/rails3.rb +7 -0
- data/lib/capistrano/ext/ubuntu-machine/ruby.rb +82 -0
- data/lib/capistrano/ext/ubuntu-machine/ssh.rb +64 -0
- data/lib/capistrano/ext/ubuntu-machine/templates/apache2.erb +7 -0
- data/lib/capistrano/ext/ubuntu-machine/templates/deflate.conf.erb +3 -0
- data/lib/capistrano/ext/ubuntu-machine/templates/freetds.conf.erb +8 -0
- data/lib/capistrano/ext/ubuntu-machine/templates/iptables.erb +46 -0
- data/lib/capistrano/ext/ubuntu-machine/templates/my.cnf.erb +3 -0
- data/lib/capistrano/ext/ubuntu-machine/templates/new_db.erb +5 -0
- data/lib/capistrano/ext/ubuntu-machine/templates/ntp.conf.erb +16 -0
- data/lib/capistrano/ext/ubuntu-machine/templates/ntpdate.erb +13 -0
- data/lib/capistrano/ext/ubuntu-machine/templates/odbc.ini.erb +8 -0
- data/lib/capistrano/ext/ubuntu-machine/templates/odbcinst.ini.erb +7 -0
- data/lib/capistrano/ext/ubuntu-machine/templates/passenger.conf.erb +2 -0
- data/lib/capistrano/ext/ubuntu-machine/templates/passenger.load.erb +1 -0
- data/lib/capistrano/ext/ubuntu-machine/templates/sources.jaunty.erb +55 -0
- data/lib/capistrano/ext/ubuntu-machine/templates/sources.lucid.erb +22 -0
- data/lib/capistrano/ext/ubuntu-machine/templates/sshd_config.erb +80 -0
- data/lib/capistrano/ext/ubuntu-machine/templates/vhost.erb +17 -0
- data/lib/capistrano/ext/ubuntu-machine/templates/vsftpd.conf.erb +158 -0
- data/lib/capistrano/ext/ubuntu-machine/templates/xsendfile.load.erb +1 -0
- data/lib/capistrano/ext/ubuntu-machine/tmpfs.rb +17 -0
- data/lib/capistrano/ext/ubuntu-machine/utils.rb +49 -0
- data/lib/capistrano/ext/ubuntu-machine/vsftpd.rb +63 -0
- data/lib/capistrano/ext/ubuntu-machine.rb +30 -0
- metadata +130 -0
@@ -0,0 +1,158 @@
|
|
1
|
+
# Example config file /etc/vsftpd.conf
|
2
|
+
#
|
3
|
+
# The default compiled in settings are fairly paranoid. This sample file
|
4
|
+
# loosens things up a bit, to make the ftp daemon more usable.
|
5
|
+
# Please see vsftpd.conf.5 for all compiled in defaults.
|
6
|
+
#
|
7
|
+
# READ THIS: This example file is NOT an exhaustive list of vsftpd options.
|
8
|
+
# Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's
|
9
|
+
# capabilities.
|
10
|
+
#
|
11
|
+
#
|
12
|
+
# Run standalone? vsftpd can run either from an inetd or as a standalone
|
13
|
+
# daemon started from an initscript.
|
14
|
+
#listen=YES
|
15
|
+
#
|
16
|
+
# Run standalone with IPv6?
|
17
|
+
# Like the listen parameter, except vsftpd will listen on an IPv6 socket
|
18
|
+
# instead of an IPv4 one. This parameter and the listen parameter are mutually
|
19
|
+
# exclusive.
|
20
|
+
#listen_ipv6=YES
|
21
|
+
#
|
22
|
+
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
|
23
|
+
#anonymous_enable=YES
|
24
|
+
#
|
25
|
+
# Uncomment this to allow local users to log in.
|
26
|
+
#local_enable=YES
|
27
|
+
#
|
28
|
+
# Uncomment this to enable any form of FTP write command.
|
29
|
+
#write_enable=YES
|
30
|
+
#
|
31
|
+
# Default umask for local users is 077. You may wish to change this to 022,
|
32
|
+
# if your users expect that (022 is used by most other ftpd's)
|
33
|
+
#local_umask=022
|
34
|
+
#
|
35
|
+
# Uncomment this to allow the anonymous FTP user to upload files. This only
|
36
|
+
# has an effect if the above global write enable is activated. Also, you will
|
37
|
+
# obviously need to create a directory writable by the FTP user.
|
38
|
+
#anon_upload_enable=YES
|
39
|
+
#
|
40
|
+
# Uncomment this if you want the anonymous FTP user to be able to create
|
41
|
+
# new directories.
|
42
|
+
#anon_mkdir_write_enable=YES
|
43
|
+
#
|
44
|
+
# Activate directory messages - messages given to remote users when they
|
45
|
+
# go into a certain directory.
|
46
|
+
#dirmessage_enable=YES
|
47
|
+
#
|
48
|
+
# Activate logging of uploads/downloads.
|
49
|
+
#xferlog_enable=YES
|
50
|
+
#
|
51
|
+
# Make sure PORT transfer connections originate from port 20 (ftp-data).
|
52
|
+
#connect_from_port_20=YES
|
53
|
+
#
|
54
|
+
# If you want, you can arrange for uploaded anonymous files to be owned by
|
55
|
+
# a different user. Note! Using "root" for uploaded files is not
|
56
|
+
# recommended!
|
57
|
+
#chown_uploads=YES
|
58
|
+
#chown_username=whoever
|
59
|
+
#
|
60
|
+
# You may override where the log file goes if you like. The default is shown
|
61
|
+
# below.
|
62
|
+
#xferlog_file=/var/log/vsftpd.log
|
63
|
+
#
|
64
|
+
# If you want, you can have your log file in standard ftpd xferlog format
|
65
|
+
#xferlog_std_format=YES
|
66
|
+
#
|
67
|
+
# You may change the default value for timing out an idle session.
|
68
|
+
#idle_session_timeout=600
|
69
|
+
#
|
70
|
+
# You may change the default value for timing out a data connection.
|
71
|
+
#data_connection_timeout=120
|
72
|
+
#
|
73
|
+
# It is recommended that you define on your system a unique user which the
|
74
|
+
# ftp server can use as a totally isolated and unprivileged user.
|
75
|
+
#nopriv_user=ftpsecure
|
76
|
+
#
|
77
|
+
# Enable this and the server will recognise asynchronous ABOR requests. Not
|
78
|
+
# recommended for security (the code is non-trivial). Not enabling it,
|
79
|
+
# however, may confuse older FTP clients.
|
80
|
+
#async_abor_enable=YES
|
81
|
+
#
|
82
|
+
# By default the server will pretend to allow ASCII mode but in fact ignore
|
83
|
+
# the request. Turn on the below options to have the server actually do ASCII
|
84
|
+
# mangling on files when in ASCII mode.
|
85
|
+
# Beware that on some FTP servers, ASCII support allows a denial of service
|
86
|
+
# attack (DoS) via the command "SIZE /big/file" in ASCII mode. vsftpd
|
87
|
+
# predicted this attack and has always been safe, reporting the size of the
|
88
|
+
# raw file.
|
89
|
+
# ASCII mangling is a horrible feature of the protocol.
|
90
|
+
#ascii_upload_enable=YES
|
91
|
+
#ascii_download_enable=YES
|
92
|
+
#
|
93
|
+
# You may fully customise the login banner string:
|
94
|
+
#ftpd_banner=Welcome to blah FTP service.
|
95
|
+
#
|
96
|
+
# You may specify a file of disallowed anonymous e-mail addresses. Apparently
|
97
|
+
# useful for combatting certain DoS attacks.
|
98
|
+
#deny_email_enable=YES
|
99
|
+
# (default follows)
|
100
|
+
#banned_email_file=/etc/vsftpd.banned_emails
|
101
|
+
#
|
102
|
+
# You may restrict local users to their home directories. See the FAQ for
|
103
|
+
# the possible risks in this before using chroot_local_user or
|
104
|
+
# chroot_list_enable below.
|
105
|
+
#chroot_local_user=YES
|
106
|
+
#
|
107
|
+
# You may specify an explicit list of local users to chroot() to their home
|
108
|
+
# directory. If chroot_local_user is YES, then this list becomes a list of
|
109
|
+
# users to NOT chroot().
|
110
|
+
#chroot_list_enable=YES
|
111
|
+
# (default follows)
|
112
|
+
#chroot_list_file=/etc/vsftpd.chroot_list
|
113
|
+
#
|
114
|
+
# You may activate the "-R" option to the builtin ls. This is disabled by
|
115
|
+
# default to avoid remote users being able to cause excessive I/O on large
|
116
|
+
# sites. However, some broken FTP clients such as "ncftp" and "mirror" assume
|
117
|
+
# the presence of the "-R" option, so there is a strong case for enabling it.
|
118
|
+
#ls_recurse_enable=YES
|
119
|
+
#
|
120
|
+
#
|
121
|
+
# Debian customization
|
122
|
+
#
|
123
|
+
# Some of vsftpd's settings don't fit the Debian filesystem layout by
|
124
|
+
# default. These settings are more Debian-friendly.
|
125
|
+
#
|
126
|
+
# This option should be the name of a directory which is empty. Also, the
|
127
|
+
# directory should not be writable by the ftp user. This directory is used
|
128
|
+
# as a secure chroot() jail at times vsftpd does not require filesystem
|
129
|
+
# access.
|
130
|
+
secure_chroot_dir=/var/run/vsftpd
|
131
|
+
#
|
132
|
+
# This string is the name of the PAM service vsftpd will use.
|
133
|
+
pam_service_name=vsftpd
|
134
|
+
#
|
135
|
+
# This option specifies the location of the RSA certificate to use for SSL
|
136
|
+
# encrypted connections.
|
137
|
+
rsa_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
|
138
|
+
# This option specifies the location of the RSA key to use for SSL
|
139
|
+
# encrypted connections.
|
140
|
+
rsa_private_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
|
141
|
+
|
142
|
+
# We run from init.d
|
143
|
+
listen=YES
|
144
|
+
# We do not want anons connecting nor uploading
|
145
|
+
anonymous_enable=NO
|
146
|
+
anon_upload_enable=NO
|
147
|
+
# We want local users connecting/writing
|
148
|
+
local_enable=YES
|
149
|
+
write_enable=YES
|
150
|
+
# Files are initially created as Owner/Group read/write
|
151
|
+
file_open_mode=0660
|
152
|
+
local_umask=0007
|
153
|
+
# No need for active directory messages
|
154
|
+
dirmessage_enable=NO
|
155
|
+
xferlog_enable=YES
|
156
|
+
connect_from_port_20=YES
|
157
|
+
# Jail that local user!
|
158
|
+
chroot_local_user=YES
|
@@ -0,0 +1 @@
|
|
1
|
+
LoadModule xsendfile_module /usr/lib/apache2/modules/mod_xsendfile.so
|
@@ -0,0 +1,17 @@
|
|
1
|
+
namespace :tmpfs do
|
2
|
+
_cset(:tmpfs_directories) do
|
3
|
+
abort "Please specify the tmpfs directories:\n set :tmpfs_directories do\n{\n'/tmpfs' => {:size => '2G', :mode => '0744'},\n}\nend"
|
4
|
+
end
|
5
|
+
|
6
|
+
desc "Create tmpfs directories"
|
7
|
+
task :create_directories, :roles => :app do
|
8
|
+
tmpfs_directories.each do |dir,options|
|
9
|
+
options[:size] ||= '2G'
|
10
|
+
options[:mode] ||= '0744'
|
11
|
+
sudo "mkdir -p #{dir}"
|
12
|
+
fstab_line = "tmpfs #{dir} tmpfs size=#{options[:size]},mode=#{options[:mode]} 0 0"
|
13
|
+
sudo_add_to_file('/etc/fstab',fstab_line)
|
14
|
+
sudo "mount #{dir}"
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
namespace :utils do
|
2
|
+
|
3
|
+
desc "Reboot the system."
|
4
|
+
task :reboot, :roles => :gateway do
|
5
|
+
sure = Capistrano::CLI.ui.ask("Are you sure you want to reboot now? (y/n) : ")
|
6
|
+
sudo "reboot" if sure=="y"
|
7
|
+
end
|
8
|
+
|
9
|
+
desc "Force a reboot of the system."
|
10
|
+
task :force_reboot, :roles => :gateway do
|
11
|
+
sudo "reboot"
|
12
|
+
end
|
13
|
+
|
14
|
+
desc "Show the amount of free disk space."
|
15
|
+
task :disk_space, :roles => :gateway do
|
16
|
+
run "df -h /"
|
17
|
+
end
|
18
|
+
|
19
|
+
desc "Display amount of free and used memory in the system."
|
20
|
+
task :free, :roles => :gateway do
|
21
|
+
run "free -m"
|
22
|
+
end
|
23
|
+
|
24
|
+
desc "Display passenger status information."
|
25
|
+
task :passenger_status, :roles => :gateway do
|
26
|
+
sudo "/opt/ruby-enterprise/bin/passenger-status"
|
27
|
+
end
|
28
|
+
|
29
|
+
desc "Display passenger memory usage information."
|
30
|
+
task :passenger_memory, :roles => :gateway do
|
31
|
+
sudo "/opt/ruby-enterprise/bin/passenger-memory-stats"
|
32
|
+
end
|
33
|
+
|
34
|
+
desc "Activate Phusion Passenger Enterprise Edition."
|
35
|
+
task :passenger_enterprise, :roles => :gateway do
|
36
|
+
|
37
|
+
sudo_and_watch_prompt("/opt/ruby-enterprise/bin/passenger-make-enterprisey", [/Key\:/, /again\:/])
|
38
|
+
end
|
39
|
+
|
40
|
+
|
41
|
+
desc "Copy sources list"
|
42
|
+
task :copy_sources, :roles => :gateway do
|
43
|
+
put render("sources.lucid", binding), "sources.list"
|
44
|
+
sudo "mv sources.list /etc/apt/sources.list"
|
45
|
+
sudo "apt-get update"
|
46
|
+
end
|
47
|
+
|
48
|
+
|
49
|
+
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
namespace :vsftpd do
|
2
|
+
set :vsftpd_user_shell, '/usr/sbin/nologin'
|
3
|
+
set :vsftpd_group, 'ftpusers'
|
4
|
+
_cset(:vsftpd_users) { abort "Please specify the VSFTPd users:\n set :vsftpd_users, ['user1', 'user2']" }
|
5
|
+
|
6
|
+
desc "Install VSFTPd"
|
7
|
+
task :install do
|
8
|
+
sudo "aptitude install -y vsftpd"
|
9
|
+
configure
|
10
|
+
add_nologin_shell
|
11
|
+
create_group
|
12
|
+
add_user_to_group
|
13
|
+
create_users
|
14
|
+
end
|
15
|
+
|
16
|
+
desc "Install VSFTPd configuration file"
|
17
|
+
task :configure do
|
18
|
+
# TODO: Don't use a template for the config, or append it to the existing config.
|
19
|
+
# TODO: Other solution could be to allow setting a local config file which will be uploaded.
|
20
|
+
put render("vsftpd.conf", binding), "vsftpd.conf"
|
21
|
+
sudo "mv vsftpd.conf /etc/vsftpd.conf"
|
22
|
+
restart
|
23
|
+
end
|
24
|
+
|
25
|
+
desc "Add the :vsftpd_user_shell to /etc/shells"
|
26
|
+
task :add_nologin_shell do
|
27
|
+
sudo_add_to_file('/etc/shells',vsftpd_user_shell)
|
28
|
+
end
|
29
|
+
|
30
|
+
desc "Create VSFTPd-only users"
|
31
|
+
task :create_users do
|
32
|
+
vsftpd_users.each do |user_to_create|
|
33
|
+
sudo "useradd --shell #{vsftpd_user_shell} --groups #{vsftpd_group} -m #{user_to_create}"
|
34
|
+
puts "Changing password for #{user_to_create}:"
|
35
|
+
sudo_and_watch_prompt("passwd #{user_to_create}", [/Enter new UNIX password/, /Retype new UNIX password:/, /\[\]\:/, /\[y\/N\]/i])
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
desc "Create VSFTPd group"
|
40
|
+
task :create_group do
|
41
|
+
sudo "groupadd -f #{vsftpd_group}"
|
42
|
+
end
|
43
|
+
|
44
|
+
desc "Adds current user to VSFTPd group"
|
45
|
+
task :add_user_to_group do
|
46
|
+
sudo "usermod -a -G #{vsftpd_group} #{user}"
|
47
|
+
end
|
48
|
+
|
49
|
+
desc "Start the vsftpd server"
|
50
|
+
task :start do
|
51
|
+
sudo "/etc/init.d/vsftpd start"
|
52
|
+
end
|
53
|
+
|
54
|
+
desc "Restart the vsftpd server"
|
55
|
+
task :restart do
|
56
|
+
sudo "/etc/init.d/vsftpd restart"
|
57
|
+
end
|
58
|
+
|
59
|
+
desc "Stop the vsftpd server"
|
60
|
+
task :stop do
|
61
|
+
sudo "/etc/init.d/vsftpd stop"
|
62
|
+
end
|
63
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
unless Capistrano::Configuration.respond_to?(:instance)
|
2
|
+
abort "Requires Capistrano 2"
|
3
|
+
end
|
4
|
+
|
5
|
+
# Dir["#{File.dirname(__FILE__)}/ubuntu-machine/*.rb"].each { |lib|
|
6
|
+
# Capistrano::Configuration.instance.load {load(lib)}
|
7
|
+
# }
|
8
|
+
|
9
|
+
Capistrano::Configuration.instance.load {load("#{File.dirname(__FILE__)}/ubuntu-machine/apache.rb")}
|
10
|
+
Capistrano::Configuration.instance.load {load("#{File.dirname(__FILE__)}/ubuntu-machine/aptitude.rb")}
|
11
|
+
Capistrano::Configuration.instance.load {load("#{File.dirname(__FILE__)}/ubuntu-machine/extras.rb")}
|
12
|
+
Capistrano::Configuration.instance.load {load("#{File.dirname(__FILE__)}/ubuntu-machine/ffmpeg.rb")}
|
13
|
+
Capistrano::Configuration.instance.load {load("#{File.dirname(__FILE__)}/ubuntu-machine/gems.rb")}
|
14
|
+
Capistrano::Configuration.instance.load {load("#{File.dirname(__FILE__)}/ubuntu-machine/git.rb")}
|
15
|
+
Capistrano::Configuration.instance.load {load("#{File.dirname(__FILE__)}/ubuntu-machine/odbc.rb")}
|
16
|
+
Capistrano::Configuration.instance.load {load("#{File.dirname(__FILE__)}/ubuntu-machine/helpers.rb")}
|
17
|
+
Capistrano::Configuration.instance.load {load("#{File.dirname(__FILE__)}/ubuntu-machine/iptables.rb")}
|
18
|
+
Capistrano::Configuration.instance.load {load("#{File.dirname(__FILE__)}/ubuntu-machine/lmsensors.rb")}
|
19
|
+
Capistrano::Configuration.instance.load {load("#{File.dirname(__FILE__)}/ubuntu-machine/machine.rb")}
|
20
|
+
Capistrano::Configuration.instance.load {load("#{File.dirname(__FILE__)}/ubuntu-machine/mysql.rb")}
|
21
|
+
Capistrano::Configuration.instance.load {load("#{File.dirname(__FILE__)}/ubuntu-machine/network.rb")}
|
22
|
+
Capistrano::Configuration.instance.load {load("#{File.dirname(__FILE__)}/ubuntu-machine/ntp.rb")}
|
23
|
+
Capistrano::Configuration.instance.load {load("#{File.dirname(__FILE__)}/ubuntu-machine/php.rb")}
|
24
|
+
Capistrano::Configuration.instance.load {load("#{File.dirname(__FILE__)}/ubuntu-machine/postfix.rb")}
|
25
|
+
Capistrano::Configuration.instance.load {load("#{File.dirname(__FILE__)}/ubuntu-machine/ruby.rb")}
|
26
|
+
Capistrano::Configuration.instance.load {load("#{File.dirname(__FILE__)}/ubuntu-machine/ssh.rb")}
|
27
|
+
Capistrano::Configuration.instance.load {load("#{File.dirname(__FILE__)}/ubuntu-machine/tmpfs.rb")}
|
28
|
+
Capistrano::Configuration.instance.load {load("#{File.dirname(__FILE__)}/ubuntu-machine/utils.rb")}
|
29
|
+
Capistrano::Configuration.instance.load {load("#{File.dirname(__FILE__)}/ubuntu-machine/vsftpd.rb")}
|
30
|
+
Capistrano::Configuration.instance.load {load("#{File.dirname(__FILE__)}/ubuntu-machine/rails3.rb")}
|
metadata
ADDED
@@ -0,0 +1,130 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ubuntu-machine-rachid
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 209
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 5
|
9
|
+
- 3
|
10
|
+
- 2
|
11
|
+
- 23
|
12
|
+
version: 0.5.3.2.23
|
13
|
+
platform: ruby
|
14
|
+
authors:
|
15
|
+
- Thomas Balthazar
|
16
|
+
- Tarik Alkasab
|
17
|
+
- Filip H.F. 'FiXato' Slagter
|
18
|
+
- Wes Oldenbeuving
|
19
|
+
- Rachid Al Maach
|
20
|
+
autorequire:
|
21
|
+
bindir: bin
|
22
|
+
cert_chain: []
|
23
|
+
|
24
|
+
date: 2010-07-27 00:00:00 +02:00
|
25
|
+
default_executable:
|
26
|
+
dependencies:
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: capistrano
|
29
|
+
prerelease: false
|
30
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
31
|
+
none: false
|
32
|
+
requirements:
|
33
|
+
- - ">"
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
hash: 31
|
36
|
+
segments:
|
37
|
+
- 2
|
38
|
+
- 5
|
39
|
+
- 2
|
40
|
+
version: 2.5.2
|
41
|
+
type: :runtime
|
42
|
+
version_requirements: *id001
|
43
|
+
description: Capistrano recipes for setting up and deploying to a Ubuntu Machine
|
44
|
+
email: rachid.al.maach@gmail.com
|
45
|
+
executables: []
|
46
|
+
|
47
|
+
extensions: []
|
48
|
+
|
49
|
+
extra_rdoc_files: []
|
50
|
+
|
51
|
+
files:
|
52
|
+
- README
|
53
|
+
- MIT-LICENSE
|
54
|
+
- lib/capistrano/ext/ubuntu-machine.rb
|
55
|
+
- lib/capistrano/ext/ubuntu-machine/apache.rb
|
56
|
+
- lib/capistrano/ext/ubuntu-machine/aptitude.rb
|
57
|
+
- lib/capistrano/ext/ubuntu-machine/extras.rb
|
58
|
+
- lib/capistrano/ext/ubuntu-machine/ffmpeg.rb
|
59
|
+
- lib/capistrano/ext/ubuntu-machine/gems.rb
|
60
|
+
- lib/capistrano/ext/ubuntu-machine/git.rb
|
61
|
+
- lib/capistrano/ext/ubuntu-machine/helpers.rb
|
62
|
+
- lib/capistrano/ext/ubuntu-machine/iptables.rb
|
63
|
+
- lib/capistrano/ext/ubuntu-machine/lmsensors.rb
|
64
|
+
- lib/capistrano/ext/ubuntu-machine/machine.rb
|
65
|
+
- lib/capistrano/ext/ubuntu-machine/mysql.rb
|
66
|
+
- lib/capistrano/ext/ubuntu-machine/network.rb
|
67
|
+
- lib/capistrano/ext/ubuntu-machine/ntp.rb
|
68
|
+
- lib/capistrano/ext/ubuntu-machine/odbc.rb
|
69
|
+
- lib/capistrano/ext/ubuntu-machine/php.rb
|
70
|
+
- lib/capistrano/ext/ubuntu-machine/postfix.rb
|
71
|
+
- lib/capistrano/ext/ubuntu-machine/ruby.rb
|
72
|
+
- lib/capistrano/ext/ubuntu-machine/ssh.rb
|
73
|
+
- lib/capistrano/ext/ubuntu-machine/tmpfs.rb
|
74
|
+
- lib/capistrano/ext/ubuntu-machine/utils.rb
|
75
|
+
- lib/capistrano/ext/ubuntu-machine/vsftpd.rb
|
76
|
+
- lib/capistrano/ext/ubuntu-machine/rails3.rb
|
77
|
+
- lib/capistrano/ext/ubuntu-machine/templates/apache2.erb
|
78
|
+
- lib/capistrano/ext/ubuntu-machine/templates/deflate.conf.erb
|
79
|
+
- lib/capistrano/ext/ubuntu-machine/templates/freetds.conf.erb
|
80
|
+
- lib/capistrano/ext/ubuntu-machine/templates/iptables.erb
|
81
|
+
- lib/capistrano/ext/ubuntu-machine/templates/my.cnf.erb
|
82
|
+
- lib/capistrano/ext/ubuntu-machine/templates/new_db.erb
|
83
|
+
- lib/capistrano/ext/ubuntu-machine/templates/ntpdate.erb
|
84
|
+
- lib/capistrano/ext/ubuntu-machine/templates/ntp.conf.erb
|
85
|
+
- lib/capistrano/ext/ubuntu-machine/templates/odbc.ini.erb
|
86
|
+
- lib/capistrano/ext/ubuntu-machine/templates/odbcinst.ini.erb
|
87
|
+
- lib/capistrano/ext/ubuntu-machine/templates/passenger.conf.erb
|
88
|
+
- lib/capistrano/ext/ubuntu-machine/templates/passenger.load.erb
|
89
|
+
- lib/capistrano/ext/ubuntu-machine/templates/sshd_config.erb
|
90
|
+
- lib/capistrano/ext/ubuntu-machine/templates/vhost.erb
|
91
|
+
- lib/capistrano/ext/ubuntu-machine/templates/vsftpd.conf.erb
|
92
|
+
- lib/capistrano/ext/ubuntu-machine/templates/xsendfile.load.erb
|
93
|
+
- lib/capistrano/ext/ubuntu-machine/templates/sources.jaunty.erb
|
94
|
+
- lib/capistrano/ext/ubuntu-machine/templates/sources.lucid.erb
|
95
|
+
has_rdoc: true
|
96
|
+
homepage: http://github.com/rachid/ubuntu-machine
|
97
|
+
licenses: []
|
98
|
+
|
99
|
+
post_install_message:
|
100
|
+
rdoc_options: []
|
101
|
+
|
102
|
+
require_paths:
|
103
|
+
- lib
|
104
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
106
|
+
requirements:
|
107
|
+
- - ">="
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
hash: 3
|
110
|
+
segments:
|
111
|
+
- 0
|
112
|
+
version: "0"
|
113
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
114
|
+
none: false
|
115
|
+
requirements:
|
116
|
+
- - ">="
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
hash: 3
|
119
|
+
segments:
|
120
|
+
- 0
|
121
|
+
version: "0"
|
122
|
+
requirements: []
|
123
|
+
|
124
|
+
rubyforge_project:
|
125
|
+
rubygems_version: 1.3.7
|
126
|
+
signing_key:
|
127
|
+
specification_version: 3
|
128
|
+
summary: Capistrano recipes for setting up and deploying to a Ubuntu Machine. Fork of SuitMyMind's ubuntu-machine
|
129
|
+
test_files: []
|
130
|
+
|