2018-01-10 12:05:25 +05:00
|
|
|
---
|
|
|
|
# Copyright 2018, taseer94@gmail.com
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2018-06-12 19:59:24 +01:00
|
|
|
- name: Create blazar database schema
|
2018-02-17 17:53:22 +05:00
|
|
|
command: >
|
|
|
|
{{ blazar_bin }}/blazar-db-manage
|
2018-05-31 11:47:39 +05:00
|
|
|
--config-file {{ blazar_etc_dir }}/blazar.conf upgrade head
|
2025-02-12 08:49:41 +01:00
|
|
|
become: true
|
2018-01-10 12:05:25 +05:00
|
|
|
become_user: "{{ blazar_system_user_name }}"
|
2025-02-12 08:49:41 +01:00
|
|
|
changed_when: false
|