Merge pull request #46 from YunoHost/recommend-ynh-print-info

Recommend ynh_print_info or ynh_script_progression usage in the install script
This commit is contained in:
Alexandre Aubin 2019-02-13 17:49:56 +01:00 committed by GitHub
commit a4844e0924
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -432,6 +432,9 @@ def check_deprecated_practices(script):
if "systemctl restart nginx" in script["raw"] or "service nginx restart" in script["raw"]:
print_error("Restarting nginx is quite dangerous (especially for web installs) and should be avoided at all cost. Use 'reload' instead.")
if script["name"] == "install" and "ynh_print_info" not in script["shlex"] and "ynh_script_progression" not in script["shlex"]:
print_warning("Please add a few messages for the user, to explain what is going on (in friendly, not-too-technical terms) during the installation. You can use 'ynh_print_info' or 'ynh_script_progression' for this.")
def main():
if len(sys.argv) != 2:
print("Give one app package path.")