-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'fork/master'
- Loading branch information
Showing
7 changed files
with
29 additions
and
10 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,5 @@ | ||
## 1.0.3 (August 14, 2019) | ||
|
||
BUG FIXES: | ||
- NVME volumes now mount correctly | ||
- Previously attached volumes are no longer skipped |
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
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,2 @@ | ||
TAG_PREFIX=GOAT-IN | ||
LOG_LEVEL=info |
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 |
---|---|---|
@@ -1,16 +1,19 @@ | ||
[Unit] | ||
Description=GOAT: EC2-%i attach utility | ||
Documentation=https://github.com/sevagh/goat | ||
Requires=network.target remote-fs.target | ||
After=network.target remote-fs.target | ||
Requires=network.target | ||
After=network.target | ||
After=NetworkManager-wait-online.service | ||
Before=cloud-init.service | ||
ConditionPathExists=/usr/sbin/goat | ||
|
||
[Service] | ||
EnvironmentFile=/etc/sysconfig/goat | ||
Type=oneshot | ||
User=root | ||
Group=root | ||
ExecStart=/usr/sbin/goat "%i" | ||
ExecStart=/usr/sbin/goat -tagPrefix ${TAG_PREFIX} -logLevel ${LOG_LEVEL} "%i" | ||
SyslogIdentifier=goat | ||
|
||
[Install] | ||
WantedBy=multi-user.target | ||
WantedBy=cloud-init.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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ License: BSD 3-clause | |
URL: https://github.com/sevagh/goat | ||
Source0: %{pkgname} | ||
Source1: %{pkgname}@.service | ||
Source2: %{pkgname}.cfg | ||
|
||
Requires: systemd mdadm | ||
|
||
|
@@ -25,11 +26,14 @@ Automatically attach AWS resources to a running EC2 instance. | |
%install | ||
%{__mkdir} -p %{buildroot}/%{_sbindir} | ||
%{__mkdir} -p %{buildroot}/%{_unitdir} | ||
%{__mkdir} -p %{buildroot}/%{_sysconfdir}/sysconfig | ||
%{__install} -m0775 %{SOURCE0} %{buildroot}/%{_sbindir}/%{pkgname} | ||
%{__install} -m0777 %{SOURCE1} %{buildroot}/%{_unitdir}/%{pkgname}@.service | ||
%{__install} -m0644 %{SOURCE1} %{buildroot}/%{_unitdir}/%{pkgname}@.service | ||
%{__install} -m0644 %{SOURCE2} %{buildroot}/%{_sysconfdir}/sysconfig/%{pkgname} | ||
|
||
|
||
%files | ||
%config(noreplace) /etc/sysconfig/goat | ||
%{_sbindir}/%{pkgname} | ||
%{_unitdir}/%{pkgname}@.service | ||
|
||
|
@@ -53,11 +57,13 @@ fi | |
|
||
|
||
%changelog | ||
* Wed Sep 25 2019 Andrew Cutler <[email protected]> | ||
- Add configuration file | ||
* Tue Apr 17 2018 Sevag Hanssian <[email protected]> | ||
- Recombine commands | ||
* Tue Mar 06 2018 Sevag Hanssian <[email protected]> | ||
- Split subcommands into two binaries | ||
* Thu Aug 10 2017 Sevag Hanssian <[email protected]> | ||
- Goat subcommands | ||
* Tue Jul 11 2017 Sevag Hanssian <[email protected]> | ||
- First RPM package for goat | ||
- First RPM package for goat |