Skip to content

Commit

Permalink
removed necessity of user input on apc install
Browse files Browse the repository at this point in the history
  • Loading branch information
pfalls1 committed Apr 2, 2013
1 parent be843a9 commit 2edb1b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def __install_server_software(self):
self.__run_command("./configure --with-pdo-mysql --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data", cwd="php-5.4.13")
self.__run_command("make", cwd="php-5.4.13")
self.__run_command("sudo make install", cwd="php-5.4.13")
self.__run_command("sudo pecl install apc-beta", cwd="php-5.4.13")
self.__run_command("printf \"\\n\" | sudo pecl install apc-beta", cwd="php-5.4.13")
self.__run_command("sudo cp ../config/php.ini /usr/local/lib/php.ini")
self.__run_command("sudo cp ../config/php-fpm.conf /usr/local/lib/php-fpm.conf")
self.__run_command("rm php-5.4.13.tar.gz")
Expand Down

0 comments on commit 2edb1b0

Please sign in to comment.