aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-06-02 12:36:44 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-06-02 12:36:44 -0400
commit6fba7b737dd20e108e79bb5ff8b5b87008b73b59 (patch)
treedb4d10df31c8ca2baee884a9c4b46cc1bbd580eb
parent5f791efec747905c4d613e1d715b65227a3528d9 (diff)
parent5103b7bb3bf413e9ba23a26ef06e2dcf052c2a6d (diff)
Merge branch 'master' of ssh://git-annex.branchable.com
-rw-r--r--doc/bugs/sharedRepository__61__world_not_working.mdwn32
-rw-r--r--doc/bugs/sharedRepository__61__world_not_working/comment_1_70b0cf42e00d50991fd4764da58adc38._comment7
-rw-r--r--doc/forum/assistant_periodical_unused_moves.mdwn11
-rw-r--r--doc/todo/Support_dbus_monitor_for_networkd.mdwn3
-rw-r--r--doc/todo/Support_dbus_monitor_for_networkd/comment_1_c34efaec014646bd52b5a4cc36913982._comment7
5 files changed, 60 insertions, 0 deletions
diff --git a/doc/bugs/sharedRepository__61__world_not_working.mdwn b/doc/bugs/sharedRepository__61__world_not_working.mdwn
new file mode 100644
index 000000000..f40fd3eff
--- /dev/null
+++ b/doc/bugs/sharedRepository__61__world_not_working.mdwn
@@ -0,0 +1,32 @@
+### Please describe the problem.
+As per [this note](https://git-annex.branchable.com/todo/sharedRepository_mode_not_supported_by_git-annex/), `sharedRepository=world` should be supported. However, it does not seem to work with git-annex 5.20150508. When copying files to the public remote, annexed objects’ permission are subject to the remote user’s umask. If it is 077, they will not be world-readable.
+
+
+### What steps will reproduce the problem?
+
+[[!format sh """
+# Remotely
+git init --shared=world public
+cd public
+git config receive.denyCurrentBranch updateInstead
+git annex init
+"""]]
+
+[[!format sh """
+# Locally
+git init local
+cd local
+git annex init
+git remote add public $URL:public
+echo abc > file
+git annex add file
+git commit -m init
+git annex copy --to public file
+git annex sync
+# If remote user has umask 077, remote object winds up readable only by him
+"""]]
+
+
+### What version of git-annex are you using? On what operating system?
+git-annex 5.20150508
+Linux 4.0.4
diff --git a/doc/bugs/sharedRepository__61__world_not_working/comment_1_70b0cf42e00d50991fd4764da58adc38._comment b/doc/bugs/sharedRepository__61__world_not_working/comment_1_70b0cf42e00d50991fd4764da58adc38._comment
new file mode 100644
index 000000000..467569057
--- /dev/null
+++ b/doc/bugs/sharedRepository__61__world_not_working/comment_1_70b0cf42e00d50991fd4764da58adc38._comment
@@ -0,0 +1,7 @@
+[[!comment format=mdwn
+ username="https://id.koumbit.net/anarcat"
+ subject="comment 1"
+ date="2015-06-02T12:13:19Z"
+ content="""
+i often had to do a `chmod` in order to kick things into submission at first. did you try all that is mentionned in [[tips/shared_git_annex_directory_between_multiple_users/]]?
+"""]]
diff --git a/doc/forum/assistant_periodical_unused_moves.mdwn b/doc/forum/assistant_periodical_unused_moves.mdwn
new file mode 100644
index 000000000..5725f8d23
--- /dev/null
+++ b/doc/forum/assistant_periodical_unused_moves.mdwn
@@ -0,0 +1,11 @@
+I am trying a setup to move files from/to work using a usb key that also has a acopy of the whole repository (if I have to access it from somewhere else without git-annex).
+
+At home there's a direct client repository, the usb is an indirect incrementalbackup and at work I have a indirect backup and a direct client repositories.
+
+
+What I am trying to obtain is to have a lightweight repository at home that doesn't hold backups, and the usb key to also move the unused files from home to work as a backup.
+I am trying to make the assistant do it for me and as far as I could read the assistant should periodically move unused files out of repositories of the group client to the (incremental)backup ones.
+
+
+Having the assistant running on home repository and the two work repositories should do the trick? considering that the usb key doesn't spend much time connected to a computer I have no idea how the assistant would do the periodcal move.
+Also i hope i got it right but files from incrementalbackup should be moved to backup repositories when they can be synchronized, but again, I don't know if a 5 minutes mount with the assistant running on the backup repository will actually do it.
diff --git a/doc/todo/Support_dbus_monitor_for_networkd.mdwn b/doc/todo/Support_dbus_monitor_for_networkd.mdwn
new file mode 100644
index 000000000..aa7cd69d2
--- /dev/null
+++ b/doc/todo/Support_dbus_monitor_for_networkd.mdwn
@@ -0,0 +1,3 @@
+As of late, systemd-networkd supports a network monitor via dbus under “org.freedesktop.network1“. It would be convenient if the assistant supported this.
+
+Cf. this [commit](http://cgit.freedesktop.org/systemd/systemd/commit/?id=e331e24649213f2e093e16e4d3d64ee823dfc375).
diff --git a/doc/todo/Support_dbus_monitor_for_networkd/comment_1_c34efaec014646bd52b5a4cc36913982._comment b/doc/todo/Support_dbus_monitor_for_networkd/comment_1_c34efaec014646bd52b5a4cc36913982._comment
new file mode 100644
index 000000000..554e8d01c
--- /dev/null
+++ b/doc/todo/Support_dbus_monitor_for_networkd/comment_1_c34efaec014646bd52b5a4cc36913982._comment
@@ -0,0 +1,7 @@
+[[!comment format=mdwn
+ username="eigengrau"
+ subject="comment 1"
+ date="2015-06-02T14:40:47Z"
+ content="""
+Submitted a patch.
+"""]]