2012-06-21 10 views
11

私はchroot jailをサポートするためにbindオプション(mount 8参照)でマウントリソースを使用する必要がある500個のLinuxボックスのクラスタを持っています。起動後にマウントポイントを強制し、維持する必要があります。私はこの状態を人形で説明する方法が不明です。それはこれのようなものですか?パペット - バインド付きマウント

mount { "/gpfs20/home": 
    ensure => mounted, 
    name => "/chroot/centos5/home", 
    fstype => "none", 
    options => "(rw,bind)", 
} 

TIA - それがこのように行われているレコードのチャールズ

+2

あなたがサーバー障害またはUnix&Linux上でこれを掲示する方が良いだろうStackExchangeサイト? – GrandMasterFlush

答えて

14

mount { '/chroot/centos5/home': 
    ensure => mounted, 
    device => '/gpfs20/home', 
    fstype => 'none', 
    options => 'rw,bind', 
} 

〜チャールズ〜