-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support for high priority hosts, shellcheck, consistent syntax, ... (#42
) * shellcheck, consistent shell syntax, adapt paths for Debian Signed-off-by: corbolais <corbolais@gmail.com> * compactify Signed-off-by: corbolais <corbolais@gmail.com> * Debian path Signed-off-by: corbolais <corbolais@gmail.com> * add support for high priority hosts Signed-off-by: corbolais <corbolais@gmail.com> * correct tailing w/s Signed-off-by: corbolais <corbolais@gmail.com> * consistent paths, editor vim, enable and start in one systemctl call Signed-off-by: corbolais <corbolais@gmail.com> * rem unused variable Signed-off-by: corbolais <corbolais@gmail.com> * doc changes Signed-off-by: corbolais <corbolais@gmail.com> * bump version to 1.4.1 Signed-off-by: corbolais <corbolais@gmail.com> * bump version Signed-off-by: corbolais <corbolais@gmail.com> * chg copyright notice Signed-off-by: corbolais <corbolais@gmail.com> * rem useless var definition, use several vars from ENV, add those to config file Signed-off-by: corbolais <corbolais@gmail.com> * rem useless quoting Signed-off-by: corbolais <corbolais@gmail.com> * use vars from ENV, add them to config file, bump version, chmod 755 Signed-off-by: corbolais <corbolais@gmail.com> * add config directive hint Signed-off-by: corbolais <corbolais@gmail.com> Co-authored-by: Jacco <jacco@geul.net>
- Loading branch information
Showing
8 changed files
with
233 additions
and
203 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
File renamed without changes.
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
1.4 | ||
1.4.1 | ||
|
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,12 +1,15 @@ | ||
wondershaper: | ||
exit | ||
exit; | ||
|
||
install: | ||
install -Dm755 wondershaper /usr/bin/wondershaper | ||
install -Dm644 wondershaper.service /usr/lib/systemd/system/wondershaper.service | ||
install -Dm644 wondershaper.conf /etc/conf.d/wondershaper.conf | ||
install -Dm755 wondershaper /usr/sbin/wondershaper; | ||
install -Dm644 wondershaper.service /etc/systemd/system/wondershaper.service; | ||
install -Dm644 wondershaper.conf /etc/systemd/wondershaper.conf; | ||
|
||
uninstall: | ||
rm -f /usr/bin/wondershaper | ||
rm -f /usr/lib/systemd/system/wondershaper.service | ||
rm -f /etc/conf.d/wondershaper.conf | ||
rm -f /usr/sbin/wondershaper; | ||
rm -f /usr/lib/systemd/system/wondershaper.service; | ||
rm -f /etc/conf.d/wondershaper.conf; | ||
|
||
clean: | ||
rm -f wondershaper | ||
rm wondershaper; |
Oops, something went wrong.