summaryrefslogtreecommitdiffstats
path: root/templates/RHEL7.services
blob: 8874a02d79c27647dba8b70463973b933016d18b (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
nfslock
EOF

chkconfig rhnsd off

echo "Turn on some services..."

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