Commit 05812a2d0d77bc74e5f8c53f9d31b5caf09af06b

Authored by Jacob Vosmaer
2 parents f7b30134 9b405d27
Exists in master

Merge branch 'centos7-do' into 'master'

Build / release documentation fixes for Centos 7

See merge request !197
Showing 2 changed files with 15 additions and 4 deletions   Show diff stats
doc/build.md
... ... @@ -17,6 +17,7 @@ sudo ufw enable
17 17  
18 18 # Check for SSH password logins, they should be disabled; The command below should return no results
19 19 grep '^[^#]*PasswordAuthentication' /etc/ssh/sshd_config
  20 +sudo service ssh reload
20 21  
21 22 # Install dependencies
22 23 sudo apt-get install ruby1.9.1 ruby1.9.1-dev git build-essential cmake
... ... @@ -61,6 +62,7 @@ sudo lokkit -s ssh
61 62  
62 63 # Check for SSH password logins; they should be disabled
63 64 grep '^[^#]*PasswordAuthentication' /etc/ssh/sshd_config
  65 +sudo service sshd reload
64 66  
65 67 sudo yum groupinstall 'Development Tools'
66 68 # Install RedHat Software Collections to get Ruby 1.9.3
... ... @@ -101,10 +103,13 @@ As an administrator (or root):
101 103 ```
102 104 yum update
103 105  
104   -# Firewall is OK by default??
  106 +sudo systemctl enable firewalld
  107 +sudo systemctl start firewalld
  108 +sudo firewall-cmd --list-all
105 109  
106 110 # Check for SSH password logins; they should be disabled
107 111 grep '^[^#]*PasswordAuthentication' /etc/ssh/sshd_config
  112 +sudo systemctl reload sshd
108 113  
109 114 sudo yum groupinstall 'Development Tools'
110 115 sudo yum install ruby ruby-devel cmake
... ...
doc/release.md
... ... @@ -47,10 +47,13 @@ git push origin 6-6-stable 6.6.0.omnibus
47 47 # Ubuntu
48 48 sudo apt-get install python-pip
49 49  
50   -# CentOS
  50 +# CentOS 6
51 51 sudo yum install python-pip
52 52  
53   -# Both
  53 +# Centos 7
  54 +sudo easy_install pip
  55 +
  56 +# All
54 57 sudo pip install awscli
55 58 ```
56 59  
... ... @@ -59,8 +62,11 @@ sudo pip install awscli
59 62 # Ubuntu / Debian
60 63 sudo apt-get install mailutils
61 64  
62   -# Centos
  65 +# Centos 6
63 66 sudo yum install mail
  67 +
  68 +# Centos 7
  69 +sudo yum install mailx
64 70 ```
65 71  
66 72 As omnibus-build user:
... ...