run-parts(8) ユーティリティの目的

run-parts(8) ユーティリティの目的

少なくともDebianベースのシステムにはrun-partsユーティリティがありますツールさまざまなスクリプトで使用されるパッケージです。たとえば、/etc/X11/Xsessionはディレクトリ内のすべての実行可能ファイルを実行します。オプションまたはユーティリティfindで使用できますが、実行中のコンポーネントが必要なのはなぜですか?また、実行可能ファイルと見なされるものは何ですか?ファイル権限だけを確認するのではないようです。-permtestrun-parts

# run-parts --list --lsbsysinit /etc/X11/Xsession.d | tail -1
/etc/X11/Xsession.d/90x11-common_ssh-agent
# ls -l /etc/X11/Xsession.d/90x11-common_ssh-agent
-rw-r--r-- 1 root root 629 2010-11-02 23:17 /etc/X11/Xsession.d/90x11-common_ssh-agent
# head /etc/X11/Xsession.d/90x11-common_ssh-agent
# $Id: 90x11-common_ssh-agent 305 2005-07-03 18:51:43Z dnusinow $

# This file is sourced by Xsession(5), not executed.

STARTSSH=
SSHAGENT=/usr/bin/ssh-agent
SSHAGENTARGS=

if has_option use-ssh-agent; then
  if [ -x "$SSHAGENT" ] && [ -z "$SSH_AUTH_SOCK" ] \
# 

答え1

find代わりに使用できますrun-parts。どちらが良いかを知る方法はありません。しかし、私の考えでは、run-partsより短く(より少ないタイピング)使用してスクリプトをより保守しやすくするようです。例は次のとおりです/etc/crontab

# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.

SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# m h dom mon dow user  command
17 *    * * *   root    cd / && run-parts --report /etc/cron.hourly
25 6    * * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6    * * 7   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6    1 * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )

debianutils2番目の質問の場合は、ソースコードで答えを見つけることができます。ファイルのrun-parts.c198行目:

/* Execute a file */                                                            
void run_part(char *progname)                                                   
{ 
     ....
     args[0] = progname;                                                         
     execv(progname, args);                                                      
     error("failed to exec %s: %s", progname, strerror(errno));                  
     exit(1);
     ....
}

システムコールをrun-parts使用して表示できます。execvしたがって、ファイルがバイナリ実行可能ファイルではないかInterpreter scriptexecv

ノート

  • 何ですかInterpreter script

man execve、部分からInterpreter scripts

Interpreter scripts
       An  interpreter  script  is  a  text  file  that has execute permission
       enabled and whose first line is of the form:

           #! interpreter [optional-arg]

       The interpreter must be a valid pathname for an executable which is not
       itself  a  script.   If  the filename argument of execve() specifies an
       interpreter script, then interpreter will be invoked with the following
       arguments:

           interpreter [optional-arg] filename arg...

       where arg...  is the series of words pointed to by the argv argument of
       execve().

       For portable use, optional-arg should either be absent, or be specified
       as  a  single word (i.e., it should not contain white space); see NOTES
       below.
  • debianutilsのソースコードを見ることができますここ

答え2

実行されるファイルはrun-partsかなりよく文書化されています。実行可能であるという事実に加えて、次のマニュアルページスニペットはこれらの要件を説明します。

If  neither  the --lsbsysinit option nor the --regex option is given then the
names must consist entirely of ASCII upper- and lower-case letters, ASCII digits,
ASCII underscores, and ASCII minus-hyphens.

If the --lsbsysinit option is given, then the names must not end in .dpkg-old  or
.dpkg-dist or .dpkg-new or .dpkg-tmp, and must belong to one or more  of  the 
following  namespaces:  the  LANANA-assigned  namespace  (^[a-z0-9]+$); the LSB
hierarchical and reserved namespaces (^_?([a-z0-9_.]+-)+[a-z0-9]+$); and the
Debian cron script namespace (^[a-zA-Z0-9_-]+$)

多くのスクリプトがそのパッケージに構成ファイルとしてリストされているため、この--lsbsysinitオプションを使用すると、スクリプトの実行に特に役立ちます。/etc拡張子を持つファイルが生成される一般的な状況dpkg-*は、インストールされているバージョンが変更され、dpkg新しいバージョンをインストールしようとするときです。dpkgユーザーが選択しなかったバージョンは通常同じディレクトリに保存されます。を使用することは、run-partsこれらの拡張や他の拡張が実行されるべきではないことを防ぐための良い標準的な方法です。開発者がスクリプトにこれらのエラーの1つを含めることを忘れたため、エラーが発生する可能性が低くなります。

それ以外の場合でも、--lsbsysinit書き込む必要があるコードの量を減らし、システム全体で使用すると安定性を向上させるのに役立つコマンドです。しかし、必ずしもそうではありません。find ... -executable -exec {} ;a またはそれに似たものに置き換える方が簡単だからです。

答え3

Why is run-parts needed while one could use find 
with -perm option or test utility?

これはただ意図的に設計されたものです。マニュアルページに示すように、run-partsさまざまなオプションがあります。すべてがシェルに書き込まれます。

[編集する]

ハッカー攻撃を防ぐためにCとして実装することもできます。

答え4

質問のタイトル(からman run-parts)に直接移動します。

run scripts or programs in a directory

    run-parts  runs  all  the  executable files named within constraints described
    below, found in directory directory.  Other files and directories are silently ignored.

タスクの場合、cron特定のスケジュールに従ってディレクトリでスクリプトセットを実行する簡単な方法を提供します。単一のコマンドを使用してスクリプトセットを手動で実行したい場合も同様です。

ivanleoncz@ilex: /tmp $ ll scripts/
total 12
-rwxrw-r-- 1 ivanleoncz ivanleoncz 27 Jun 15 18:29 script_1*
-rwxrw-r-- 1 ivanleoncz ivanleoncz 27 Jun 15 18:29 script_2*
-rwxrw-r-- 1 ivanleoncz ivanleoncz 27 Jun 15 18:30 script_3*

ivanleoncz@ilex: /tmp $ cat scripts/script_1
#!/bin/bash
echo "I'm $0."

ivanleoncz@ilex: /tmp $ cat scripts/script_2
#!/bin/bash
echo "I'm $0."

ivanleoncz@ilex: /tmp $ cat scripts/script_3
#!/bin/bash
echo "I'm $0."

ivanleoncz@ilex: /tmp $ run-parts scripts
I'm scripts/script_1.
I'm scripts/script_2.
I'm scripts/script_3.

ivanleoncz@ilex: /tmp $ run-parts --report scripts
scripts/script_1:
I'm scripts/script_1.
scripts/script_2:
I'm scripts/script_2.
scripts/script_3:
I'm scripts/script_3.

スクリプトには次の条件が必要です(一部はシェルスクリプトで一般的です)。

  1. UGO(User|Group|Other)実行権限は、ユーザーが適切な場所によって異なります。
  2. Shebangはスクリプトの上部にあり、実行時にどのシェルが使用されるかを教えてくれます。
  3. ファイル拡張子はありません。奇妙ですが、そうです。必要です。

関連情報