-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #88 from cybozu-go/doc
Add documents and changelog
- Loading branch information
Showing
5 changed files
with
151 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
This project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## [Unreleased] | ||
|
||
### Added | ||
- Add integration tests using [placemat][] VMs. | ||
|
||
## [0.14] - 2018-07-18 | ||
|
||
### Changed | ||
- Fix but in image deletion (#86). | ||
|
||
[placemat]: https://github.com/cybozu-go/placemat | ||
[Unreleased]: https://github.com/cybozu-go/sabakan/compare/v0.14...HEAD | ||
[0.14]: https://github.com/cybozu-go/sabakan/compare/v0.13...v0.14 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[Unit] | ||
Description=sabakan | ||
Wants=network-online.target | ||
After=network-online.target | ||
|
||
[Service] | ||
Type=simple | ||
Restart=on-failure | ||
# RestartForceExitStatus=SIGPIPE is critically important for Go programs w/ | ||
# journald logging. See https://github.com/cybozu-go/cmd/issues/13 | ||
RestartForceExitStatus=SIGPIPE | ||
ExecStart=/usr/local/sbin/sabakan -config-file /usr/local/etc/sabakan.yml | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters