diff options
author | Thomas Wiest <twiest@redhat.com> | 2014-10-22 11:12:46 -0400 |
---|---|---|
committer | Thomas Wiest <twiest@redhat.com> | 2014-10-23 12:51:52 -0400 |
commit | 5f9c7eb2d2ad44776d33197857dcd0afe693b5f5 (patch) | |
tree | 22a39c5589aa3f6a2a01f185041258e4fd69dea6 /roles/atomic_base/files | |
parent | 1057c69acdaf47e2bcd4b395069e3bc1bd9eec88 (diff) | |
download | openshift-5f9c7eb2d2ad44776d33197857dcd0afe693b5f5.tar.gz openshift-5f9c7eb2d2ad44776d33197857dcd0afe693b5f5.tar.bz2 openshift-5f9c7eb2d2ad44776d33197857dcd0afe693b5f5.tar.xz openshift-5f9c7eb2d2ad44776d33197857dcd0afe693b5f5.zip |
Added atomic aws host to cloud.rb
Diffstat (limited to 'roles/atomic_base/files')
-rw-r--r-- | roles/atomic_base/files/bash/bashrc | 12 | ||||
-rw-r--r-- | roles/atomic_base/files/ostree/repo_config | 10 | ||||
-rw-r--r-- | roles/atomic_base/files/system/90-nofile.conf | 7 |
3 files changed, 29 insertions, 0 deletions
diff --git a/roles/atomic_base/files/bash/bashrc b/roles/atomic_base/files/bash/bashrc new file mode 100644 index 000000000..446f18f22 --- /dev/null +++ b/roles/atomic_base/files/bash/bashrc @@ -0,0 +1,12 @@ +# .bashrc + +# User specific aliases and functions + +alias rm='rm -i' +alias cp='cp -i' +alias mv='mv -i' + +# Source global definitions +if [ -f /etc/bashrc ]; then + . /etc/bashrc +fi diff --git a/roles/atomic_base/files/ostree/repo_config b/roles/atomic_base/files/ostree/repo_config new file mode 100644 index 000000000..7038158f9 --- /dev/null +++ b/roles/atomic_base/files/ostree/repo_config @@ -0,0 +1,10 @@ +[core] +repo_version=1 +mode=bare + +[remote "rh-atomic-controller"] +url=https://mirror.openshift.com/libra/ostree/rhel-7-atomic-host +branches=rh-atomic-controller/el7/x86_64/buildmaster/controller/docker; +tls-client-cert-path=/var/lib/yum/client-cert.pem +tls-client-key-path=/var/lib/yum/client-key.pem +gpg-verify=false diff --git a/roles/atomic_base/files/system/90-nofile.conf b/roles/atomic_base/files/system/90-nofile.conf new file mode 100644 index 000000000..8537a4c5f --- /dev/null +++ b/roles/atomic_base/files/system/90-nofile.conf @@ -0,0 +1,7 @@ +# PAM process file descriptor limits +# see limits.conf(5) for details. +#Each line describes a limit for a user in the form: +# +#<domain> <type> <item> <value> +* hard nofile 16384 +root soft nofile 16384 |