slack invite, travis docker passwords
This commit is contained in:
parent
ae02d02d63
commit
551dc707f1
3 changed files with 5 additions and 4 deletions
|
|
@ -8,5 +8,5 @@ branches:
|
||||||
script: ./configure --with-restconf=fcgi && make && sudo make install && make test
|
script: ./configure --with-restconf=fcgi && make && sudo make install && make test
|
||||||
before_script:
|
before_script:
|
||||||
- sudo apt-get install -y libfcgi-dev
|
- sudo apt-get install -y libfcgi-dev
|
||||||
- echo "hepp%7835" | docker login -u "olofhagsand" --password-stdin
|
- echo "$DOCKERPASSWD" | docker login -u "$DOCKERUSER" --password-stdin
|
||||||
- ./test/travis/before_script.sh
|
- ./test/travis/before_script.sh
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,6 @@ Latest release is 5.1.0. See [CHANGELOG.md](CHANGELOG.md) release history.
|
||||||
|
|
||||||
Clixon interaction is best done posting issues, pull requests, or joining the
|
Clixon interaction is best done posting issues, pull requests, or joining the
|
||||||
[slack channel](https://clixondev.slack.com).
|
[slack channel](https://clixondev.slack.com).
|
||||||
[Slack invite](https://join.slack.com/t/clixondev/shared_invite/zt-o8lv7ysk-vcLb7yY9S7XMEklqqVBziQ) (updated 24/3 2021)
|
[Slack invite](https://join.slack.com/t/clixondev/shared_invite/zt-qk66zp47-ahdOlEHKEPmb~5ciVJilPQ) (updated 24/5 2021)
|
||||||
|
|
||||||
Clixon is sponsored by [Rubicon Communications LLC(Netgate)](https://www.netgate.com/)
|
Clixon is sponsored by [Rubicon Communications LLC(Netgate)](https://www.netgate.com/)
|
||||||
|
|
|
||||||
|
|
@ -195,13 +195,14 @@ ps aux|grep clixon_ # XXX
|
||||||
new "Check $pid1 exists"
|
new "Check $pid1 exists"
|
||||||
# Here backend dies / is killed
|
# Here backend dies / is killed
|
||||||
#while sudo kill -0 $pid1 2> /dev/null; do
|
#while sudo kill -0 $pid1 2> /dev/null; do
|
||||||
while sudo kill -0 $pid1; do # XXX
|
if sudo kill -0 $pid1; then # XXX
|
||||||
new "kill $pid1 externally"
|
new "kill $pid1 externally"
|
||||||
sudo kill $pid1
|
sudo kill $pid1
|
||||||
sleep 1 # There is a race condition here when restconf is killed while waiting for reply from backend
|
sleep 1 # There is a race condition here when restconf is killed while waiting for reply from backend
|
||||||
echo "pid1:$pid1" # XXX
|
echo "pid1:$pid1" # XXX
|
||||||
ps aux|grep clixon_ # XXX
|
ps aux|grep clixon_ # XXX
|
||||||
done
|
fi
|
||||||
|
#done
|
||||||
|
|
||||||
echo "pid1:$pid1" # XXX
|
echo "pid1:$pid1" # XXX
|
||||||
ps aux|grep clixon_ # XXX
|
ps aux|grep clixon_ # XXX
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue