Skip to content

Instantly share code, notes, and snippets.

@hernad
Last active January 1, 2016 12:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hernad/8147596 to your computer and use it in GitHub Desktop.
Save hernad/8147596 to your computer and use it in GitHub Desktop.

ssh

yum -y install openssh-server openssh-clients
chkconfig sshd on
service sshd start

puppet 3.4.1

rpm -ivh http://yum.puppetlabs.com/el/6/products/x86_64/puppetlabs-release-6-7.noarch.rpm
yum install puppet

epel

rpm -Uvh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm

ansible 1.4.1

yum -y install ansible

libvirtd

yum install -y @virtualization
yum install -y libvirt virt-manager virt-viewer
service libvirt on
chkconfig libvirtd on
#[root@localhost ~]# virsh net-define /usr/share/libvirt/networks/default.xml 
#pogreška: Failed to define network from /usr/share/libvirt/networks/default.xml
#pogreška: operacija nije uspjela: network 'default' already exists with uuid bfe06a24-ae3a-4224-a2cd-b4d884605d73

#[root@localhost ~]# virsh net-start default
#pogreška: Failed to start network default
#pogreška: Requested operation is not valid: network is already active

software collections

yum install centos-release-SCL
yum update
yum install python27-python
scl enable python27 bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment