mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
Add systemctl restart for bunkerweb in LinuxTest
This commit is contained in:
parent
611f4f64a7
commit
56f8d2a591
1 changed files with 3 additions and 0 deletions
|
|
@ -122,6 +122,9 @@ class LinuxTest(Test):
|
|||
)
|
||||
if proc.returncode != 0:
|
||||
raise (Exception("docker exec append variables.env failed (test)"))
|
||||
proc = self.docker_exec(self.__distro, "systemctl restart bunkerweb")
|
||||
if proc.returncode != 0:
|
||||
raise Exception("docker exec systemctl restart failed (linux stack)")
|
||||
proc = self.docker_exec(self.__distro, "systemctl restart bunkerweb-scheduler")
|
||||
if proc.returncode != 0:
|
||||
raise Exception("docker exec systemctl restart failed (linux stack)")
|
||||
|
|
|
|||
Loading…
Reference in a new issue