You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately, using multiple users in the same package does not work. All files belong to a single user.
Example:
from('root/home/foo') {
into '/home/foo'
user 'foo'
group 'foo'
fileMode = 0600
}
from('root/home/bar') {
into '/home/bar'
user 'bar'
group 'bar'
fileMode = 0600
}
In this case all files will belong to bar, even files in /home/foo. For some reason the user/group ownerships are overwritten by the last from-command.
The text was updated successfully, but these errors were encountered:
Unfortunately, using multiple users in the same package does not work. All files belong to a single user.
Example:
In this case all files will belong to bar, even files in /home/foo. For some reason the user/group ownerships are overwritten by the last from-command.
The text was updated successfully, but these errors were encountered: