Reportsntpprerm

Status: Accepted

Colis script


begin
  true ;
  if [ [ arg 1; '='; 'remove'; ']' ] then rm [ '-f'; '/var/lib/sntp/kod' ] fi
end

Original Shell script

#!/bin/sh

set -e

if [ "$1" = "remove" ]; then
	rm -f /var/lib/sntp/kod
fi