Emmet O'Grady
Emmet O'Grady
@SargeKhan I've read the docs [here](http://bsalex.github.io/angular-loading-overlay/_site/) and it mentions using `loading-overlay-template.html` as your own overlay file but I can't find a simple example of what this template should look like....
How about using a conditional, like this: ``` - name: ensure git is present (apt) apt: name=git state=present cache_valid_time=3600 update_cache=yes when: ansible_pkg_mgr == 'apt' - name: ensure git is present...
Hi @jeis2497052 ! Thanks for flagging this. If you're up for creating a PR I'd gladly merge it. Thanks!
Hi @pkozlovskiy, glad you find the role useful. There is an example in the README, does that help? https://github.com/emmetog/ansible-jenkins#example-playbook ``` - hosts: jenkins vars: jenkins_version: "1.642.4" jenkins_url: http://jenkins.example.com jenkins_port: 80...
I had this problem in Docker as well, I was binding the source code into the container as a volume (for easy development). The problem was that I had built...
Just a guess here as I've run into an issue when trying to use postgresql 10, but is below the same problem you had? When starting up everything looks good:...
Strangely the connection via psql seem to work fine with crunchy-proxy-0.0.1-alpha, after having converted the yaml config file to json using the template [here](https://github.com/CrunchyData/crunchy-proxy/blob/0.0.1-alpha/config.json) as a base and running it...
Also reproducible on Ubuntu 20.04: ``` # av apply --inventory ./infrastructure-aviary/ --log-level debug 2020-10-02 15:25:55.203 | INFO | Using local inventory //infrastructure-aviary 2020-10-02 15:25:55.257 | INFO | Running apply 2020-10-02...
Seems to be because of [this](https://github.com/team-video/aviary.sh/blob/master/av#L3) line at the very top of `av`: ```bash set -euo pipefail ``` Removing this line seems to let things work as they should, but...