Added a basic setup with package install, config, and service management
This commit is contained in:
5
gitea/service/init.sls
Normal file
5
gitea/service/init.sls
Normal file
@ -0,0 +1,5 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# vim: ft=sls
|
||||
|
||||
include:
|
||||
- .running
|
16
gitea/service/running.sls
Normal file
16
gitea/service/running.sls
Normal file
@ -0,0 +1,16 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# vim: ft=sls
|
||||
|
||||
{%- set tplroot = tpldir.split('/')[0] %}
|
||||
{%- set sls_config_file = tplroot ~ '.config.file' %}
|
||||
{%- from tplroot ~ "/map.jinja" import gitea with context %}
|
||||
|
||||
include:
|
||||
- {{ sls_config_file }}
|
||||
|
||||
gitea_service:
|
||||
service.running:
|
||||
- name: {{ gitea.service_name }}
|
||||
- enable: {{ gitea.service_enabled }}
|
||||
- watch:
|
||||
- sls: {{ sls_config_file }}
|
Reference in New Issue
Block a user