Github messages for voidlinux
 help / color / mirror / Atom feed
* Re: [TRACKING] Setting up directories in runit services vs. xbps INSTALL/hooks
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-660@inbox.vuxu.org>
@ 2020-05-23 17:02 ` CameronNemo
  2020-05-23 23:33 ` sgn
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: CameronNemo @ 2020-05-23 17:02 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 190 bytes --]

New comment by CameronNemo on void-packages repository

https://github.com/void-linux/void-packages/issues/660#issuecomment-633095605

Comment:
/sys/fs/cgroup is a tmpfs, so docker is fine.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [TRACKING] Setting up directories in runit services vs. xbps INSTALL/hooks
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-660@inbox.vuxu.org>
  2020-05-23 17:02 ` [TRACKING] Setting up directories in runit services vs. xbps INSTALL/hooks CameronNemo
@ 2020-05-23 23:33 ` sgn
  2020-05-23 23:34 ` sgn
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: sgn @ 2020-05-23 23:33 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 707 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/issues/660#issuecomment-633065454

Comment:
- [ ] srcpkgs/bro/files/bro/run:7:[ -d ${BROLOGDIR} ] || mkdir -p ${BROLOGDIR}
- [ ] srcpkgs/clockspeed/files/clockspeed/run:5:[ -d /var/lib/clockspeed/etc ] || mkdir -p /var/lib/clockspeed/etc
- [ ] srcpkgs/dnsmasq/files/dnsmasq/run:2:mkdir -p /var/lib/misc
- [ ] srcpkgs/sklogw/files/sklogw/log/run:4:[ -d /var/log/sklogw ] || mkdir -p /var/log/sklogw
- [ ] srcpkgs/twoftpd/files/twoftpd-anon/run:6:mkdir -p $(<./env/HOME)
- [ ] srcpkgs/xen/files/xenconsoled/run:3:mkdir -p /var/log/xen/console

snooze also have this `mkdir -p`, but it's shipped by upstream.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [TRACKING] Setting up directories in runit services vs. xbps INSTALL/hooks
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-660@inbox.vuxu.org>
  2020-05-23 17:02 ` [TRACKING] Setting up directories in runit services vs. xbps INSTALL/hooks CameronNemo
  2020-05-23 23:33 ` sgn
@ 2020-05-23 23:34 ` sgn
  2022-04-15  0:50 ` github-actions
  2022-04-29  2:12 ` [ISSUE] [CLOSED] " github-actions
  4 siblings, 0 replies; 5+ messages in thread
From: sgn @ 2020-05-23 23:34 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 251 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/issues/660#issuecomment-633154080

Comment:
> /sys/fs/cgroup is a tmpfs, so docker is fine.

OK, my filter missed that, I filtered out `/run` and `/var/run`

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [TRACKING] Setting up directories in runit services vs. xbps INSTALL/hooks
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-660@inbox.vuxu.org>
                   ` (2 preceding siblings ...)
  2020-05-23 23:34 ` sgn
@ 2022-04-15  0:50 ` github-actions
  2022-04-29  2:12 ` [ISSUE] [CLOSED] " github-actions
  4 siblings, 0 replies; 5+ messages in thread
From: github-actions @ 2022-04-15  0:50 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 291 bytes --]

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/issues/660#issuecomment-1099748704

Comment:
Issues become stale 90 days after last activity and are closed 14 days after that.  If this issue is still relevant bump it or assign it.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [ISSUE] [CLOSED] [TRACKING] Setting up directories in runit services vs. xbps INSTALL/hooks
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-660@inbox.vuxu.org>
                   ` (3 preceding siblings ...)
  2022-04-15  0:50 ` github-actions
@ 2022-04-29  2:12 ` github-actions
  4 siblings, 0 replies; 5+ messages in thread
From: github-actions @ 2022-04-29  2:12 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 810 bytes --]

Closed issue by Duncaen on void-packages repository

https://github.com/void-linux/void-packages/issues/660

Description:
There is no policy or standard for the preferred method to create certain directories and permissions.

I personally think its better to setup permissions once using `make_dirs` or the `INSTALL` script.
First reason is that if the service fails and the run script runs every second its just a waste of time.
Second reason is that if the admin changes some permissions some services tend to just blindly recursively `chown` or `chmod` directories making it impossible to setup different permissions without
changing the run script.

Directories on `tmpfs` are an exception.

https://github.com/void-linux/void-packages/pull/571
https://github.com/void-linux/void-packages/pull/5

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-04-29  2:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-660@inbox.vuxu.org>
2020-05-23 17:02 ` [TRACKING] Setting up directories in runit services vs. xbps INSTALL/hooks CameronNemo
2020-05-23 23:33 ` sgn
2020-05-23 23:34 ` sgn
2022-04-15  0:50 ` github-actions
2022-04-29  2:12 ` [ISSUE] [CLOSED] " github-actions

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).