mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
feat: No pemissions for the rsync (#2187)
* feat: No pemissions for the rsync * chore: Fix the build for missing a property
This commit is contained in:
@@ -467,6 +467,7 @@ async fn migrate(
|
||||
force: true,
|
||||
ignore_existing: false,
|
||||
exclude: Vec::new(),
|
||||
no_permissions: false,
|
||||
},
|
||||
)
|
||||
.await?;
|
||||
@@ -478,6 +479,7 @@ async fn migrate(
|
||||
force: true,
|
||||
ignore_existing: false,
|
||||
exclude: vec!["tmp".to_owned()],
|
||||
no_permissions: false,
|
||||
},
|
||||
)
|
||||
.await?;
|
||||
|
||||
@@ -305,6 +305,7 @@ async fn sync_boot() -> Result<(), Error> {
|
||||
force: false,
|
||||
ignore_existing: true,
|
||||
exclude: Vec::new(),
|
||||
no_permissions: false,
|
||||
},
|
||||
)
|
||||
.await?
|
||||
|
||||
Reference in New Issue
Block a user