Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ansible-playbook -i hosts site.yml -l local -c local -K -D \
- -e secrets.yml -e "@secrets.yml"
- SUDO password:
- PLAY [all] *********************************************************************
- TASK [setup] *******************************************************************
- ok: [kernelci-frontend]
- TASK [common : Tweak kernel configuration for performance] *********************
- ok: [kernelci-frontend]
- TASK [install-deps : Install OS dependencies] **********************************
- ok: [kernelci-frontend] => (item=[u'build-essential', u'git', u'python-pip', u'python-apt', u'python2.7-dev', u'python-virtualenv', u'uwsgi', u'uwsgi-plugin-python', u'nodejs'])
- TASK [install-deps : Add nginx stable PPA repository] **************************
- skipping: [kernelci-frontend]
- TASK [install-deps : Install nginx] ********************************************
- ok: [kernelci-frontend] => (item=[u'nginx', u'nginx-extras', u'rsync'])
- TASK [install-deps : Add redis PPA (Ubuntu)] ***********************************
- skipping: [kernelci-frontend]
- TASK [install-deps : Install redis server] *************************************
- ok: [kernelci-frontend]
- TASK [install-deps : Make sure redis is running] *******************************
- ok: [kernelci-frontend]
- TASK [install-app : Checkout kernel-ci-frontend code] **************************
- ok: [kernelci-frontend]
- TASK [install-app : Fix cloned repo permissions] *******************************
- changed: [kernelci-frontend]
- TASK [install-app : Install pip requirements] **********************************
- ok: [kernelci-frontend]
- TASK [install-app : Fix virtualenv permissions] ********************************
- ok: [kernelci-frontend]
- TASK [install-app : Copy app settings file] ************************************
- ok: [kernelci-frontend]
- TASK [install-app : Create empty flask_settings] *******************************
- --- before
- +++ after
- @@ -1,4 +1,4 @@
- {
- "path": "/etc/flask_settings",
- - "state": "file"
- + "state": "touch"
- }
- changed: [kernelci-frontend]
- TASK [configure-nginx : Install default nginx configuration] *******************
- ok: [kernelci-frontend]
- TASK [configure-nginx : Disable default website] *******************************
- ok: [kernelci-frontend]
- TASK [configure-nginx : Create www root directory] *****************************
- ok: [kernelci-frontend]
- TASK [configure-nginx : Copy static assests (for staging)] *********************
- skipping: [kernelci-frontend]
- TASK [configure-nginx : Build static assets] ***********************************
- changed: [kernelci-frontend]
- TASK [configure-nginx : Fix assets permissions] ********************************
- --- before
- +++ after
- @@ -1,5 +1,5 @@
- {
- - "group": 0,
- - "owner": 0,
- + "group": 33,
- + "owner": 33,
- "path": "/tmp/assets-build"
- }
- changed: [kernelci-frontend]
- TASK [configure-nginx : Copy static assets] ************************************
- changed: [kernelci-frontend]
- TASK [configure-nginx : Copy maintenance page] *********************************
- ok: [kernelci-frontend]
- TASK [configure-nginx : Install frontend nginx configuration] ******************
- fatal: [kernelci-frontend]: FAILED! => {"changed": false, "failed": true, "msg": "AnsibleUndefinedVariable: 'certname' is undefined"}
- to retry, use: --limit @/home/vagrant/git-repos/kernelci-frontend/site.retry
- PLAY RECAP *********************************************************************
- kernelci-frontend : ok=19 changed=5 unreachable=0 failed=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement