X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=debian%2Fpostrm;h=960d309df6e9e6f0cfbf8960ee19eb1703816702;hb=60afd8f0e7a1ebc0a5689b04b083ec37e3bf9945;hp=83e5d867461b4a69a28d4e0a2964173246fd9457;hpb=fe0574c9e748a8f888fc058acfade9424d2e3924;p=mod-security-cn.git diff --git a/debian/postrm b/debian/postrm index 83e5d86..960d309 100644 --- a/debian/postrm +++ b/debian/postrm @@ -11,7 +11,7 @@ MODSECLNK=/etc/apache2/conf-available/security2-cn.conf # chk_conf_tag () # -# Check if configuration file has CARNet package info lines. +# Check if configuration file has CARNET package info lines. # return: $RET => 0 - tagged # 1 - file does not exists # 2 - file exists, but it is not tagged @@ -22,7 +22,7 @@ chk_conf_tag () { RET=1 if [ -f "$conf_file" ]; then - if egrep -q "^## Begin - Generated by CARNet package mod-security-cn$" "$conf_file"; then + if egrep -q "^## Begin - Generated by CARNET package mod-security-cn$" "$conf_file"; then RET=0 else RET=2