Remove unneeded chown of /var/run/nova

Both upstart and systemd daemons are defined to create their own run
directories, and set the correct owners (see os-svc-daemon), so this
line can be removed. It causes an error for the package install b/c the
directory does not yet exist since the service has not been enabled and
started yet.

Change-Id: I598fe6d6ef55c997dcd5c9acfcc85ddac6826228
This commit is contained in:
James Slagle 2014-02-13 17:56:46 -05:00
parent 2d80411cff
commit a190f0ee9b

View File

@ -3,8 +3,6 @@ set -eux
modprobe nbd || true
chown -R nova:nova /var/run/nova
os-svc-enable -n nova-compute
os-svc-restart -n nova-compute