-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfabfile.py
79 lines (48 loc) · 2.46 KB
/
fabfile.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import os
from datetime import datetime
from fabric.api import run, put, env, local
env.hosts = [os.environ.get('VM_HOST', '')]
env.password = os.environ.get('VM_PASSWORD', '')
def hostname_check():
run('hostname')
def send_dir(localpath: str, remotepath='/root/', mode=None):
run(f'mkdir -p {remotepath}')
put(localpath, remotepath, mode=mode)
def send_file(localpath: str, remotepath: str, mode=None):
put(localpath, remotepath, mode=mode)
def run_script(script: str):
with open(script) as file:
run(file.read())
def update_sources_list():
put('templates/sources.list', '/etc/apt/sources.list', use_sudo=True)
def create_db(db_name: str):
run(f'sudo -u postgres createdb {db_name};exit 0')
def drop_db(db_name: str):
run(f'sudo -u postgres dropdb {db_name};exit 0')
def migrate_db(db_name: str, dumpfile_path='', remotepath='/root/'):
file_name = f'{db_name}_{datetime.today().date()}' if not dumpfile_path else dumpfile_path
send_dumped_file(db_name, file_name)
restore_db(db_name, remotepath + file_name)
def send_dumped_file(db_name: str, dumpfile_path: str, remotepath='/root/'):
local(f'pg_dump -h localhost -p 5432 -U postgres -F c -b -v -f "{dumpfile_path}" {db_name};exit 0')
put(dumpfile_path, remotepath)
local(f'rm {dumpfile_path};exit 0')
def restore_db(db_name: str, file_name: str):
run(f'pg_restore -h localhost -p 5432 -U postgres -d {db_name} -v {file_name};exit 0')
def update_postgres_password(password: str):
run('sudo -u postgres psql -c "ALTER USER postgres PASSWORD {};";exit 0'.format(f"'{password}'"))
def set_up_minio(password: str, username='minio', url='http://localhost:9000'):
with open('scripts/install_minio.sh') as file:
run(file.read())
run(f'mc config host add minio {url} {username} {password} S3v4')
with open('scripts/update_mino_policy.sh') as file:
run(file.read())
def setup_letsencrypt(email: str, domain: str):
with open('scripts/install_letsencrypt.sh') as file:
run(file.read())
run('service nginx stop')
run(f'letsencrypt certonly --standalone --renew-by-default --email {email} -d {domain}')
run('sudo echo "#!/usr/bin/env bash" > /etc/cron.monthly/renew_letsencrypt.sh')
run('sudo echo "/usr/bin/letsencrypt certonly --standalone --renew-by-default'
f' --email {email} -d {domain}" >> /etc/cron.monthly/renew_letsencrypt.sh')
run('sudo chmod +x /etc/cron.monthly/renew_letsencrypt.sh')