-
Notifications
You must be signed in to change notification settings - Fork 9
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 #43 from lauraquellmalz/systemd
Fixed several issues with the init system for the salt master
- Loading branch information
Showing
13 changed files
with
111 additions
and
40 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,23 @@ | ||
# Changelog | ||
|
||
## 1.0.3 | ||
|
||
* Fixed occasions where the salt master couldn't communicate due to the | ||
docker init system and salt | ||
* Fixed error in `doil delete` where it couldn't find the docker image to | ||
delete | ||
* Fixed zombie process spawning | ||
* Fixed version and build id | ||
* Moved changelog to separate file | ||
|
||
## 1.0.2 | ||
|
||
* Made the salt master and minion comunication more solid | ||
* Fixed minor issues | ||
|
||
## 1.0.1 | ||
|
||
* Fixed a bug in linux templates where the port 80 is blocked so no machine | ||
could be started | ||
* Added update script | ||
* Changed readme (thanks @Rillke) |
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
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,3 +1,3 @@ | ||
#!/bin/bash | ||
|
||
echo "doil version 1.0 - build 2021-03-xx" | ||
echo "doil version 1.0.3 - build 2021-05-02" |
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,8 +1,6 @@ | ||
FROM debian:stable | ||
|
||
RUN apt-get update | ||
RUN apt-get install -y vim less procps supervisor salt-master | ||
RUN apt-get install -y vim less virt-what net-tools procps salt-master | ||
|
||
COPY run-supervisor.sh /usr/local/bin/run-supervisor.sh | ||
RUN chmod a+x /usr/local/bin/run-supervisor.sh | ||
CMD ["/usr/local/bin/run-supervisor.sh"] | ||
ENTRYPOINT ["salt-master", "-l", "debug"] |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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