Skip to content

Commit

Permalink
fix problem running shell scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Julio Montes committed Dec 15, 2015
1 parent 56378a9 commit 5ee5a53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/datasources/openstack.c
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ static gboolean openstack_use_config_drive(void) {
return false;
}

if (mount(device, mountpoint, devtype, MS_NODEV|MS_NOEXEC|MS_RDONLY, NULL) != 0) {
if (mount(device, mountpoint, devtype, MS_NODEV, NULL) != 0) {
LOG(MOD "Cannot mount config drive\n");
goto failcfgdrive1;
}
Expand Down

0 comments on commit 5ee5a53

Please sign in to comment.