文件操作 - ctime.rb
返回文件管理
返回主菜单
删除本文件
文件: /opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/type/file/ctime.rb
编辑文件内容
# frozen_string_literal: true module Puppet Puppet::Type.type(:file).newproperty(:ctime) do desc "A read-only state to check the file ctime. On most modern \*nix-like systems, this is the time of the most recent change to the owner, group, permissions, or content of the file." def retrieve current_value = :absent stat = @resource.stat if stat current_value = stat.ctime end current_value.to_s end validate do |_val| fail "ctime is read-only" end end end
修改文件时间
将文件时间修改为当前时间的前一年
删除文件