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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
| VAGRANTFILE_API_VERSION = "2" | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
| config.ssh.forward_agent = true |
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 | |
| # | |
| # Mysql Proxy | |
| # Author : @kotashiratsuka | |
| # App Version : 5.6 | |
| # chkconfig: 2345 82 55 | |
| # processname: mysql-proxy | |
| # description: Runs mysql-proxy |
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: gitlab-ci-runner | |
| # Required-Start: $local_fs $remote_fs $network $syslog | |
| # Required-Stop: $local_fs $remote_fs $network $syslog | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: GitLab CI Runner init.d script | |
| # Description: Enables automatic start of runners at boot time in the background. |
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 | |
| # GITLAB CI | |
| # Author: @kotashiratsuka | |
| # App Version: 4.1.0 | |
| ### BEGIN INIT INFO | |
| # Provides: gitlab-ci | |
| # Required-Start: $local_fs $remote_fs $network $syslog redis-server | |
| # Required-Stop: $local_fs $remote_fs $network $syslog |
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 | |
| # | |
| # GitLab | |
| # Author : @kotashiratsuka | |
| # App Version : 6.x | |
| # chkconfig: 2345 82 55 | |
| # processname: sidekiq | |
| # description: Runs sidekiq Apache + Passenger integration. |
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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
| VAGRANTFILE_API_VERSION = "2" | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
| vms = [ | |
| { :name => "master", :ip => "10.10.10.10", :master => true, :readonly => false }, |
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
| #!/usr/bin/env php | |
| <?php | |
| /** | |
| * CSSTidy - Command Line Interface (CLI) | |
| * | |
| * Command Line Interface that try to mimic as much as possible the C++ CLI | |
| * version of csstidy. It should be a drop in replacment for the C++ CLI that is | |
| * no longuer maintain. New settings like css_level are added. | |
| * | |
| * Copyright 2005, 2006, 2007 Florian Schmitz |
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 | |
| mode=${1-none} | |
| HOURLYBACKUP_TAG="hourlybackup" | |
| DAYLYBACKUP_TAG="dailybackup" | |
| WEEKLYBACKUP_TAG="weeklybackup" | |
| HOURLYBACKUP_LIFETIME="24" | |
| DAYLYBACKUP_LIFETIME="30" |
NewerOlder