Comment 1 for bug 1238915

Revision history for this message
Adam Gandelman (gandelman-a) wrote : Re: [Bug 1238915] [NEW] Keystone fails to start after installation: invoke-rc.d: policy-rc.d denied execution of start.

/usr/sbin/policy-rc.d contains the following:

#!/bin/sh
# see invoke-rc.d for exit codes. 101 is "do not run"
while true; do
   case "$1" in
      -*) shift;;
      makedev|x11-common) exit 0;;
      *) exit 101;;
   esac
done