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
adaamM:usermanage adaam$ cat Vagrantfile | |
# -*- 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.require_version '>= 1.5.0' | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| |
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
ubuntu@ip-172-31-7-87:~/chef-repo/d2b2_website$ kitchen converge | |
-----> Starting Kitchen (v1.7.3) | |
-----> Converging <default-centos-7>... | |
$$$$$$ Running legacy converge for 'Docker' Driver | |
Preparing files for transfer | |
Preparing dna.json | |
Resolving cookbook dependencies with Berkshelf 4.3.2... | |
>>>>>> ------Exception------- | |
>>>>>> Class: Kitchen::ActionFailed | |
>>>>>> Message: Failed to complete #converge action: ["\xE2" on US-ASCII] |
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 | |
# (Information) | |
# - PROVISIONING PROFILE PATH: | |
# FOR EXAMPLE /Users/YOURNAME/Library/MobileDevice/Provisioning Profiles/PROVISIONINGPROFILE.mobileprovision | |
ProvProfile="YOUR_DOWNLOAD_PATH_OF_ANY.mobileprovision" | |
# - YOUR DISTROBUTION CERT NAME HERE FROM KEYCHAIN | |
SigningCertName="SET_YOUR_CERT_NAME" |
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"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>application-identifier</key> | |
<string>SET_YOUR_APPLE_ID</string> | |
<key>get-task-allow</key> | |
<true/> | |
<key>keychain-access-groups</key> | |
<array> |
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 | |
. config.sh | |
# variables | |
SourceFile="" | |
DestFile="" | |
Version="1.1.0" | |
IsAppStore=0 | |
function Print_Usage() |
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
#include<iostream> | |
using namespace std; | |
class a { | |
public: | |
int getb(void){ return b;}; | |
private: | |
static const int b = 10; | |
}; | |
int main(void){ | |
a *p=new a(); |
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 python | |
# Script to seprate host data send to cacti | |
# adaam 2014.07.15 | |
import urllib2 | |
import simplejson | |
import getopt | |
import os, sys, datetime, re |
NewerOlder