Add Centos 7 image to CSIT.
[csit.git] / resources / tools / disk-image-builder / centos / scripts-remote / cleanup.sh
1 #!/bin/sh -e
2
3 # Copyright (c) 2016 Cisco and/or its affiliates.
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at:
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 echo "********** CLEANING UP **********"
17
18 # Clean up host keys only if we're using cloud-init
19 # (which will generate new keys upon next boot). This
20 # currently applies to Qemu build only.
21
22 if dpkg -s cloud-init > /dev/null 2>&1
23 then
24   rm -f /etc/ssh/ssh_host_*
25 fi
26
27 # Remove root's password, old resolv.conf and DHCP lease
28 passwd -d root
29 passwd -l root
30 rm -f /etc/resolv.conf
31 pkill dhclient
32 rm -f /var/lib/dhcp/*leases
33
34 echo "********** SCHEDULING SHUTDOWN IN 1 MINUTE **********"
35 sync
36 shutdown -h +1
37 exit