mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
* Install the CA generation script.
svn path=/nixpkgs/trunk/; revision=26734
This commit is contained in:
parent
376d66178a
commit
5bd074a115
1 changed files with 7 additions and 0 deletions
|
@ -40,6 +40,9 @@ stdenv.mkDerivation rec {
|
|||
-e "/DEFINE.*'state_path'/ s|../|/var/lib/nova|"
|
||||
|
||||
substituteInPlace nova/virt/images.py --replace /usr/bin/curl ${curl}/bin/curl
|
||||
|
||||
substituteInPlace nova/api/ec2/cloud.py \
|
||||
--replace 'sh genrootca.sh' $out/libexec/nova/genrootca.sh
|
||||
'';
|
||||
|
||||
buildPhase = "python setup.py build";
|
||||
|
@ -71,6 +74,10 @@ stdenv.mkDerivation rec {
|
|||
# Nova makes some weird assumptions about where to find its own
|
||||
# programs relative to the Python directory.
|
||||
ln -sfn $out/bin $out/lib/${pythonPackages.python.libPrefix}/site-packages/bin
|
||||
|
||||
# Install the certificate generation script.
|
||||
cp CA/genrootca.sh $out/libexec/nova/
|
||||
cp CA/openssl.cnf.tmpl $out/libexec/nova/
|
||||
'';
|
||||
|
||||
doCheck = false; # !!! fix
|
||||
|
|
Loading…
Reference in a new issue