Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hey Josh - turned out my previous commit didn't increase the cache limit enough for some systems #13

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions fab/initialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ def _initialize_package_manager(server):

local('cp apt.openssh.pin /etc/apt/preferences.d/openssh')
local('apt-key add apt.ppakeys.txt')
local('echo \'APT::Install-Recommends "0";\' >> /etc/apt/apt.conf')
local('echo \'APT::Cache-Limit "20000000";\' >> /etc/apt/apt.conf')
local('echo \'APT::Install-Recommends "0";\' >> /etc/apt/apt.conf')
local('echo \'APT::Cache-Limit "200000000";\' >> /etc/apt/apt.conf')

elif server.distro == 'centos':
local('rpm -Uvh http://dl.iuscommunity.org/pub/ius/stable/Redhat/' + \
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ def deploy():
'python-pip',
'python-crypto',
'python-setuptools',
'python-lxml']
'python-lxml',
'curl']

os.system('apt-get install -y %s' % ' '.join(packages))
os.system('pip install fabric==0.9.3')
Expand Down