summaryrefslogtreecommitdiffstats
path: root/templates/RHEL7.services
blob: 36908f08ae7b112f1247992cb7207dd432ecb123 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
echo "Turn off some services..."

while read s ; do
      systemctl disable "${s}.service"
done <<EOF
atd
avahi-daemon
EOF

chkconfig rhnsd off

echo "Turn on some services..."

while read s ; do
      systemctl enable "${s}.service"
done <<EOF
chronyd
multipathd
EOF