From 4618264c86886368e53c1dea97f03fbdaf9477e6 Mon Sep 17 00:00:00 2001 From: kload Date: Sat, 26 Oct 2013 18:04:10 +0000 Subject: [PATCH] Postinstall password fix --- yunohost | 2 ++ 1 file changed, 2 insertions(+) diff --git a/yunohost b/yunohost index 00a616a7..6d959d3d 100755 --- a/yunohost +++ b/yunohost @@ -83,6 +83,8 @@ def main(): try: with open('/etc/yunohost/installed') as f: pass except IOError: + admin_password_provided = True + admin_password = "yunohost" if len(sys.argv) < 3 or sys.argv[1] != 'tools' or sys.argv[2] != 'postinstall': raise YunoHostError(17, _("YunoHost is not correctly installed, please execute 'yunohost tools postinstall'"))