Displaying 4 results from an estimated 4 matches for "greenstone".
2015 Sep 23
2
Help with systemd
On 9/23/2015 2:58 PM, Jonathan Billings wrote:
> 1.) why 'cd /greenstone/gs3 && ant start' when you could just run
> '/greenstone/gs3/ant start'.
thats *not* equivalent, unless ant is in /greenstone/gs3 *and* . is in
the path, and even then, ant looks for build.xml in the current path
when its invoked, so the cd /path/to/build/ is appropriate...
2015 Sep 23
3
Help with systemd
Hi
I am trying to get Greenstone3 http://www.greenstone.org/download to work
with systemd.
So far I have come up with the following which works but feels more like a
hack than a solution.
Does anyone have any suggestions on how to do this better ?
# cat /etc/tmpfiles.d/greenstone3.conf
d /run/greenstone3 0755 gs3 gs3 -
# cat /et...
2015 Sep 23
0
Help with systemd
On Thu, Sep 24, 2015 at 09:36:59AM +1200, Clint Dilks wrote:
> # cat /etc/systemd/system/greenstone3.service
> # Systemd unit file for Greenstone 3
> [Unit]
> Description=Greenstone 3 Server
> After=syslog.target network.target
>
> [Service]
> Type=forking
> PIDFile=/run/greenstone3/greenstone3.pid
> Environment=PATH=/usr/apache-ant-1.9.6/bin:/usr/local/sbin:/usr/local...
2015 Sep 23
0
Help with systemd
On 24.09.2015 00:06, John R Pierce wrote:
> On 9/23/2015 2:58 PM, Jonathan Billings wrote:
>> 1.) why 'cd /greenstone/gs3 && ant start' when you could just run
>> '/greenstone/gs3/ant start'.
>
> thats *not* equivalent, unless ant is in /greenstone/gs3 *and* . is in
> the path, and even then, ant looks for build.xml in the current path
> when its invoked, so the cd /path/to/...