forked from SynoCommunity/spksrc
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
demoservice: update shared folder creation
- use resource worker to create shared folder - adjust wizards for shared folder creation - create readme.html that can be opened in the browser - create dummy file as for DSM7 we cannot create packages without content (since SynoCommunity#5163: Fully use DSM7 var directory)
- Loading branch information
Showing
6 changed files
with
136 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
rsc:var/README | ||
rsc:dummy.txt | ||
rsc:var/readme.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,31 @@ | ||
[ | ||
{ | ||
[{ | ||
"step_title": "MySQL Demo Database", | ||
"items": [{ | ||
"type": "password", | ||
"desc": "Enter your MySQL root password if you want to drop the database and/or the db user.", | ||
"subitems": [{ | ||
"key": "wizard_mysql_password_root", | ||
"desc": "MySQL root password" | ||
}] | ||
},{ | ||
"type": "multiselect", | ||
"desc": "Cleanup the Demo Database:", | ||
"subitems": [{ | ||
"key": "wizard_mysql_drop_database", | ||
"desc": "Drop demo database", | ||
"defaultValue": true | ||
},{ | ||
"key": "wizard_mysql_drop_db_user", | ||
"desc": "Drop demo db user", | ||
"defaultValue": true | ||
}] | ||
}] | ||
"type": "password", | ||
"desc": "Enter your MySQL root password if you want to drop the database and/or the db user.", | ||
"subitems": [{ | ||
"key": "wizard_mysql_password_root", | ||
"desc": "MySQL root password" | ||
} | ||
] | ||
}, { | ||
"type": "multiselect", | ||
"desc": "Cleanup the Demo Database:", | ||
"subitems": [{ | ||
"key": "wizard_mysql_drop_database", | ||
"desc": "Drop demo database", | ||
"defaultValue": true | ||
}, { | ||
"key": "wizard_mysql_drop_db_user", | ||
"desc": "Drop demo db user", | ||
"defaultValue": true | ||
}, { | ||
"key": "wizard_mysql_create_backup", | ||
"desc": "Create a backup of the demo database.", | ||
"defaultValue": true | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] |