Changeset 220
- Timestamp:
- 03/01/07 12:06:04 (2 years ago)
- Files:
-
- trunk/webmin/lbs_common/lang/en (modified) (1 diff)
- trunk/webmin/lbs_common/lang/fr (modified) (1 diff)
- trunk/webmin/lbs_common/lbs_common.pl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/webmin/lbs_common/lang/en
r131 r220 156 156 err_cantlink=Unable to link <tt>$1</tt> with <tt>$2</tt> . 157 157 err_gcr_not_running=The 'getClientResponse' or 'lrsd' daemon is not running. You probably have a license problem. Check that your licenses are correct <a href="/lbs/license.cgi">here</a> or restart the LRS service by clicking <a href="/lbs/restart.cgi">here</a>. 158 err_space_low=Warning ! Available space in the /vardisk is low. You should free some space or some LRS services may fail.158 err_space_low=Warning ! Available space in the $1 disk is low. You should free some space or some LRS services may fail. 159 159 160 160 index_title=LRS : Control Center trunk/webmin/lbs_common/lang/fr
r131 r220 154 154 err_cantlink=Impossible détablir un lien <tt>$1</tt> avec <tt>$2</tt> . 155 155 err_gcr_not_running=Le service 'getClientResponse' ou 'lrsd' ne tourne pas. Vous avez probablement un problème de licence. Vérifiez la validité de votre licence <a href="/lbs/license.cgi">ici</a> ou relancez le service LRS en cliquant <a href="/lbs/restart.cgi">ici</a>. 156 err_space_low=Attention ! L'espace disponible dans /varest bas. Vous devriez libérer de l'espace ou certains services LRS pourraient mal fonctionner.156 err_space_low=Attention ! L'espace disponible dans $1 est bas. Vous devriez libérer de l'espace ou certains services LRS pourraient mal fonctionner. 157 157 158 158 index_title=LRS : Centre de Contrôle trunk/webmin/lbs_common/lbs_common.pl
r194 r220 1140 1140 1141 1141 # 1142 # Check if there's at least 100MB in /var 1142 # Check if there's at least 100MB in /var and 1GB in /tftpboot 1143 1143 # 1144 1144 sub checkforspace () { … … 1147 1147 { 1148 1148 print "<font size='+2' color='red'><br>"; 1149 print $text{'err_space_low'}; 1149 print text('err_space_low', "/var"); 1150 print "<br><br></font>"; 1151 } 1152 1153 $run = `df -Pm /tftpboot|tail -1|awk '{print \$4}'`; 1154 if ($run < 1024) 1155 { 1156 print "<font size='+2' color='red'><br>"; 1157 print text('err_space_low', "/tftpboot"); 1150 1158 print "<br><br></font>"; 1151 1159 }
