nfs share with puppet

================================================= [root@server ~]# puppet module search nfs Notice: Searching https://forgeapi.puppetlabs.com ... NAME DESCRIPTION AUTHOR KEYWORDS derdanne-nfs Installs and configures NFS server and clients @derdanne nfs nfs4 exports mount mfc ================================================= [root@server ~]# puppet module install derdanne-nfs Notice: Preparing to install into /etc/puppet/modules ... Notice: Downloading from https://forgeapi.puppetlabs.com ... Notice: Installing -- do not interrupt ... … Continue reading nfs share with puppet

ftp-server with puppet

=========================================================== [root@server ~]# puppet module search ftp Notice: Searching https://forgeapi.puppetlabs.com ... NAME DESCRIPTION AUTHOR KEYWORDS thias-vsftpd vsftpd FTP server @thias rhel ftp debian ubuntu centos [root@server ~]# puppet module install thias-vsftpd Notice: Preparing to install into /etc/puppet/modules ... Notice: Downloading from https://forgeapi.puppetlabs.com ... Notice: Installing -- do not interrupt ... /etc/puppet/modules └── thias-vsftpd (v0.2.1) ============================================================= … Continue reading ftp-server with puppet

Ruby Basics

                                               puts [root@ruby ~]# irb irb(main):001:0> 1+5 => 6 irb(main):002:0> puts "hello world" hello world => nil irb(main):003:0> quit ======================================== [root@ruby ~]# cat >hello.rb print(10+5) print("\n") puts "Hai how are you" [root@ruby ~]# … Continue reading Ruby Basics