Systemd birim dosyasındaki ExecStartPre girişleri tarafından karıştırıldı


23

Dizin oluşturması gereken /run, ancak root olmayan bir kullanıcı olarak çalışan bir systemd hizmetim var . Bir blog örneğinden, aşağıdaki çözümü türettim:

[Unit]
Description=Startup Thing

[Service]
Type=oneshot
ExecStart=/usr/bin/python3 -u /opt/thing/doStartup
WorkingDirectory=/opt/thing
StandardOutput=journal
User=thingUser
# Make sure the /run/thing directory exists
PermissionsStartOnly=true
ExecStartPre=-/bin/mkdir -p /run/thing
ExecStartPre=/bin/chmod -R 777 /run/thing

[Install]
WantedBy=multi-user.target

Büyü, yorumu izleyen 3 satırda. Görünüşe göre ExecStartPre's bu şekilde root olarak çalışacak, ancak ExecStartbelirtilen kullanıcı olarak çalışacak.

Bu olsa 3 soruya yol açtı:

  1. -Önünde ne yapar /bin/mkdir? Neden orada olduğunu veya ne yaptığını bilmiyorum.
  2. ExecStartPreBirim dosyasında birden fazla var ise , sadece birim dosyasında bulunduğu sırayla seri olarak mı çalıştırılıyor? Ya da başka bir yöntem?
  3. Bu aslında root olmayan kullanıcının kullanabilmesi için run dizini yaratma hedefimi gerçekleştirmek için en iyi teknik midir?

ExecStartPreRoot olarak çalıştırılmasının nedeni PermissionsStartOnly=trueyönergedir. Bu kısıtlar Usersadece yönergeyi ExecStartkomutu. Bkz. Freedesktop.org/software/systemd/man/systemd.service.html
cayhorstmann

Yanıtlar:


30

Bir sistem yönergesiyle ilgili sorularınız man systemd.directivesiçin, yönergeyi belgeleyen kılavuz sayfasına bakmak için kullanabilirsiniz . Bu durumda, ExecStartPre=belgeli olarak bulacaksınız man systemd.service.

Dokümanlar için ExecStartPre=, baştaki "-" in başarısızlığın bu komutlar için tolere edildiğini belirtmek için kullanıldığını açıkladığını bulacaksınız. Bu durumda, /run/thingzaten varsa , tolere edilir .

Buradaki dokümanlar ayrıca “birden fazla komut satırına izin verildiğini ve komutların seri olarak birbiri ardına çalıştırıldığını” açıklar.

Dizini önceden oluşturma yönteminizdeki bir gelişme, yalnızca belirli bir kullanıcı tarafından yazılabilir olması gerektiğinde dünyaya yazılabilir hale gelmemesidir. Daha sınırlı izinler aşağıdakilerle gerçekleştirilebilir:

 ExecStartPre=-/bin/chown thingUser /run/thing
 ExecStartPre=-/bin/chmod 700       /run/thing

Bu, dizinin belirli bir kullanıcının sahip olduğu ve tam olarak erişilebilir olmasını sağlar.


Müthiş cevap, systemd.directives ipucu için teşekkür ederim, ben her zaman nereye gideceğimi bulmak için systemd bulmak zor. Bu yardımcı olur.
Travis Griggs

1
Muhtemelen kapsamalıdır RuntimeDirectoryve RuntimeDirectoryModede.
JdeBP

2

# 3’ün cevabı:

Check out RuntimeDirectory=& RuntimeDirectoryMode=direktifleri. Tam dokümanlar burada . Ancak, özet olarak (metinde küçük bir değişiklik yapılması, ancak özün kalması gerekir):

RuntimeDirectory=

       This option take a whitespace-separated list of directory names. The 
       specified directory names must be relative, and may not include "..". If
       set, one or more directories by the specified names will be created
       (including their parents) below /run (for system services) or below 
       $XDG_RUNTIME_DIR (for user services) when the unit is started. Also, the  
       $RUNTIME_DIRECTORY environment variable is defined with the full path of 
       directories. If multiple directories are set, then in the environment 
       variable the paths are concatenated with colon (":").

       The innermost subdirectories are removed when the unit is stopped. It is 
       possible to preserve the specified directories in this case if 
       RuntimeDirectoryPreserve= is configured to restart or yes. The innermost 
       specified directories will be owned by the user and group specified in 
       User= and Group=.

       If the specified directories already exist and their owning user or group 
       do not match the configured ones, all files and directories below the 
       specified directories as well as the directories themselves will have their 
       file ownership recursively changed to match what is configured. As an 
       optimization, if the specified directories are already owned by the right 
       user and group, files and directories below of them are left as-is, even if 
       they do not match what is requested. The innermost specified directories 
       will have their access mode adjusted to the what is specified in 
       RuntimeDirectoryMode=.

       Use RuntimeDirectory= to manage one or more runtime directories for the 
       unit and bind their lifetime to the daemon runtime. This is particularly 
       useful for unprivileged daemons that cannot create runtime directories in 
       /run due to lack of privileges, and to make sure the runtime directory is 
       cleaned up automatically after use. For runtime directories that require 
       more complex or different configuration or lifetime guarantees, please 
       consider using tmpfiles.d(5).


RuntimeDirectoryMode=

       Specifies the access mode of the directories specified in 
       RuntimeDirectory= as an octal number. Defaults to 0755. See "Permissions" 
       in path_resolution(7) for a discussion of the meaning of permission bits.

Yani, bu kaldıraç, bu hile yapmak gerekir:

[Unit]
Description=Startup Thing

[Service]
Type=oneshot
ExecStart=/usr/bin/python3 -u /opt/thing/doStartup
WorkingDirectory=/opt/thing
StandardOutput=journal
User=thingUser
# Make sure the /run/thing directory exists
PermissionsStartOnly=true
RuntimeDirectory=thing
RuntimeDirectoryMode=0777

[Install]
WantedBy=multi-user.target
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.