...
The APT key works for both distributions. You can import it by running following command:
Code Block |
---|
$ wget -qO- http://packages.wocommunity.org/ubuntu/signature.gpg | sudo apt-key add -
|
...
Set DIST and SUITE according to your system:
Code Block |
---|
$ DIST=ubuntu $ SUITE=precisetrusty $ echo "deb [allow-insecure=yes] http://packages.wocommunity.org/$DIST $SUITE main" | sudo tee /etc/apt/sources.list.d/wocommunity.list $ sudo apt-get update $ sudo apt-get install libapache2-mod-wo projectwonder-javamonitor projectwonder-wotaskd |
...
The webobjects package default is to fetch the WebObjects543.dmg from the Apple servers and then to install the System frameworks to /usr/share/webobjects. If you have a local or closer mirror of that image, you can change this default value in the debconf database by importing webobjects-local-dmg.debconf before the installation:
Code Block |
---|
$ cat webobjects-local-dmg.debconf | sudo debconf-set-selections
|
...