11 lines
247 B
Bash
Executable File
11 lines
247 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$1" == "configure" ]; then
|
|
chown root:root /etc/tupper.conf
|
|
chmod 600 /etc/tupper.conf
|
|
chown root:root /etc/cron.daily/tupper
|
|
chmod 755 /etc/cron.daily/tupper
|
|
chown root:root /usr/sbin/tupper
|
|
chmod 755 /usr/sbin/tupper
|
|
fi
|