Centos gives /dev/pts/ptmx the wrong perms

In order to use cinder, we need to be able to use
/dev/pts/ptmx.  Centos sets this to 000 when on Fedora
it's 666.

Closes-bug: #1564477
Change-Id: I76dc5adc64d2da0d27204ea31175244bc1b94428
(cherry picked from commit d2710b871b)
This commit is contained in:
Ryan Hallisey 2016-03-21 23:39:37 +00:00
parent 68d6b53295
commit 2d14bf76ca
1 changed files with 3 additions and 0 deletions

View File

@ -48,6 +48,9 @@ fi
/sbin/setenforce 0
/sbin/modprobe ebtables
# CentOS sets ptmx to 000. Withoutit being 666, we can't use Cinder volumes
chmod 666 /dev/pts/ptmx
# We need hostname -f to return in a centos container for the puppet hook
HOSTNAME=$(hostname)
echo "127.0.0.1 $HOSTNAME.localdomain $HOSTNAME" >> /etc/hosts