Hi Jimmy, By default No. It is simple to build with vmware plugin
1. install dependencies locally (the .m2 directory is mounted to the docker container). git clone https://github.com/shapeblue/cloudstack-nonoss.git nonoss cd nonoss && bash -x install-non-oss.sh && cd .. 2. add the following before build-deb.sh export ACS_BUILD_OPTS='-Dnoredist -Dsystemvm-kvm -Dsystemvm-xen -Dsystemvm-vmware' it should work -Wei On Thu, Mar 28, 2024 at 4:19 PM Jimmy Huybrechts <[email protected]> wrote: > > Hi Wei, > > Would that be including the vmware plugins etc? > > -- > Jimmy > > Van: Wei ZHOU <[email protected]> > Datum: donderdag, 28 maart 2024 om 14:18 > Aan: [email protected] <[email protected]> > Onderwerp: Re: Build own debs > You can build packages in a docker image, for example for 4.18.1.0 > > cd /tmp > git clone -b 4.18.1.0 https://github.com/apache/cloudstack.git cloudstack > docker run -ti \ > -v /tmp:/src \ > -v ~/.m2:/.m2/ \ > ubuntu:22.04 \ > /bin/bash -c "export DEBIAN_FRONTEND=noninteractive && apt-get update \ > && apt-get install -y dpkg-dev python2 python3 debhelper > openjdk-11-jdk genisoimage python3-mysql.connector maven lsb-release > devscripts python-setuptools python3-setuptools \ > && curl -sL https://deb.nodesource.com/setup_14.x | bash - \ > && apt-get install -y nodejs \ > && /src/cloudstack/packaging/build-deb.sh" > > > -Wei > > On Thu, Mar 28, 2024 at 11:25 AM Jimmy Huybrechts <[email protected]> > wrote: > > > > Hi, > > > > Is there maybe a more up to date version of the build your own debs? I see > > the one in the docs goes up to ubuntu 18 and java 8, while we are now at > > java 11. So I don’t know if the dependencies have changed and all. > > > > -- > > Jimmy
