From 5086c146dc562ef825086da1fc68def3d746fdc5 Mon Sep 17 00:00:00 2001 From: yalh76 Date: Thu, 18 Apr 2019 04:50:19 +0200 Subject: [PATCH] Duplicate --- scripts/install | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/scripts/install b/scripts/install index 380364b..2aa61b9 100755 --- a/scripts/install +++ b/scripts/install @@ -46,18 +46,6 @@ admin_password=$(openssl passwd -1 -salt xyz $password) ### db names, ... app=$YNH_APP_INSTANCE_NAME -### If it's a multi-instance app, meaning it can be installed several times independently -### The id of the app as stated in the manifest is available as $YNH_APP_ID -### The instance number is available as $YNH_APP_INSTANCE_NUMBER (equals "1", "2", ...) -### The app instance name is available as $YNH_APP_INSTANCE_NAME -### - the first time the app is installed, YNH_APP_INSTANCE_NAME = ynhexample -### - the second time the app is installed, YNH_APP_INSTANCE_NAME = ynhexample__2 -### - ynhexample__{N} for the subsequent installations, with N=3,4, ... -### The app instance name is probably what interests you most, since this is -### guaranteed to be unique. This is a good unique identifier to define installation path, -### db names, ... -app=$YNH_APP_INSTANCE_NAME - #================================================= # CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS #=================================================