diff options
author | varac <varacanero@zeromail.org> | 2016-11-09 13:50:30 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2016-11-09 13:50:30 +0100 |
commit | d8255eb07a8b96ad04fcade8486530db2e61dad4 (patch) | |
tree | a83ab3c43f1a8ce7ced6939e2546de099bdfaae6 /tests/server-tests | |
parent | 4d8a1bc0ce304404e4d0cab0ce6a3c51ed035e71 (diff) |
Don't do strict checking for nickserver
Sometimes nickserver is listed with `ruby /usr/bin/nickserver start`
in the process table, sometimes with `/usr/bin/ruby /usr/bin/nickserver start`.
We should do proper checking with `systemctl status nickserver` to make
sure the service is up though (https://leap.se/code/issues/8579).
Meanwhile it's ok to not do strict checking.
Diffstat (limited to 'tests/server-tests')
-rw-r--r-- | tests/server-tests/white-box/webapp.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/server-tests/white-box/webapp.rb b/tests/server-tests/white-box/webapp.rb index 40c234d6..c46c9f96 100644 --- a/tests/server-tests/white-box/webapp.rb +++ b/tests/server-tests/white-box/webapp.rb @@ -28,7 +28,7 @@ class Webapp < LeapTest def test_03_Are_daemons_running? assert_running '^/usr/sbin/apache2' - assert_running '^/usr/bin/ruby /usr/bin/nickserver' + assert_running 'ruby /usr/bin/nickserver' pass end |