Updated Branches: refs/heads/master 0b7f2eb17 -> 8ba91fcd7
Summary: Fix RPM installation error for cloudstack-awsapi Detail: getting "hard link not allowed for directory" due to line 321 in cloud.spec. Changing to symlink. Signed-off-by: Marcus Sorensen <[email protected]> 1361982798 -0700 Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/8ba91fcd Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/8ba91fcd Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/8ba91fcd Branch: refs/heads/master Commit: 8ba91fcd72dc8e6f79113057676682c97d22831c Parents: 0b7f2eb Author: Marcus Sorensen <[email protected]> Authored: Wed Feb 27 09:33:18 2013 -0700 Committer: Marcus Sorensen <[email protected]> Committed: Wed Feb 27 09:35:56 2013 -0700 ---------------------------------------------------------------------- packaging/centos63/cloud.spec | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/8ba91fcd/packaging/centos63/cloud.spec ---------------------------------------------------------------------- diff --git a/packaging/centos63/cloud.spec b/packaging/centos63/cloud.spec index 0c5e615..e345679 100644 --- a/packaging/centos63/cloud.spec +++ b/packaging/centos63/cloud.spec @@ -317,7 +317,7 @@ fi %post awsapi if [ -d "%{_datadir}/%{name}-management" ] ; then - ln %{_datadir}/%{name}-bridge/webapps %{_datadir}/%{name}-management/webapps7080 + ln -s %{_datadir}/%{name}-bridge/webapps %{_datadir}/%{name}-management/webapps7080 fi #No default permission as the permission setup is complex
