Browse Source

fix systemd "Trailing garbage, ignoring." warning.

Environment should be a space-separated list instead of comma-separated.
No need for double quoting when the values don't contain spaces.
pull/1262/head
Martin van Beurden 10 years ago
parent
commit
66d7adc3a8
  1. 2
      scripts/systemd/gogs.service

2
scripts/systemd/gogs.service

@ -14,7 +14,7 @@ Group=git
WorkingDirectory=/home/git/gogs WorkingDirectory=/home/git/gogs
ExecStart=/home/git/gogs/gogs web ExecStart=/home/git/gogs/gogs web
Restart=always Restart=always
Environment="USER=git","HOME=/home/git" Environment=USER=git HOME=/home/git
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target

Loading…
Cancel
Save