[ Index ] |
PHP Cross Reference of Unnamed Project |
[Summary view] [Print] [Text view]
1 #!/bin/bash 2 3 ## $Id: update-secu.sh 7061 2012-04-02 09:22:45Z dbo $ ## 4 # 5 ##### Retourne si une maj de sécurité Débian est nécessaire ##### 6 7 if [ "$1" = "--help" -o "$1" = "-h" ] 8 then 9 echo "Retourne si une maj de sécurité est à faire" 10 echo "Usage : aucune option" 11 exit 12 fi 13 14 # Remplacé dans la crontab 15 # apt-get update 16 17 MAJ=`apt-get -s dist-upgrade 2>/dev/null | grep 'Debian-Security'` 18 if [ "$?" = "0" ] 19 then 20 echo "maj a faire" 21 echo "0" 22 exit 0 23 else 24 echo "Aucune maj à faire" 25 echo "1" 26 exit 1 27 fi 28
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Tue Mar 17 22:47:18 2015 | Cross-referenced by PHPXref 0.7.1 |