Skip to content

Commit

Permalink
Add crone role in setup playbook (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
akondas authored Apr 20, 2020
1 parent 9a6bfb8 commit d3c491f
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
- organization members (#56)

## [0.1.0] - 2020-04-20
### First release :tada:
- free and open source
- works as a proxy for packagist.org (speeds up your local builds)
- hosts your private packages
- allows to create individual access tokens
- supports private package import from GitHub, GitLab and Bitbucket with one click
6 changes: 6 additions & 0 deletions ansible/roles/cron/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
- name: Add sync proxy releases command to cron
cron:
name="Sync proxy releases with packagist.org"
user="{{ system_user }}"
minute="*/5"
job="{{ app_root }}/bin/console repman:proxy:sync-releases >>{{ app_root }}/var/log/cron.log 2>&1"
1 change: 1 addition & 0 deletions ansible/setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
- app.install
- app.env
- supervisor
- cron
tasks:
- name: Stop message consumers
become: true
Expand Down

0 comments on commit d3c491f

Please sign in to comment.