diff options
-rw-r--r-- | fabfile.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -24,7 +24,7 @@ def upload_conf(): local_file = '{}/smtpd.conf'.format(env.host) if not checksum_match(local_file, '/etc/smtpd/smtpd.conf'): - print(green('Config changed, uploading new file...')) + print(green('==> Config changed, uploading new file...')) put(local_path=local_file, remote_path='/etc/smtpd/smtpd.conf', use_sudo=True) sudo('systemctl restart smtpd.service') @@ -37,7 +37,7 @@ def upload_users(): local_file = 'common/users' if not checksum_match(local_file, '/etc/smtpd/users'): - print(green('Users changed, uploading new file...')) + print(green('==> Users changed, uploading new file...')) put(local_path=local_file, remote_path='/etc/smtpd/users', use_sudo=True) sudo('smtpctl update table users') |