This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| read -p "do you want to install release or development version of phalcon? [default=release] " typeq | |
| if [ "$typeq" == "" ]; then | |
| TYPE="release" | |
| else | |
| TYPE=$typeq | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: spawn-fcgi | |
| # Required-Start: $remote_fs $syslog | |
| # Required-Stop: $remote_fs $syslog | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Start daemon at boot time | |
| # Description: Enable service provided by daemon. | |
| ### END INIT INFO |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # These lines installing the complete software for a nginx - php5-fpm - mysql machine | |
| # This script runs on: | |
| # - Hetzner Root EX4 (Debian6 minimal installation) | |
| # - Strato Root Server Linux Level 3 (v1209.1.42) Debian 6.0 64bit | |
| # Installation: | |
| # copy this lines to /root/install.sh | |
| # if vim is not already installed |
NewerOlder