Linux cyberpanel 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
LiteSpeed
: 160.191.175.3 | : 216.73.216.114
Cant Read [ /etc/named.conf ]
8.2.29
aodai6801
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
restic /
html /
_sources /
[ HOME SHELL ]
Name
Size
Permission
Action
010_introduction.rst.txt
595
B
-rw-r--r--
020_installation.rst.txt
8.63
KB
-rw-r--r--
030_preparing_a_new_repo.rst.t...
25.93
KB
-rw-r--r--
040_backup.rst.txt
24.69
KB
-rw-r--r--
045_working_with_repos.rst.txt
11.53
KB
-rw-r--r--
050_restore.rst.txt
5.47
KB
-rw-r--r--
060_forget.rst.txt
17.4
KB
-rw-r--r--
070_encryption.rst.txt
1.82
KB
-rw-r--r--
075_scripting.rst.txt
1.39
KB
-rw-r--r--
080_examples.rst.txt
12.65
KB
-rw-r--r--
090_participating.rst.txt
4.93
KB
-rw-r--r--
100_references.rst.txt
499
B
-rw-r--r--
110_talks.rst.txt
1.21
KB
-rw-r--r--
REST_backend.rst.txt
4.02
KB
-rw-r--r--
cache.rst.txt
938
B
-rw-r--r--
design.rst.txt
26.71
KB
-rw-r--r--
developer_information.rst.txt
4.68
KB
-rw-r--r--
faq.rst.txt
8.73
KB
-rw-r--r--
index.rst.txt
360
B
-rw-r--r--
manual_rest.rst.txt
19.4
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 075_scripting.rst.txt
.. Normally, there are no heading levels assigned to certain characters as the structure is determined from the succession of headings. However, this convention is used in Python’s Style Guide for documenting which you may follow: # with overline, for parts * for chapters = for sections - for subsections ^ for subsubsections " for paragraphs ######################### Scripting ######################### This is a list of how certain tasks may be accomplished when you use restic via scripts. Check if a repository is already initialized ******************************************** You may find a need to check if a repository is already initialized, perhaps to prevent your script from initializing a repository multiple times. The command ``snapshots`` may be used for this purpose: .. code-block:: console $ restic -r /srv/restic-repo snapshots Fatal: unable to open config file: Stat: stat /srv/restic-repo/config: no such file or directory Is there a repository at the following location? /srv/restic-repo If a repository does not exist, restic will return a non-zero exit code and print an error message. Note that restic will also return a non-zero exit code if a different error is encountered (e.g.: incorrect password to ``snapshots``) and it may print a different error message. If there are no errors, restic will return a zero exit code and print all the snapshots.
Close