summaryrefslogtreecommitdiff
path: root/bin/ups
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2022-09-15 12:06:23 +0200
committerAnton Khirnov <anton@khirnov.net>2022-09-15 12:06:51 +0200
commitfaeb5e8ccc6dd363874e29e566f0f2b2d596bc08 (patch)
treed3d6e76db4965be8c84d1b3bae76a3e0d4fa0bfb /bin/ups
parent4cfbdda0ef2dd23debbb22d7ee74ceba81a0040a (diff)
bin/up: switch to the new fshare-based up service
Use the same script for up and ups.
Diffstat (limited to 'bin/ups')
-rwxr-xr-xbin/ups4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/ups b/bin/ups
index d38a076..6ca206f 100755
--- a/bin/ups
+++ b/bin/ups
@@ -16,7 +16,9 @@ try:
except ImportError:
have_magic = False
-server = 'https://ups.khirnov.net/'
+progname = os.path.basename(sys.argv[0])
+service = 'up' if progname == 'up' else 'ups'
+server = 'https://%s.khirnov.net/' % service
cert_path = os.path.expanduser('~/.local/var/up/cert')
parser = argparse.ArgumentParser()