This file contains 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
# -*- coding: utf-8 -*- | |
require 'aws-sdk' | |
module Serverspec | |
module Type | |
class RdsParameters < Base | |
# AWS API Response Max Records Setting | |
MAX_RECORDS = 100 |
This file contains 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 | |
# chkconfig: 2345 99 01 | |
# description: SoftEther VPN Client | |
DAEMON=/usr/local/vpnclient/vpnclient | |
CMDPATH=/usr/local/vpnclient/vpncmd | |
CMDHOST=localhost | |
CMDCONN=local | |
IP4ADDRESS=192.168.100.1 | |
VIRTUALIF=vpn_adapter01 | |
LOCK=/var/lock/subsys/vpnclient |
This file contains 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
USER_NAME=marcy | |
sed -i "s/.*RSAAuthentication.*/RSAAuthentication yes/g" /etc/ssh/sshd_config | |
sed -i "s/.*PubkeyAuthentication.*/PubkeyAuthentication yes/g" /etc/ssh/sshd_config | |
sed -i "s/.*PasswordAuthentication.*/PasswordAuthentication no/g" /etc/ssh/sshd_config | |
sed -i "s/.*AuthorizedKeysFile.*/AuthorizedKeysFile\t\.ssh\/authorized_keys/g" /etc/ssh/sshd_config | |
sed -i "s/.*PermitRootLogin.*/PermitRootLogin no/g" /etc/ssh/sshd_config | |
echo "${USER_NAME} ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers | |
service sshd restart |
This file contains 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html> | |
<head> | |
<title>Linux Ondemand Instance List</title> | |
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> | |
<meta http-equiv="Pragma" content="no-cache"> | |
<meta http-equiv="Cache-Control" content="no-cache"> | |
<meta http-equiv="Expires" content="Thu, 01 Dec 1994 16:00:00 GMT"> | |
<script type='text/javascript' src='http://code.jquery.com/jquery-1.11.0.min.js'></script> | |
<script type='text/javascript' src='https://www.google.com/jsapi'></script> |
This file contains 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
source 'https://rubygems.org' | |
gem 'nokogiri', '~>1.5.0' | |
gem 'psych', '2.0.5' | |
gem 'test-kitchen', '~>1.0.0' | |
gem 'berkshelf', '~>2.0' | |
gem 'kitchen-vagrant' | |
gem 'kitchen-docker' | |
gem 'serverspec' | |
gem 'foodcritic' |
This file contains 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
--- | |
driver_plugin: docker | |
driver_config: | |
use_sudo: false | |
platforms: | |
- name: amzn20140301 | |
driver_config: | |
image: marcy/amzn:2014.03.1 |
This file contains 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
読み込んだプラグイン:amazon-id, rhui-lb | |
インストール済みパッケージ | |
ModemManager-glib.x86_64 1.1.0-6.git20130913.el7 | |
@anaconda/7.0 | |
NetworkManager.x86_64 1:0.9.9.1-13.git20140326.4dba720.el7 | |
@anaconda/7.0 | |
NetworkManager-config-server.x86_64 | |
1:0.9.9.1-13.git20140326.4dba720.el7 | |
@anaconda/7.0 | |
NetworkManager-glib.x86_64 1:0.9.9.1-13.git20140326.4dba720.el7 |
This file contains 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
読み込んだプラグイン:amazon-id, rhui-lb | |
インストール済みパッケージ | |
ModemManager-glib.x86_64 1.1.0-6.git20130913.el7 @anaconda/7.0 | |
NetworkManager.x86_64 1:0.9.9.1-13.git20140326.4dba720.el7 | |
@anaconda/7.0 | |
NetworkManager-config-server.x86_64 | |
1:0.9.9.1-13.git20140326.4dba720.el7 | |
@anaconda/7.0 | |
NetworkManager-glib.x86_64 1:0.9.9.1-13.git20140326.4dba720.el7 | |
@anaconda/7.0 |
This file contains 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
$AWSAccessKey = "YOUR_ACCESS_KEY" | |
$AWSSecretKey = "YOUR_SECRET_KEY" | |
$Region = "ap-northeast-1" | |
$ProfileName = "YOUR_PROFILE_NAME" | |
$BucketName = "YOUR_BUCKET_NAME" | |
$BucketKey = "YOUR_OBJECT_KEY" | |
$LocalPath = "C:\\chef\\validation.pem" | |
$ChefServerUrl = "YOUR_SERVER_URL" | |
$Environment = "YOUR_ENVIRONMENT" | |
$SpanMinutes = 5 |
This file contains 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
Copyright (C) 2014 Masashi Terui | |
https://github.com/FumblePerson/ | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software |
OlderNewer