diff --git a/usr/bin/pve-fake-subscription b/usr/bin/pve-fake-subscription index 8deeaa3..3e9913f 100755 --- a/usr/bin/pve-fake-subscription +++ b/usr/bin/pve-fake-subscription @@ -41,7 +41,7 @@ def generate_subscription_pve_pmg(key: str, server_ids: List[str]) -> str: "status": "Active", "key": key, "validdirectory": ",".join(server_ids), - "productname": "YajuuSenpai", + "productname": "Fake Subscription", "regdate": dt_string("%Y-%m-%d %H:%M:%S"), "nextduedate": dt_string("%Y-%m-%d", 1296000), } @@ -80,11 +80,11 @@ def generate_subscription_pbs(key: str, server_ids: List[str]) -> str: "serverid": ",".join(server_ids), "checktime": get_timestamp(), "key": key, - "message": "Yajuu Senpai has got your back", - "productname": "YajuuSenpai", + "message": "Fake Subscription", + "productname": "Fake Subscription", "regdate": dt_string("%Y-%m-%d %H:%M:%S"), "nextduedate": dt_string("%Y-%m-%d", 1296000), # 1296000: MAX_LOCAL_KEY_AGE in src/tools/subscription.rs - "url": "https://github.com/Jamesits/pve-fake-subscription", + "url": "", } data = base64.standard_b64encode(json.dumps(localinfo).encode()).decode()