Aktualizr
C++ SOTA Client
All Classes Namespaces Files Functions Variables Enumerations Enumerator Pages
ostreereposync.h
1 #ifndef OSTREEREPOSYNC_H_
2 #define OSTREEREPOSYNC_H_
3 
4 #include <string>
5 
6 namespace boost {
7 namespace filesystem {
8 class path;
9 } // namespace filesystem
10 } // namespace boost
11 
12 namespace ostree_repo_sync {
13 
14 bool ArchiveModeRepo(const boost::filesystem::path& tmp_repo_dir);
15 bool LocalPullRepo(const boost::filesystem::path& src_repo_dir, const boost::filesystem::path& dst_repo_dir,
16  const std::string& = "");
17 boost::filesystem::path GetOstreeRepoPath(const boost::filesystem::path& ostree_sysroot_path);
18 
19 } // namespace ostree_repo_sync
20 
21 #endif // OSTREEREPOSYNC_H_