-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't backup / #30
Comments
Hey, thanks for these two reports. Bad news for getting them fixed though.
I don't use Tarsnap (and therefore acts) any more, so I'm not planning to
make any further changes to this project.
…On Sun, 9 Jun 2019 at 17:23, Adam Weinberger ***@***.***> wrote:
This may be a niche problem, and it's entirely likely that I'm misusing
tarsnap, but I have carefully set nodump flags throughout my filesystem,
and run tarsnap --nodump -c /.
Setting backuptargets="/" works, but leads to strange-looking archive
names. ACTS essentially unsets $nicedirname, leading to a dangling hyphen
(host-type-date-). Setting $backuptargets to . produces odd names too (
host-type-date-.). More ideal would be to just leave $nicedirname off
entirely in that case (host-type-date).
Consider then:
if [ "$dir" = "/" ]; then
nicedirname=""else
nicedirname=$(echo "-$dir" | tr -d '/')
and s/-$nicedirname/$nicedirname/.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#30?email_source=notifications&email_token=AAC4U5K6EKV42TJXJE56HR3PZSVX3A5CNFSM4HWI3SO2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4GYNQ6BA>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAC4U5MKHDBBDPE3LDC5H2TPZSVX3ANCNFSM4HWI3SOQ>
.
|
Fair enough! I'll fork it and make the changes, and take a whack at a few of the other reported issues Thank you for all the time and work you put into ACTS! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This may be a niche problem, and it's entirely likely that I'm misusing tarsnap, but I have carefully set nodump flags throughout my filesystem, and run
tarsnap --nodump -c /
.Setting
backuptargets="/"
works, but leads to strange-looking archive names. ACTS essentially unsets$nicedirname
, leading to a dangling hyphen (host-type-date-
). Setting$backuptargets
to.
produces odd names too (host-type-date-.
). More ideal would be to just leave$nicedirname
off entirely in that case (host-type-date
).Consider then:
and
s/-$nicedirname/$nicedirname/
.The text was updated successfully, but these errors were encountered: