diff options
author | Sergei Golubchik <serg@mariadb.org> | 2017-02-23 10:37:02 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2017-02-27 12:35:10 +0100 |
commit | 0a480f03c64c7f8ffaef40b49a62d194d4aa6a04 (patch) | |
tree | 120c8c8bf7d17ce2246a09f204bdad237ac3fb33 /support-files/rpm | |
parent | 2c354e7468395f87a68833e4c048fdfa2be344d1 (diff) | |
download | mariadb-git-0a480f03c64c7f8ffaef40b49a62d194d4aa6a04.tar.gz |
delete the installation warning for CentOS4/RHEL4
it went out of support five years ago
Diffstat (limited to 'support-files/rpm')
-rw-r--r-- | support-files/rpm/server-postin.sh | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/support-files/rpm/server-postin.sh b/support-files/rpm/server-postin.sh index 2275d4acc7b..139d9e3f700 100644 --- a/support-files/rpm/server-postin.sh +++ b/support-files/rpm/server-postin.sh @@ -55,32 +55,6 @@ fi SETARGETDIR=/etc/selinux/targeted/src/policy SEDOMPROG=$SETARGETDIR/domains/program SECONPROG=$SETARGETDIR/file_contexts/program -if [ -f /etc/redhat-release ] ; then - if grep '\(Red Hat Enterprise Linux ..\|CentOS\) release 4' \ - /etc/redhat-release >/dev/null 2>&1; then - echo - echo - echo 'Notes regarding SELinux on this platform:' - echo '=========================================' - echo - echo 'The default policy might cause server startup to fail because it is ' - echo 'not allowed to access critical files. In this case, please update ' - echo 'your installation. ' - echo - echo 'The default policy might also cause inavailability of SSL related ' - echo 'features because the server is not allowed to access /dev/random ' - echo 'and /dev/urandom. If this is a problem, please do the following: ' - echo - echo ' 1) install selinux-policy-targeted-sources from your OS vendor' - echo ' 2) add the following two lines to '$SEDOMPROG/mysqld.te':' - echo ' allow mysqld_t random_device_t:chr_file read;' - echo ' allow mysqld_t urandom_device_t:chr_file read;' - echo ' 3) cd to '$SETARGETDIR' and issue the following command:' - echo ' make load' - echo - echo - fi -fi if [ -x /usr/sbin/semodule ] ; then /usr/sbin/semodule -i /usr/share/mysql/SELinux/mariadb.pp |