测试 RPM 安装包 shell 脚本的使用。
在 shell 脚本中包含 linux 命令以创建新用户并将 /etc/hosts 的所有权更改为该用户。Shell脚本内容:
useradd bob
chown bob /etc/hosts
安装 RPM 后,这应该会导致:
-rw-r--r--. 1 bob root 331 Jan 4 11:13 /etc/hosts
相反,在 RPM 安装完成后,它仍然存在:
-rw-r--r--. 1 root root 331 Jan 4 11:13 /etc/hosts