-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test_nsfs_cephs3: Add uid and gid to manage_nsfs cmd
1. Add uid and gid to manage_nsfs cmd in standalone_depoly_nsfs 2. copy data instead of symlink Signed-off-by: Vinayakswami Hariharmath <[email protected]>
- Loading branch information
Showing
2 changed files
with
8 additions
and
3 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 |
---|---|---|
|
@@ -10,8 +10,8 @@ function execute() { | |
|
||
function main() { | ||
# Add accounts to run ceph tests | ||
execute "node src/cmd/manage_nsfs account add --config_root ./standalone/config_root --name cephalt --email [email protected] --new_buckets_path ./standalone/nsfs_root --access_key abcd --secret_key abcd" nsfs_cephalt.log | ||
execute "node src/cmd/manage_nsfs account add --config_root ./standalone/config_root --name cephtenant --email [email protected] --new_buckets_path ./standalone/nsfs_root --access_key efgh --secret_key efgh" nsfs_cephtenant.log | ||
execute "node src/cmd/manage_nsfs account add --config_root ./standalone/config_root --name cephalt --email [email protected] --new_buckets_path ./standalone/nsfs_root --access_key abcd --secret_key abcd --uid 10001 --gid 0" nsfs_cephalt.log | ||
execute "node src/cmd/manage_nsfs account add --config_root ./standalone/config_root --name cephtenant --email [email protected] --new_buckets_path ./standalone/nsfs_root --access_key efgh --secret_key efgh --uid 10001 --gid 0" nsfs_cephtenant.log | ||
# Start nsfs server | ||
execute "node src/cmd/nsfs --config_root ./standalone/config_root" nsfs.log | ||
# Wait for sometime to process to start | ||
|