View | Details | Raw Unified | Return to bug 196432 | Differences between
and this patch

Collapse All | Expand All

(-)Keywords/sample.ucl (-2 / +2 lines)
Lines 21-28 post-install: <<EOD Link Here
21
  *) sample_file="%D/%@" ;;
21
  *) sample_file="%D/%@" ;;
22
  esac
22
  esac
23
  target_file="${sample_file%.sample}"
23
  target_file="${sample_file%.sample}"
24
  if ! [ -f "${target_file}" ]; then
24
  if ! [ -e "${target_file}" ]; then
25
    /bin/cp -p "${sample_file}" "${target_file}" && \
25
    /bin/cp -Rp "${sample_file}" "${target_file}" && \
26
      /bin/chmod u+w "${target_file}"
26
      /bin/chmod u+w "${target_file}"
27
  fi
27
  fi
28
EOD
28
EOD

Return to bug 196432