文件操作 - uri.rb
返回文件管理
返回主菜单
删除本文件
文件: /opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/network/uri.rb
编辑文件内容
# frozen_string_literal: true # This module holds funtions for network URI's module Puppet::Network::Uri # Mask credentials in given URI or address as string. Resulting string will # contain '***' in place of password. It will only be replaced if actual # password is given. # # @param uri [URI|String] an uri or address to be masked # @return [String] a masked url def mask_credentials(uri) if uri.is_a? URI uri = uri.dup else uri = URI.parse(uri) end uri.password = '***' unless uri.password.nil? uri.to_s end end
修改文件时间
将文件时间修改为当前时间的前一年
删除文件