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
<?xml version="1.0" encoding="UTF-8"?> | |
<settings | |
xmlns="http://maven.apache.org/SETTINGS/1.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> | |
<localRepository>PATH_TO_YOUR_LOCAL_REPO</localRepository> | |
<servers> | |
<!-- =========================== --> |
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
box = 'codenvy_onprem_beta_preinstalled' | |
url = 'https://install.codenvycorp.com/codenvy_onprem_beta_preinstalled.box' | |
ram = '3072' | |
hostname = 'onprem' | |
domain = 'codenvy.com' | |
cpus = '2' | |
bridge = 'eth0' | |
puts "\033[32mCodenvy is now installed.\033[0m" | |
puts "\033[32mDNS: onprem.codenvy.com\033[0m" |
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
class third_party::zabbix::server_package { | |
# install zabbix server version depends on os version. | |
if $operatingsystemrelease =~ /6./ { | |
$zabbix_server_version = "2.2.4-1.el6" | |
} elsif $operatingsystemrelease =~ /7./ { | |
$zabbix_server_version = "2.2.7-2.el7" | |
} | |
package { "gnutls": | |
ensure => "3.1.18-10.el7_0", |
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
8437 ? Sl 7:45 /home/codenvy/java/jdk1.8.0_45/bin/java -Djava.util.logging.config.file=/home/codenvy/workspace/release-all/platform-api-client-java/core/target/tomcat-ide/conf/logging.properties -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -XX:MaxPermSize=512M -Xms1g -Xmx2g -Djava.net.preferIPv4Stack=true -Dgwt.compiler.localWorkers=2 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.SimpleLog -Xshare:auto -Xms512m -Xmx1024m -XX:MaxPermSize=256m -Djava.security.properties=/home/codenvy/workspace/release-all/platform-api-client-java/core/target/tomcat-ide/conf/codenvy-security.properties -Djava.endorsed.dirs=/home/codenvy/workspace/release-all/platform-api-client-java/core/target/tomcat-ide/endorsed -classpath /home/codenvy/workspace/release-all/platform-api-client-java/core/target/tomcat-ide/conf/:/home/codenvy/workspace/release-all/platform-api-client-java/core/target/tomcat-ide/lib/jul-to-slf4j.jar:/home/codenvy/workspace/release-all/platform-api-client-java/c |
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
# site.pp | |
... | |
class common { | |
$var1 = "blah" | |
$var2 = "piupiu" | |
} | |
node web_server1 { | |
include common |
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
box = 'linux_dev_machine' | |
url = 'https://install.codenvycorp.com/linux_dev_machine.box' | |
ram = '3072' | |
hostname = 'dev' | |
domain = 'box.com' | |
cpus = '2' | |
bridge = 'eth0' | |
Vagrant.configure("2") do |config| | |
config.vm.box = box |
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
FROM ubuntu_jdk8_centos |
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
FROM rakkaus/ubunta_jdk8 |
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
FROM ubuntu | |
RUN sleep 10m | |
CMD ["tailf", "/dev/null"] |
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
FROM ubuntu | |
CMD ["tailf", "/dev/null"] |
OlderNewer