mirror of
https://github.com/nokonoko/Uguu.git
synced 2024-01-06 13:35:15 +00:00
Merge f253f45673
into d7cda1899e
This commit is contained in:
commit
e02359b2f5
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -0,0 +1,3 @@
|
||||
[submodule "ansible/ansible-role-uguu"]
|
||||
path = ansible/ansible-role-uguu
|
||||
url = https://github.com/s3lva-kumar/ansible-role-uguu
|
7
Makefile
7
Makefile
@ -4,6 +4,7 @@ TAR = "tar"
|
||||
GREP="grep"
|
||||
NODE="node"
|
||||
NPM="npm"
|
||||
HOSTS_FILE = $(HOSTS_FILE)
|
||||
NODEJQ="node_modules/node-jq/bin/jq"
|
||||
SQLITE="sqlite3"
|
||||
CONF="src/config.json"
|
||||
@ -69,6 +70,12 @@ install: installdirs
|
||||
cd $(DESTDIR)/ && rm composer-setup.php
|
||||
cd $(DESTDIR)/ && php composer.phar update && php composer.phar install && php composer.phar dump-autoload
|
||||
|
||||
submodule-update:
|
||||
cd ansible && git clone git@github.com:s3lva-kumar/ansible-role-uguu.git && git submodule update --remote
|
||||
|
||||
deploy:
|
||||
ansible-playbook -i $(HOSTS_FILE) ansible/site.yml
|
||||
|
||||
dist:
|
||||
DESTDIR=$(TMPDIR)/uguu-$(PKGVERSION)
|
||||
export DESTDIR
|
||||
|
1
ansible/ansible-role-uguu
Submodule
1
ansible/ansible-role-uguu
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit b3b95801d3664d8a143126c0ff6551533f48394e
|
10
ansible/site.yml
Normal file
10
ansible/site.yml
Normal file
@ -0,0 +1,10 @@
|
||||
- name: "install uguu"
|
||||
hosts: all
|
||||
become: yes
|
||||
roles:
|
||||
- ansible-role-uguu
|
||||
|
||||
vars:
|
||||
paypalUrl: ""
|
||||
bitcoinAddress: ""
|
||||
flattrUrl: ""
|
Loading…
Reference in New Issue
Block a user