Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
rwm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Radoslav Bodó
rwm
Commits
2d23bbfa
Commit
2d23bbfa
authored
1 year ago
by
Radoslav Bodó
Browse files
Options
Downloads
Patches
Plain Diff
restic: init
parent
5733fcca
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
rwm.py
+15
-0
15 additions, 0 deletions
rwm.py
with
15 additions
and
0 deletions
rwm.py
+
15
−
0
View file @
2d23bbfa
...
@@ -107,6 +107,17 @@ class RWM:
...
@@ -107,6 +107,17 @@ class RWM:
}
}
return
subrun
([
"
rclone
"
]
+
args
,
env
=
env
,
check
=
False
).
returncode
return
subrun
([
"
rclone
"
]
+
args
,
env
=
env
,
check
=
False
).
returncode
def
restic_cmd
(
self
,
args
):
env
=
{
"
HOME
"
:
os
.
environ
[
"
HOME
"
],
"
PATH
"
:
os
.
environ
[
"
PATH
"
],
"
AWS_ACCESS_KEY_ID
"
:
self
.
config
[
"
S3_ACCESS_KEY
"
],
"
AWS_SECRET_ACCESS_KEY
"
:
self
.
config
[
"
S3_SECRET_KEY
"
],
"
RESTIC_PASSWORD
"
:
self
.
config
[
"
RES_PASSWORD
"
],
"
RESTIC_REPOSITORY
"
:
f
"
s3:
{
self
.
config
[
'
S3_ENDPOINT_URL
'
]
}
/
{
self
.
config
[
'
RES_BUCKET
'
]
}
"
,
}
#--one-file-system
return
subrun
([
"
restic
"
]
+
args
,
env
=
env
,
check
=
False
).
returncode
def
main
(
argv
=
None
,
dict_config
=
None
):
def
main
(
argv
=
None
,
dict_config
=
None
):
"""
main
"""
"""
main
"""
...
@@ -121,6 +132,8 @@ def main(argv=None, dict_config=None):
...
@@ -121,6 +132,8 @@ def main(argv=None, dict_config=None):
rc_cmd_parser
.
add_argument
(
"
cmd_args
"
,
nargs
=
"
*
"
)
rc_cmd_parser
.
add_argument
(
"
cmd_args
"
,
nargs
=
"
*
"
)
rcc_cmd_parser
=
subparsers
.
add_parser
(
"
rcc
"
,
help
=
"
rclone command with crypt overlay
"
)
rcc_cmd_parser
=
subparsers
.
add_parser
(
"
rcc
"
,
help
=
"
rclone command with crypt overlay
"
)
rcc_cmd_parser
.
add_argument
(
"
cmd_args
"
,
nargs
=
"
*
"
)
rcc_cmd_parser
.
add_argument
(
"
cmd_args
"
,
nargs
=
"
*
"
)
res_cmd_parser
=
subparsers
.
add_parser
(
"
res
"
,
help
=
"
restic command
"
)
res_cmd_parser
.
add_argument
(
"
cmd_args
"
,
nargs
=
"
*
"
)
args
=
parser
.
parse_args
(
argv
)
args
=
parser
.
parse_args
(
argv
)
...
@@ -138,6 +151,8 @@ def main(argv=None, dict_config=None):
...
@@ -138,6 +151,8 @@ def main(argv=None, dict_config=None):
return
rwm
.
rclone_cmd
(
args
.
cmd_args
)
return
rwm
.
rclone_cmd
(
args
.
cmd_args
)
if
args
.
command
==
"
rcc
"
:
if
args
.
command
==
"
rcc
"
:
return
rwm
.
rclone_crypt_cmd
(
args
.
cmd_args
)
return
rwm
.
rclone_crypt_cmd
(
args
.
cmd_args
)
if
args
.
command
==
"
res
"
:
return
rwm
.
restic_cmd
(
args
.
cmd_args
)
return
0
return
0
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment