>>>>> "FS" == Fabian Santiago <fsanti...@garbage-juice.com> writes:

FS> the entire execstart command line portion is wrapped in qoutes:
FS> ExecStart=/bin/bash -c "cd /srv/sks; /usr/bin/sks db -disable_mailsync
FS> -hkp_address 127.0.0.1 ::1"

Bash does not see the quotes around the argument to -c.

If []s is the issue, try:

 ExecStart=/bin/bash -c "cd /srv/sks; /usr/bin/sks db -disable_mailsync 
-hkp_address 127.0.0.1 -hkp_address '[::1]'"

But the earlier recomendation was two -hkp_address options, not one with
two addresses, so you also should try:

 ExecStart=/bin/bash -c "cd /srv/sks; /usr/bin/sks db -disable_mailsync 
-hkp_address 127.0.0.1 -hkp_address ::1"

-JimC
-- 
James Cloos <cl...@jhcloos.com>         OpenPGP: 0x997A9F17ED7DAEA6

_______________________________________________
Sks-devel mailing list
Sks-devel@nongnu.org
https://lists.nongnu.org/mailman/listinfo/sks-devel

Reply via email to