diff --git a/conf/config.php b/conf/config.php index a360aef..e01ce43 100644 --- a/conf/config.php +++ b/conf/config.php @@ -57,7 +57,6 @@ define( 'YOURLS_COOKIEKEY', 'modify this text with something random' ); ** YOURLS will auto encrypt plain text passwords in this file ** Read http://yourls.org/userpassword for more information */ $yourls_user_passwords = array( - // 'yourlsuser' => 'yourlspass' // You can have one or more 'login'=>'password' lines ); /** Debug mode to output some internal information diff --git a/manifest.json b/manifest.json index e6e93b6..576af17 100644 --- a/manifest.json +++ b/manifest.json @@ -2,8 +2,8 @@ "name": "Yourls", "id": "yourls", "description": { - "en": "a URL shortening service", - "fr": "un service de raccourcisseur d'url" + "en": "An URL shortening service", + "fr": "Un service de raccourcisseur d'url" }, "developer": { "name": "courgette", @@ -34,17 +34,9 @@ "name": "admin", "ask": { "en": "Choose the Yourls administrator (must be an existing YunoHost user)", - "fr": "Administrateur du site (doit être un utilisateur Yunohost existant)" + "fr": "Administrateur du site Yourls (doit être un utilisateur Yunohost existant)" }, "example": "yoda" - }, - { - "name": "upload_password", - "ask": { - "en": "Set the password granting upload permissions (leave empty to allow anybody to upload)", - "fr": "Choisissez le password pour autoriser l'upload (laissez vide pour autorisé tout le monde)" - }, - "example": "supersecretpassword" } ] diff --git a/scripts/install b/scripts/install index 74e0010..ec14b90 100644 --- a/scripts/install +++ b/scripts/install @@ -4,7 +4,6 @@ domain=$1 path=$2 admin_user=$3 -upload_password=$4 # Check domain/path availability sudo yunohost app checkurl $domain$path -a yourls @@ -46,10 +45,8 @@ sudo sed -i "s/yunopass/$db_pwd/g" $final_path/user/config.php sudo sed -i "s/yunobase/$db_user/g" $final_path/user/config.php sudo sed -i "s/yunodomain/$domain/g" $final_path/user/config.php sudo sed -i "s/yourlsuser/$admin_user/g" $final_path/user/config.php -sudo sed -i "s/yourlspass/$upload_password/g" $final_path/user/config.php sudo sed -i "s/_yourlspath$path/g" $final_path/user/config.php - # Set permissions sudo chown -R www-data: $final_path