文件操作 - openwrt.rb
返回文件管理
返回主菜单
删除本文件
文件: /opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/provider/service/openwrt.rb
编辑文件内容
# frozen_string_literal: true Puppet::Type.type(:service).provide :openwrt, :parent => :init, :source => :init do desc <<-EOT Support for OpenWrt flavored init scripts. Uses /etc/init.d/service_name enable, disable, and enabled. EOT defaultfor 'os.name' => :openwrt confine 'os.name' => :openwrt has_feature :enableable def self.defpath ["/etc/init.d"] end def enable system(initscript, 'enable') end def disable system(initscript, 'disable') end def enabled? # We can't define the "command" for the init script, so we call system? system(initscript, 'enabled') ? (return :true) : (return :false) end # Purposely leave blank so we fail back to ps based status detection # As OpenWrt init script do not have status commands def statuscmd end end
修改文件时间
将文件时间修改为当前时间的前一年
删除文件