Edison Su
6a71110c75
add unit test
2012-10-19 17:31:28 -07:00
Kelven Yang
8e59b3acfb
Architecture refactoring - Stateless management server - Spring Framework initiatives, add missing files
2012-10-19 15:32:24 -07:00
Edison Su
b104d22b77
if db.properties.override missing, shouldn't panic
2012-10-19 15:27:44 -07:00
Edison Su
f6ac4dbe5d
fix some pom xml files indentation, add db.root.passowrd, add utils/conf/db.properties.override, add to create user cloud, add devcloud pom file
...
Conflicts:
pom.xml
2012-10-19 15:27:19 -07:00
Kelven Yang
8ef9e32cfd
Architecture refactoring - Stateless management server - Spring Framework initiatives
2012-10-19 15:24:15 -07:00
Edison Su
a75916d45f
add license header
2012-10-16 10:26:01 -07:00
Kelven Yang
24530a274e
Architecture refactoring - Stateless management server - EventBus
2012-10-15 18:10:38 -07:00
Edison Su
0a7d03c90b
javelin is revived
2012-10-15 15:42:59 -07:00
Edison Su
112143def6
add templateprofile
2012-10-15 14:10:49 -07:00
Kelven Yang
5d7509e964
Merge DB query builders from master
2012-10-11 18:24:33 -07:00
Kelven Yang
5fee891162
merge from master
2012-10-11 17:42:25 -07:00
Sebastien Goasguen
5a0f600924
New devcloud.cfg to be used with marvin deployDataCenter.py to configure devcloud infra
...
Signed-off-by: Chip Childers <chip.childers@gmail.com>
2012-10-08 10:14:42 -04:00
Alex Huang
13d771e57e
it's 1.9.0 not 1.9....duh
2012-10-08 01:52:02 -07:00
Alex Huang
135f5dcfe9
Fixed more problems with aws
...
Conflicts:
setup/bindir/cloud-setup-encryption.in
2012-10-08 00:59:47 -07:00
Alex Huang
0ec3422122
Changed the jar file to 1.9
2012-10-08 00:07:19 -07:00
Alex Huang
0827fb7029
Checked in the license
2012-10-08 00:07:10 -07:00
frank
a6dcd7af49
CloudStack CLOUDSTACK-257
...
AWS Api is not correctly deployed
fix cloud-setup-databases for awsapi
2012-10-08 00:06:04 -07:00
root
ab26fe7d1e
fix build
2012-10-08 00:05:47 -07:00
frank
f03a901e46
CloudStack CLOUDSTACK-257
...
AWS Api is not correctly deployed
resolved fixed
2012-10-08 00:05:11 -07:00
Mice Xia
a5bca0999a
CLOUDSTACK-118 Status of host resorce stuck in ErrorInMaintenance
2012-10-08 14:05:05 +08:00
John Kinsella
a964d7859e
Ensuring system user has password set.
2012-10-07 12:51:52 -07:00
Wido den Hollander
831ca087f8
debian: Remove symlinking of /usr/lib/cloud/agent -> common
...
This breaks with upgrading and the paths in the code have been fixed to look
for the correct files in the common directory.
No need for these symlinks
2012-10-07 10:18:50 +02:00
Marcus Sorensen
2459a5a7a9
usage: Fix init scripts for RHEL based distros to use --pidfile instead of -p
2012-10-07 10:11:30 +02:00
Wido den Hollander
a97d2d4f38
debian: Fix package version for 4.0
2012-10-07 10:01:04 +02:00
Alex Huang
9d94e6b1d3
Changed the hardcoded vmware path to point to cloud/common
2012-10-06 23:43:44 -07:00
frank
7282f4355a
port fix for CS-16214
2012-10-05 19:41:51 -07:00
Edison Su
62153bba86
CLOUDSTACK-273: backport fixes from 3.0.x branch: 70d41f103b9c59b502a4f0cdd7a92533905fa365
2012-10-05 19:21:38 -07:00
Marcus Sorensen
653889dc4d
KVM: removes check for 'snapshot' text in qemu-img --help output
...
Signed-off-by: Edison Su <sudison@gmail.com>
2012-10-05 17:58:12 -07:00
Alena Prokharchyk
436960d2aa
Fixed unittest
2012-10-05 15:38:20 -07:00
Jessica Wang
7af3f6ef94
cloudstack 3.0 UI - instance page - listView - not pass details=min to API call since nic and securitygroup info is needed here.
2012-10-05 15:21:47 -07:00
Jessica Tomechak
d3536d4f29
Docs. Fix typo in xref link destination.
2012-10-05 15:15:12 -07:00
Alena Prokharchyk
fa81f27254
CLOUDSTACK-271: when check for vnet conflicts against existing physical networks, skip the networks with null vnet ranges
2012-10-05 15:10:31 -07:00
Alena Prokharchyk
be2017849a
CLOUDSTACK-84: fixed NPE that used to happen on API layer when list resource of the project was called when project was going through removal process.
2012-10-05 15:10:31 -07:00
Hugo Trippaers
f6ab8b4344
[CLOUDSTACK-268] Add quotes to input
2012-10-06 00:00:59 +02:00
David Nalley
f3a9a835d3
Removing symlinks for CloudStack-248 and CloudStack-209
...
The problem that is described in both of those bugs is the deletion of files
installed by cloud-scripts.
What is happening is that instead of fixing the paths to scripts in places
where they are called, we tried to create a symlink in a %post section in
the RPM so that there was a symlink to the new directory for the scripts.
That does work (in new installs) but the problem that arises is that when
RPM is setting up the transation it doesn't know about the symlink (it's
in a %post, the symlinked directory is unowned from RPMs perspective, or
rather it is only owned by the cloud-agent-scripts package, which will
be removed.
So what happens is that cloud-agent-scripts puts things in /foo - we
come along to upgrade to 4.0 and that means we use cloud-scripts -
which puts things in /bar - so we install things into /bar (/foo still
exists at this point) then in a %post (and for the record, RPM doesn't
know what happens in a %pre, %post, %preun, or %postun - they are outside
the transation) we delete /foo and then create a symlink from /foo to /bar.
Then we get to the transaction part where we are ready to remove
cloud-agent-scripts - so it's time to delete /foo - except /foo is now a
symlink to /bar and thus we wipe out the contents of /foo and /bar in one
fell swoop.
To quote Bill Notting from Red Hat who pointed this out:
15:43 < notting> rpm decides what to do with all the files (update, remove,
or write new file) before the transaction. if the directory layout changes
*during* the transaction, weird shit happens.
2012-10-05 16:26:52 -04:00
Chip Childers
ed2f1cf561
Fixed debian/changelog format error
2012-10-05 16:11:01 -04:00
Chip Childers
bdf53b3889
Switching debian/changelog version to 4.0.0
2012-10-05 15:48:54 -04:00
Edison Su
f78d9783f1
CLOUDSTACK-248: install cloud-scripts twice during upgrade
2012-10-05 12:02:10 -07:00
Rohit Yadav
c6d92f7f90
CLOUDSTACK-248: Fix rpm build for cloud-scripts
...
Make rpm correctly handle new installs, upgrades and uninstalls.
Signed-off-by: Rohit Yadav <rohit.yadav@citrix.com>
2012-10-05 12:01:35 -07:00
Rohit Yadav
5cd7fb8408
CLOUDSTACK-121: Fixed "Incorrect username/domainId login causes NullPointerException "
2012-10-05 11:42:04 -07:00
Jessica Wang
e7e486204e
cloudstack UI - dialog widget - introduce new property isDatepicker.
2012-10-05 11:38:47 -07:00
frank
595ab41de6
port to master
...
commit 318d2aedbd0db42d53395a91ca2945db212732d7
Author: frank <frank.zhang@citrix.com>
Date: Thu Jun 28 16:10:20 2012 -0700
CS-15376
Need to change rpm spec to deploy awsapi in its own webapps folder
2012-10-05 10:44:49 -07:00
Wido den Hollander
6a79f2f0c8
debian: Bump the version to 4.0 beta 6
2012-10-05 11:46:01 +02:00
Jessica Tomechak
6840b10247
Docs. Add xrefs to Installation Steps Overview. Minor fixes to headings.
2012-10-04 22:37:31 -07:00
Jessica Tomechak
38dab8d80f
docs: bullet character missing from layout template
2012-10-04 21:43:08 -07:00
David Nalley
14fff1c09d
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/incubator-cloudstack
2012-10-05 00:28:19 -04:00
David Nalley
bae835d6c3
adding an option to the build script to permit setting a pgp key with which to sign
2012-10-05 00:27:58 -04:00
Alex Huang
7a228261c4
vpc documentation
2012-10-04 21:04:58 -07:00
Alex Huang
453acc65fd
Checked in missing license header
2012-10-04 20:39:21 -07:00
David Nalley
03fcc26fc2
fixing README to reflect TOC issues around docname variable
2012-10-04 23:33:23 -04:00