diff --git a/debian/preinst b/debian/preinst index 9bb5aad..dbc699a 100755 --- a/debian/preinst +++ b/debian/preinst @@ -135,11 +135,11 @@ print("\nYou can always change this setting in the config.") prof = input("What profile would you like to use? [f/b/s]: ") if prof.lower().strip() == "f" or prof.lower().strip() == "fast": - cert = 1.5 + cert = 4.2 elif prof.lower().strip() == "b" or prof.lower().strip() == "balanced": cert = 2.8 elif prof.lower().strip() == "s" or prof.lower().strip() == "secure": - cert = 4 + cert = 2 # Write the result to disk so postinst can have a look at it with open("/tmp/howdy_picked_device", "w") as out_file: diff --git a/src/cli.py b/src/cli.py index 863ac25..b7c66fa 100755 --- a/src/cli.py +++ b/src/cli.py @@ -108,4 +108,4 @@ elif args.command == "snapshot": elif args.command == "test": import cli.test else: - print("Howdy 2.6.0") + print("Howdy 2.6.1")