Compare commits
7 commits
9fb67cd7e0
...
c0277fa8b9
Author | SHA1 | Date | |
---|---|---|---|
c0277fa8b9 | |||
d95a8e6d59 | |||
e9c64ec089 | |||
ed0295c4f7 | |||
1910398b60 | |||
1f3740dd59 | |||
919f5f2c08 |
2 changed files with 4 additions and 2 deletions
|
@ -6,8 +6,6 @@ version = node.metadata.get('gitea/version')
|
|||
assert not version.startswith('v')
|
||||
arch = node.metadata.get('system/architecture')
|
||||
|
||||
print(f'https://codeberg.org/forgejo/forgejo/releases/download/v{version}/forgejo-{version}-linux-{arch}')
|
||||
|
||||
downloads['/usr/local/bin/gitea'] = {
|
||||
# https://forgejo.org/releases/
|
||||
'url': f'https://codeberg.org/forgejo/forgejo/releases/download/v{version}/forgejo-{version}-linux-{arch}',
|
||||
|
@ -50,6 +48,7 @@ files['/etc/gitea/app.ini'] = {
|
|||
),
|
||||
),
|
||||
'owner': 'git',
|
||||
'mode': '0600',
|
||||
'context': node.metadata['gitea'],
|
||||
'triggers': {
|
||||
'svc_systemd:gitea:restart',
|
||||
|
|
|
@ -12,6 +12,9 @@ defaults = {
|
|||
},
|
||||
'gitea': {
|
||||
'conf': {
|
||||
'DEFAULT': {
|
||||
'WORK_PATH': '/var/lib/gitea',
|
||||
},
|
||||
'database': {
|
||||
'DB_TYPE': 'postgres',
|
||||
'HOST': 'localhost:5432',
|
||||
|
|
Loading…
Reference in a new issue