ADS 8.5 dev7.0
Used AQFileSystem chgrp in Ubuntu machine
Tried to change the ownership of a directory
ADS displayed - CHGRP done
when I used ls -l the group had not changed. Group was not changed.
Sample Program
var test_data_dir = "/home/niels/test";
var AQFS = aqua.filesystem;
test_chgrp();
function test_chgrp() {
var dest_dir = test_data_dir ;
var owner = "root";
exec_chgrp(dest_dir , owner);
}
function exec_chown(pathname, owner) {
try {
aqua.println("CHGRP of [" + pathname + "] to [" + owner + "]...");
AQFS.chgrp(pathname, owner);
aqua.println("CHGRP done.");
} catch(ex) {
aqua.println("CHGRP failed - " + ex.toString());
}
}
same treatment as chown. can't test on my dev environment, please reopen if necessary.
Issue #3393 |
Closed |
Fixed |
Resolved |
Completion |
No due date |
No fixed build |
No time estimate |
same treatment as chown. can't test on my dev environment, please reopen if necessary.