summaryrefslogtreecommitdiffstats
path: root/meta/classes/rootfs-postcommands.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/rootfs-postcommands.bbclass')
-rw-r--r--meta/classes/rootfs-postcommands.bbclass11
1 files changed, 0 insertions, 11 deletions
diff --git a/meta/classes/rootfs-postcommands.bbclass b/meta/classes/rootfs-postcommands.bbclass
index 221869e04c..9d4d95e994 100644
--- a/meta/classes/rootfs-postcommands.bbclass
+++ b/meta/classes/rootfs-postcommands.bbclass
@@ -36,11 +36,6 @@ ROOTFS_POSTPROCESS_COMMAND += '${@bb.utils.contains("DISTRO_FEATURES", "systemd"
36 36
37ROOTFS_POSTPROCESS_COMMAND += 'empty_var_volatile;' 37ROOTFS_POSTPROCESS_COMMAND += 'empty_var_volatile;'
38 38
39# Disable DNS lookups, the SSH_DISABLE_DNS_LOOKUP can be overridden to allow
40# distros to choose not to take this change
41SSH_DISABLE_DNS_LOOKUP ?= " ssh_disable_dns_lookup ; "
42ROOTFS_POSTPROCESS_COMMAND_append_qemuall = "${SSH_DISABLE_DNS_LOOKUP}"
43
44# Sort the user and group entries in /etc by ID in order to make the content 39# Sort the user and group entries in /etc by ID in order to make the content
45# deterministic. Package installs are not deterministic, causing the ordering 40# deterministic. Package installs are not deterministic, causing the ordering
46# of entries to change between builds. In case that this isn't desired, 41# of entries to change between builds. In case that this isn't desired,
@@ -171,12 +166,6 @@ ssh_allow_empty_password () {
171 fi 166 fi
172} 167}
173 168
174ssh_disable_dns_lookup () {
175 if [ -e ${IMAGE_ROOTFS}${sysconfdir}/ssh/sshd_config ]; then
176 sed -i -e 's:#UseDNS yes:UseDNS no:' ${IMAGE_ROOTFS}${sysconfdir}/ssh/sshd_config
177 fi
178}
179
180python sort_passwd () { 169python sort_passwd () {
181 import rootfspostcommands 170 import rootfspostcommands
182 rootfspostcommands.sort_passwd(d.expand('${IMAGE_ROOTFS}${sysconfdir}')) 171 rootfspostcommands.sort_passwd(d.expand('${IMAGE_ROOTFS}${sysconfdir}'))