-
-
Save eegilbert/ca59c2670cac83b44542dd890521ba89 to your computer and use it in GitHub Desktop.
Ignition problem on coreos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
systemd: | |
units: | |
- name: etcd2.service | |
enable: true | |
dropins: | |
- name: 40-etcd-cluster.conf | |
contents: | | |
[Service] | |
Environment="ETCD_NAME={{.etcd_name}}" | |
Environment="ETCD_ADVERTISE_CLIENT_URLS=http://{{.domain_name}}:2379" | |
Environment="ETCD_INITIAL_ADVERTISE_PEER_URLS=http://{{.domain_name}}:2380" | |
Environment="ETCD_LISTEN_CLIENT_URLS=http://0.0.0.0:2379" | |
Environment="ETCD_LISTEN_PEER_URLS=http://{{.domain_name}}:2380" | |
Environment="ETCD_INITIAL_CLUSTER={{.etcd_initial_cluster}}" | |
Environment="ETCD_STRICT_RECONFIG_CHECK=true" | |
- name: flanneld.service | |
dropins: | |
- name: 40-ExecStartPre-symlink.conf | |
contents: | | |
[Service] | |
EnvironmentFile=-/etc/flannel/options.env | |
ExecStartPre=/opt/init-flannel | |
- name: docker.service | |
dropins: | |
- name: 40-flannel.conf | |
contents: | | |
[Unit] | |
Requires=flanneld.service | |
After=flanneld.service | |
- name: [email protected] | |
contents: | | |
[Unit] | |
Description=Fetch Kubernetes certificate assets | |
Requires=network-online.target | |
After=network-online.target | |
[Service] | |
ExecStartPre=/usr/bin/mkdir -p /etc/kubernetes/ssl | |
ExecStart=/usr/bin/bash -c "[ -f /etc/kubernetes/ssl/%i ] || curl {{.k8s_cert_endpoint}}/tls/%i -o /etc/kubernetes/ssl/%i" | |
- name: k8s-assets.target | |
contents: | | |
[Unit] | |
Description=Load Kubernetes Assets | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
- name: kubelet.service | |
enable: true | |
contents: | | |
[Unit] | |
Description=Kubelet via Hyperkube ACI | |
Wants=flanneld.service | |
Requires=k8s-assets.target | |
After=k8s-assets.target | |
[Service] | |
Environment="RKT_OPTS=--volume=resolv,kind=host,source=/etc/resolv.conf --mount volume=resolv,target=/etc/resolv.conf --volume var-log,kind=host,source=/var/log --mount volume=var-log,target=/var/log" | |
Environment=KUBELET_VERSION=v1.3.4_coreos.0 | |
ExecStartPre=/usr/bin/mkdir -p /etc/kubernetes/manifests | |
ExecStartPre=/usr/bin/systemctl is-active flanneld.service | |
ExecStart=/usr/lib/coreos/kubelet-wrapper \ | |
--api-servers=http://127.0.0.1:8080 \ | |
--register-schedulable=true \ | |
--allow-privileged=true \ | |
--config=/etc/kubernetes/manifests \ | |
--hostname-override={{.domain_name}} \ | |
--cluster_dns={{.k8s_dns_service_ip}} \ | |
--cluster_domain=cluster.local | |
Restart=always | |
RestartSec=10 | |
[Install] | |
WantedBy=multi-user.target | |
- name: k8s-addons.service | |
enable: true | |
contents: | | |
[Unit] | |
Description=Kubernetes Addons | |
[Service] | |
Type=oneshot | |
ExecStart=/opt/k8s-addons | |
[Install] | |
WantedBy=multi-user.target | |
storage: | |
{{ if index . "pxe" }} | |
disks: | |
- device: /dev/sda | |
wipe_table: true | |
partitions: | |
- label: ROOT | |
filesystems: | |
- name: rootfs | |
mount: | |
device: "/dev/sda1" | |
format: "ext4" | |
create: | |
force: true | |
options: | |
- "-LROOT" | |
{{else}} | |
filesystems: | |
- name: rootfs | |
mount: | |
# device: "/dev/disk/by-label/ROOT" | |
device: "/dev/sda1" | |
format: "ext4" | |
{{end}} | |
files: | |
- path: /etc/kubernetes/manifests/kube-proxy.yaml | |
filesystem: rootfs | |
contents: | |
inline: | | |
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: kube-proxy | |
namespace: kube-system | |
spec: | |
hostNetwork: true | |
containers: | |
- name: kube-proxy | |
image: quay.io/coreos/hyperkube:v1.3.4_coreos.0 | |
command: | |
- /hyperkube | |
- proxy | |
- --master=http://127.0.0.1:8080 | |
securityContext: | |
privileged: true | |
volumeMounts: | |
- mountPath: /etc/ssl/certs | |
name: ssl-certs-host | |
readOnly: true | |
volumes: | |
- hostPath: | |
path: /usr/share/ca-certificates | |
name: ssl-certs-host | |
- path: /etc/kubernetes/manifests/kube-apiserver.yaml | |
filesystem: rootfs | |
contents: | |
inline: | | |
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: kube-apiserver | |
namespace: kube-system | |
spec: | |
hostNetwork: true | |
containers: | |
- name: kube-apiserver | |
image: quay.io/coreos/hyperkube:v1.3.4_coreos.0 | |
command: | |
- /hyperkube | |
- apiserver | |
- --bind-address=0.0.0.0 | |
- --etcd-servers={{.k8s_etcd_endpoints}} | |
- --allow-privileged=true | |
- --service-cluster-ip-range={{.k8s_service_ip_range}} | |
- --secure-port=443 | |
- --admission-control=NamespaceLifecycle,LimitRanger,ServiceAccount,ResourceQuota | |
- --tls-cert-file=/etc/kubernetes/ssl/apiserver.pem | |
- --tls-private-key-file=/etc/kubernetes/ssl/apiserver-key.pem | |
- --client-ca-file=/etc/kubernetes/ssl/ca.pem | |
- --service-account-key-file=/etc/kubernetes/ssl/apiserver-key.pem | |
- --runtime-config=extensions/v1beta1/networkpolicies=true | |
livenessProbe: | |
httpGet: | |
host: 127.0.0.1 | |
port: 8080 | |
path: /healthz | |
initialDelaySeconds: 15 | |
timeoutSeconds: 15 | |
ports: | |
- containerPort: 443 | |
hostPort: 443 | |
name: https | |
- containerPort: 8080 | |
hostPort: 8080 | |
name: local | |
volumeMounts: | |
- mountPath: /etc/kubernetes/ssl | |
name: ssl-certs-kubernetes | |
readOnly: true | |
- mountPath: /etc/ssl/certs | |
name: ssl-certs-host | |
readOnly: true | |
volumes: | |
- hostPath: | |
path: /etc/kubernetes/ssl | |
name: ssl-certs-kubernetes | |
- hostPath: | |
path: /usr/share/ca-certificates | |
name: ssl-certs-host | |
- path: /etc/flannel/options.env | |
filesystem: rootfs | |
contents: | |
inline: | | |
FLANNELD_ETCD_ENDPOINTS={{.k8s_etcd_endpoints}} | |
- path: /etc/kubernetes/manifests/kube-controller-manager.yaml | |
filesystem: rootfs | |
contents: | |
inline: | | |
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: kube-controller-manager | |
namespace: kube-system | |
spec: | |
containers: | |
- name: kube-controller-manager | |
image: quay.io/coreos/hyperkube:v1.3.4_coreos.0 | |
command: | |
- /hyperkube | |
- controller-manager | |
- --master=http://127.0.0.1:8080 | |
- --leader-elect=true | |
- --service-account-private-key-file=/etc/kubernetes/ssl/apiserver-key.pem | |
- --root-ca-file=/etc/kubernetes/ssl/ca.pem | |
resources: | |
requests: | |
cpu: 200m | |
livenessProbe: | |
httpGet: | |
host: 127.0.0.1 | |
path: /healthz | |
port: 10252 | |
initialDelaySeconds: 15 | |
timeoutSeconds: 15 | |
volumeMounts: | |
- mountPath: /etc/kubernetes/ssl | |
name: ssl-certs-kubernetes | |
readOnly: true | |
- mountPath: /etc/ssl/certs | |
name: ssl-certs-host | |
readOnly: true | |
hostNetwork: true | |
volumes: | |
- hostPath: | |
path: /etc/kubernetes/ssl | |
name: ssl-certs-kubernetes | |
- hostPath: | |
path: /usr/share/ca-certificates | |
name: ssl-certs-host | |
- path: /etc/kubernetes/manifests/kube-scheduler.yaml | |
filesystem: rootfs | |
contents: | |
inline: | | |
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: kube-scheduler | |
namespace: kube-system | |
spec: | |
hostNetwork: true | |
containers: | |
- name: kube-scheduler | |
image: quay.io/coreos/hyperkube:v1.3.4_coreos.0 | |
command: | |
- /hyperkube | |
- scheduler | |
- --master=http://127.0.0.1:8080 | |
- --leader-elect=true | |
resources: | |
requests: | |
cpu: 100m | |
livenessProbe: | |
httpGet: | |
host: 127.0.0.1 | |
path: /healthz | |
port: 10251 | |
initialDelaySeconds: 15 | |
timeoutSeconds: 15 | |
- path: /srv/kubernetes/manifests/kube-dns-rc.json | |
filesystem: rootfs | |
contents: | |
inline: | | |
{ | |
"apiVersion": "v1", | |
"kind": "ReplicationController", | |
"metadata": { | |
"labels": { | |
"k8s-app": "kube-dns", | |
"kubernetes.io/cluster-service": "true", | |
"version": "v15" | |
}, | |
"name": "kube-dns-v15", | |
"namespace": "kube-system" | |
}, | |
"spec": { | |
"replicas": 1, | |
"selector": { | |
"k8s-app": "kube-dns", | |
"version": "v15" | |
}, | |
"template": { | |
"metadata": { | |
"labels": { | |
"k8s-app": "kube-dns", | |
"kubernetes.io/cluster-service": "true", | |
"version": "v15" | |
} | |
}, | |
"spec": { | |
"containers": [ | |
{ | |
"args": [ | |
"--domain=cluster.local.", | |
"--dns-port=10053" | |
], | |
"image": "gcr.io/google_containers/kubedns-amd64:1.3", | |
"livenessProbe": { | |
"failureThreshold": 5, | |
"httpGet": { | |
"path": "/healthz", | |
"port": 8080, | |
"scheme": "HTTP" | |
}, | |
"initialDelaySeconds": 60, | |
"successThreshold": 1, | |
"timeoutSeconds": 5 | |
}, | |
"name": "kubedns", | |
"ports": [ | |
{ | |
"containerPort": 10053, | |
"name": "dns-local", | |
"protocol": "UDP" | |
}, | |
{ | |
"containerPort": 10053, | |
"name": "dns-tcp-local", | |
"protocol": "TCP" | |
} | |
], | |
"readinessProbe": { | |
"httpGet": { | |
"path": "/readiness", | |
"port": 8081, | |
"scheme": "HTTP" | |
}, | |
"initialDelaySeconds": 30, | |
"timeoutSeconds": 5 | |
}, | |
"resources": { | |
"limits": { | |
"cpu": "100m", | |
"memory": "200Mi" | |
}, | |
"requests": { | |
"cpu": "100m", | |
"memory": "50Mi" | |
} | |
} | |
}, | |
{ | |
"args": [ | |
"--cache-size=1000", | |
"--no-resolv", | |
"--server=127.0.0.1#10053" | |
], | |
"image": "gcr.io/google_containers/kube-dnsmasq-amd64:1.3", | |
"name": "dnsmasq", | |
"ports": [ | |
{ | |
"containerPort": 53, | |
"name": "dns", | |
"protocol": "UDP" | |
}, | |
{ | |
"containerPort": 53, | |
"name": "dns-tcp", | |
"protocol": "TCP" | |
} | |
] | |
}, | |
{ | |
"args": [ | |
"-cmd=nslookup kubernetes.default.svc.cluster.local 127.0.0.1 >/dev/null", | |
"-port=8080", | |
"-quiet" | |
], | |
"image": "gcr.io/google_containers/exechealthz-amd64:1.0", | |
"name": "healthz", | |
"ports": [ | |
{ | |
"containerPort": 8080, | |
"protocol": "TCP" | |
} | |
], | |
"resources": { | |
"limits": { | |
"cpu": "10m", | |
"memory": "20Mi" | |
}, | |
"requests": { | |
"cpu": "10m", | |
"memory": "20Mi" | |
} | |
} | |
} | |
], | |
"dnsPolicy": "Default" | |
} | |
} | |
} | |
} | |
- path: /srv/kubernetes/manifests/kube-dns-svc.json | |
filesystem: rootfs | |
contents: | |
inline: | | |
{ | |
"apiVersion": "v1", | |
"kind": "Service", | |
"metadata": { | |
"labels": { | |
"k8s-app": "kube-dns", | |
"kubernetes.io/cluster-service": "true", | |
"kubernetes.io/name": "KubeDNS" | |
}, | |
"name": "kube-dns", | |
"namespace": "kube-system" | |
}, | |
"spec": { | |
"clusterIP": "{{.k8s_dns_service_ip}}", | |
"ports": [ | |
{ | |
"name": "dns", | |
"port": 53, | |
"protocol": "UDP" | |
}, | |
{ | |
"name": "dns-tcp", | |
"port": 53, | |
"protocol": "TCP" | |
} | |
], | |
"selector": { | |
"k8s-app": "kube-dns" | |
} | |
} | |
} | |
- path: /srv/kubernetes/manifests/heapster-deployment.json | |
filesystem: rootfs | |
contents: | |
inline: | | |
{ | |
"apiVersion": "extensions/v1beta1", | |
"kind": "Deployment", | |
"metadata": { | |
"labels": { | |
"k8s-app": "heapster", | |
"kubernetes.io/cluster-service": "true", | |
"version": "v1.1.0" | |
}, | |
"name": "heapster-v1.1.0", | |
"namespace": "kube-system" | |
}, | |
"spec": { | |
"replicas": 1, | |
"selector": { | |
"matchLabels": { | |
"k8s-app": "heapster", | |
"version": "v1.1.0" | |
} | |
}, | |
"template": { | |
"metadata": { | |
"labels": { | |
"k8s-app": "heapster", | |
"version": "v1.1.0" | |
} | |
}, | |
"spec": { | |
"containers": [ | |
{ | |
"command": [ | |
"/heapster", | |
"--source=kubernetes.summary_api:''" | |
], | |
"image": "gcr.io/google_containers/heapster:v1.1.0", | |
"name": "heapster", | |
"resources": { | |
"limits": { | |
"cpu": "100m", | |
"memory": "200Mi" | |
}, | |
"requests": { | |
"cpu": "100m", | |
"memory": "200Mi" | |
} | |
} | |
}, | |
{ | |
"command": [ | |
"/pod_nanny", | |
"--cpu=100m", | |
"--extra-cpu=0.5m", | |
"--memory=200Mi", | |
"--extra-memory=4Mi", | |
"--threshold=5", | |
"--deployment=heapster-v1.1.0", | |
"--container=heapster", | |
"--poll-period=300000", | |
"--estimator=exponential" | |
], | |
"env": [ | |
{ | |
"name": "MY_POD_NAME", | |
"valueFrom": { | |
"fieldRef": { | |
"fieldPath": "metadata.name" | |
} | |
} | |
}, | |
{ | |
"name": "MY_POD_NAMESPACE", | |
"valueFrom": { | |
"fieldRef": { | |
"fieldPath": "metadata.namespace" | |
} | |
} | |
} | |
], | |
"image": "gcr.io/google_containers/addon-resizer:1.3", | |
"name": "heapster-nanny", | |
"resources": { | |
"limits": { | |
"cpu": "50m", | |
"memory": "100Mi" | |
}, | |
"requests": { | |
"cpu": "50m", | |
"memory": "100Mi" | |
} | |
} | |
} | |
] | |
} | |
} | |
} | |
} | |
- path: /srv/kubernetes/manifests/heapster-svc.json | |
filesystem: rootfs | |
contents: | |
inline: | | |
{ | |
"apiVersion": "v1", | |
"kind": "Service", | |
"metadata": { | |
"labels": { | |
"kubernetes.io/cluster-service": "true", | |
"kubernetes.io/name": "Heapster" | |
}, | |
"name": "heapster", | |
"namespace": "kube-system" | |
}, | |
"spec": { | |
"ports": [ | |
{ | |
"port": 80, | |
"targetPort": 8082 | |
} | |
], | |
"selector": { | |
"k8s-app": "heapster" | |
} | |
} | |
} | |
- path: /srv/kubernetes/manifests/kube-dashboard-rc.json | |
filesystem: rootfs | |
contents: | |
inline: | | |
{ | |
"apiVersion": "v1", | |
"kind": "ReplicationController", | |
"metadata": { | |
"labels": { | |
"k8s-app": "kubernetes-dashboard", | |
"kubernetes.io/cluster-service": "true", | |
"version": "v1.1.0" | |
}, | |
"name": "kubernetes-dashboard-v1.1.0", | |
"namespace": "kube-system" | |
}, | |
"spec": { | |
"replicas": 1, | |
"selector": { | |
"k8s-app": "kubernetes-dashboard" | |
}, | |
"template": { | |
"metadata": { | |
"labels": { | |
"k8s-app": "kubernetes-dashboard", | |
"kubernetes.io/cluster-service": "true", | |
"version": "v1.1.0" | |
} | |
}, | |
"spec": { | |
"containers": [ | |
{ | |
"image": "gcr.io/google_containers/kubernetes-dashboard-amd64:v1.1.0", | |
"livenessProbe": { | |
"httpGet": { | |
"path": "/", | |
"port": 9090 | |
}, | |
"initialDelaySeconds": 30, | |
"timeoutSeconds": 30 | |
}, | |
"name": "kubernetes-dashboard", | |
"ports": [ | |
{ | |
"containerPort": 9090 | |
} | |
], | |
"resources": { | |
"limits": { | |
"cpu": "100m", | |
"memory": "50Mi" | |
}, | |
"requests": { | |
"cpu": "100m", | |
"memory": "50Mi" | |
} | |
} | |
} | |
] | |
} | |
} | |
} | |
} | |
- path: /srv/kubernetes/manifests/kube-dashboard-svc.json | |
filesystem: rootfs | |
contents: | |
inline: | | |
{ | |
"apiVersion": "v1", | |
"kind": "Service", | |
"metadata": { | |
"labels": { | |
"k8s-app": "kubernetes-dashboard", | |
"kubernetes.io/cluster-service": "true" | |
}, | |
"name": "kubernetes-dashboard", | |
"namespace": "kube-system" | |
}, | |
"spec": { | |
"ports": [ | |
{ | |
"port": 80, | |
"targetPort": 9090 | |
} | |
], | |
"selector": { | |
"k8s-app": "kubernetes-dashboard" | |
} | |
} | |
} | |
- path: /opt/init-flannel | |
filesystem: rootfs | |
mode: 0544 | |
contents: | |
inline: | | |
#!/bin/bash -ex | |
function init_flannel { | |
echo "Waiting for etcd..." | |
while true | |
do | |
IFS=',' read -ra ES <<< "{{.k8s_etcd_endpoints}}" | |
for ETCD in "${ES[@]}"; do | |
echo "Trying: $ETCD" | |
if [ -n "$(curl --silent "$ETCD/v2/machines")" ]; then | |
local ACTIVE_ETCD=$ETCD | |
break | |
fi | |
sleep 1 | |
done | |
if [ -n "$ACTIVE_ETCD" ]; then | |
break | |
fi | |
done | |
RES=$(curl --silent -X PUT -d "value={\"Network\":\"{{.k8s_pod_network}}\",\"Backend\":{\"Type\":\"vxlan\"}}" "$ACTIVE_ETCD/v2/keys/coreos.com/network/config?prevExist=false") | |
if [ -z "$(echo $RES | grep '"action":"create"')" ] && [ -z "$(echo $RES | grep 'Key already exists')" ]; then | |
echo "Unexpected error configuring flannel pod network: $RES" | |
fi | |
} | |
init_flannel | |
- path: /opt/k8s-addons | |
filesystem: rootfs | |
mode: 0544 | |
contents: | |
inline: | | |
#!/bin/bash -ex | |
echo "Waiting for Kubernetes API..." | |
until curl --silent "http://127.0.0.1:8080/version" | |
do | |
sleep 5 | |
done | |
echo "K8S: DNS addon" | |
curl --silent -H "Content-Type: application/json" -XPOST -d"$(cat /srv/kubernetes/manifests/kube-dns-rc.json)" "http://127.0.0.1:8080/api/v1/namespaces/kube-system/replicationcontrollers" > /dev/null | |
curl --silent -H "Content-Type: application/json" -XPOST -d"$(cat /srv/kubernetes/manifests/kube-dns-svc.json)" "http://127.0.0.1:8080/api/v1/namespaces/kube-system/services" > /dev/null | |
echo "K8S: Heapster addon" | |
curl --silent -H "Content-Type: application/json" -XPOST -d"$(cat /srv/kubernetes/manifests/heapster-deployment.json)" "http://127.0.0.1:8080/apis/extensions/v1beta1/namespaces/kube-system/deployments" | |
curl --silent -H "Content-Type: application/json" -XPOST -d"$(cat /srv/kubernetes/manifests/heapster-svc.json)" "http://127.0.0.1:8080/api/v1/namespaces/kube-system/services" | |
echo "K8S: Dashboard addon" | |
curl --silent -H "Content-Type: application/json" -XPOST -d"$(cat /srv/kubernetes/manifests/kube-dashboard-rc.json)" "http://127.0.0.1:8080/api/v1/namespaces/kube-system/replicationcontrollers" > /dev/null | |
curl --silent -H "Content-Type: application/json" -XPOST -d"$(cat /srv/kubernetes/manifests/kube-dashboard-svc.json)" "http://127.0.0.1:8080/api/v1/namespaces/kube-system/services" > /dev/null | |
{{ if index . "ssh_authorized_keys" }} | |
passwd: | |
users: | |
- name: core | |
ssh_authorized_keys: | |
{{ range $element := .ssh_authorized_keys }} | |
- {{$element}} | |
{{end}} | |
{{end}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"ignition":{"version":"2.0.0","config":{}},"storage":{"disks":[{"device":"/dev/sda","wipeTable":true,"partitions":[{"label":"ROOT","number":0,"size":0,"start":0}]}],"filesystems":[{"name":"rootfs","mount":{"device":"/dev/sda1","format":"ext4","create":{"force":true,"options":["-LROOT"]}}}],"files":[{"filesystem":"rootfs","path":"/etc/kubernetes/manifests/kube-proxy.yaml","contents":{"source":"data:,apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: kube-proxy | |
namespace: kube-system | |
spec: | |
hostNetwork: true | |
containers: | |
- name: kube-proxy | |
image: quay.io/coreos/hyperkube:v1.3.4_coreos.0 | |
command: | |
- /hyperkube | |
- proxy | |
- --master=http://127.0.0.1:8080 | |
securityContext: | |
privileged: true | |
volumeMounts: | |
- mountPath: /etc/ssl/certs | |
name: ssl-certs-host | |
readOnly: true | |
volumes: | |
- hostPath: | |
path: /usr/share/ca-certificates | |
name: ssl-certs-host | |
","verification":{}},"user":{},"group":{}},{"filesystem":"rootfs","path":"/etc/kubernetes/manifests/kube-apiserver.yaml","contents":{"source":"data:,apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: kube-apiserver | |
namespace: kube-system | |
spec: | |
hostNetwork: true | |
containers: | |
- name: kube-apiserver | |
image: quay.io/coreos/hyperkube:v1.3.4_coreos.0 | |
command: | |
- /hyperkube | |
- apiserver | |
- --bind-address=0.0.0.0 | |
- --etcd-servers=http://kube-master.lab1.tite.lan:2379 | |
- --allow-privileged=true | |
- --service-cluster-ip-range=10.3.0.0/24 | |
- --secure-port=443 | |
- --admission-control=NamespaceLifecycle,LimitRanger,ServiceAccount,ResourceQuota | |
- --tls-cert-file=/etc/kubernetes/ssl/apiserver.pem | |
- --tls-private-key-file=/etc/kubernetes/ssl/apiserver-key.pem | |
- --client-ca-file=/etc/kubernetes/ssl/ca.pem | |
- --service-account-key-file=/etc/kubernetes/ssl/apiserver-key.pem | |
- --runtime-config=extensions/v1beta1/networkpolicies=true | |
livenessProbe: | |
httpGet: | |
host: 127.0.0.1 | |
port: 8080 | |
path: /healthz | |
initialDelaySeconds: 15 | |
timeoutSeconds: 15 | |
ports: | |
- containerPort: 443 | |
hostPort: 443 | |
name: https | |
- containerPort: 8080 | |
hostPort: 8080 | |
name: local | |
volumeMounts: | |
- mountPath: /etc/kubernetes/ssl | |
name: ssl-certs-kubernetes | |
readOnly: true | |
- mountPath: /etc/ssl/certs | |
name: ssl-certs-host | |
readOnly: true | |
volumes: | |
- hostPath: | |
path: /etc/kubernetes/ssl | |
name: ssl-certs-kubernetes | |
- hostPath: | |
path: /usr/share/ca-certificates | |
name: ssl-certs-host | |
","verification":{}},"user":{},"group":{}},{"filesystem":"rootfs","path":"/etc/flannel/options.env","contents":{"source":"data:,FLANNELD_ETCD_ENDPOINTS=http://kube-master.lab1.tite.lan:2379 | |
","verification":{}},"user":{},"group":{}},{"filesystem":"rootfs","path":"/etc/kubernetes/manifests/kube-controller-manager.yaml","contents":{"source":"data:,apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: kube-controller-manager | |
namespace: kube-system | |
spec: | |
containers: | |
- name: kube-controller-manager | |
image: quay.io/coreos/hyperkube:v1.3.4_coreos.0 | |
command: | |
- /hyperkube | |
- controller-manager | |
- --master=http://127.0.0.1:8080 | |
- --leader-elect=true | |
- --service-account-private-key-file=/etc/kubernetes/ssl/apiserver-key.pem | |
- --root-ca-file=/etc/kubernetes/ssl/ca.pem | |
resources: | |
requests: | |
cpu: 200m | |
livenessProbe: | |
httpGet: | |
host: 127.0.0.1 | |
path: /healthz | |
port: 10252 | |
initialDelaySeconds: 15 | |
timeoutSeconds: 15 | |
volumeMounts: | |
- mountPath: /etc/kubernetes/ssl | |
name: ssl-certs-kubernetes | |
readOnly: true | |
- mountPath: /etc/ssl/certs | |
name: ssl-certs-host | |
readOnly: true | |
hostNetwork: true | |
volumes: | |
- hostPath: | |
path: /etc/kubernetes/ssl | |
name: ssl-certs-kubernetes | |
- hostPath: | |
path: /usr/share/ca-certificates | |
name: ssl-certs-host | |
","verification":{}},"user":{},"group":{}},{"filesystem":"rootfs","path":"/etc/kubernetes/manifests/kube-scheduler.yaml","contents":{"source":"data:,apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: kube-scheduler | |
namespace: kube-system | |
spec: | |
hostNetwork: true | |
containers: | |
- name: kube-scheduler | |
image: quay.io/coreos/hyperkube:v1.3.4_coreos.0 | |
command: | |
- /hyperkube | |
- scheduler | |
- --master=http://127.0.0.1:8080 | |
- --leader-elect=true | |
resources: | |
requests: | |
cpu: 100m | |
livenessProbe: | |
httpGet: | |
host: 127.0.0.1 | |
path: /healthz | |
port: 10251 | |
initialDelaySeconds: 15 | |
timeoutSeconds: 15 | |
","verification":{}},"user":{},"group":{}},{"filesystem":"rootfs","path":"/srv/kubernetes/manifests/kube-dns-rc.json","contents":{"source":"data:,{ | |
"apiVersion": "v1", | |
"kind": "ReplicationController", | |
"metadata": { | |
"labels": { | |
"k8s-app": "kube-dns", | |
"kubernetes.io/cluster-service": "true", | |
"version": "v15" | |
}, | |
"name": "kube-dns-v15", | |
"namespace": "kube-system" | |
}, | |
"spec": { | |
"replicas": 1, | |
"selector": { | |
"k8s-app": "kube-dns", | |
"version": "v15" | |
}, | |
"template": { | |
"metadata": { | |
"labels": { | |
"k8s-app": "kube-dns", | |
"kubernetes.io/cluster-service": "true", | |
"version": "v15" | |
} | |
}, | |
"spec": { | |
"containers": [ | |
{ | |
"args": [ | |
"--domain=cluster.local.", | |
"--dns-port=10053" | |
], | |
"image": "gcr.io/google_containers/kubedns-amd64:1.3", | |
"livenessProbe": { | |
"failureThreshold": 5, | |
"httpGet": { | |
"path": "/healthz", | |
"port": 8080, | |
"scheme": "HTTP" | |
}, | |
"initialDelaySeconds": 60, | |
"successThreshold": 1, | |
"timeoutSeconds": 5 | |
}, | |
"name": "kubedns", | |
"ports": [ | |
{ | |
"containerPort": 10053, | |
"name": "dns-local", | |
"protocol": "UDP" | |
}, | |
{ | |
"containerPort": 10053, | |
"name": "dns-tcp-local", | |
"protocol": "TCP" | |
} | |
], | |
"readinessProbe": { | |
"httpGet": { | |
"path": "/readiness", | |
"port": 8081, | |
"scheme": "HTTP" | |
}, | |
"initialDelaySeconds": 30, | |
"timeoutSeconds": 5 | |
}, | |
"resources": { | |
"limits": { | |
"cpu": "100m", | |
"memory": "200Mi" | |
}, | |
"requests": { | |
"cpu": "100m", | |
"memory": "50Mi" | |
} | |
} | |
}, | |
{ | |
"args": [ | |
"--cache-size=1000", | |
"--no-resolv", | |
"--server=127.0.0.1#10053" | |
], | |
"image": "gcr.io/google_containers/kube-dnsmasq-amd64:1.3", | |
"name": "dnsmasq", | |
"ports": [ | |
{ | |
"containerPort": 53, | |
"name": "dns", | |
"protocol": "UDP" | |
}, | |
{ | |
"containerPort": 53, | |
"name": "dns-tcp", | |
"protocol": "TCP" | |
} | |
] | |
}, | |
{ | |
"args": [ | |
"-cmd=nslookup kubernetes.default.svc.cluster.local 127.0.0.1 >/dev/null", | |
"-port=8080", | |
"-quiet" | |
], | |
"image": "gcr.io/google_containers/exechealthz-amd64:1.0", | |
"name": "healthz", | |
"ports": [ | |
{ | |
"containerPort": 8080, | |
"protocol": "TCP" | |
} | |
], | |
"resources": { | |
"limits": { | |
"cpu": "10m", | |
"memory": "20Mi" | |
}, | |
"requests": { | |
"cpu": "10m", | |
"memory": "20Mi" | |
} | |
} | |
} | |
], | |
"dnsPolicy": "Default" | |
} | |
} | |
} | |
} | |
","verification":{}},"user":{},"group":{}},{"filesystem":"rootfs","path":"/srv/kubernetes/manifests/kube-dns-svc.json","contents":{"source":"data:,{ | |
"apiVersion": "v1", | |
"kind": "Service", | |
"metadata": { | |
"labels": { | |
"k8s-app": "kube-dns", | |
"kubernetes.io/cluster-service": "true", | |
"kubernetes.io/name": "KubeDNS" | |
}, | |
"name": "kube-dns", | |
"namespace": "kube-system" | |
}, | |
"spec": { | |
"clusterIP": "10.3.0.10", | |
"ports": [ | |
{ | |
"name": "dns", | |
"port": 53, | |
"protocol": "UDP" | |
}, | |
{ | |
"name": "dns-tcp", | |
"port": 53, | |
"protocol": "TCP" | |
} | |
], | |
"selector": { | |
"k8s-app": "kube-dns" | |
} | |
} | |
} | |
","verification":{}},"user":{},"group":{}},{"filesystem":"rootfs","path":"/srv/kubernetes/manifests/heapster-deployment.json","contents":{"source":"data:,{ | |
"apiVersion": "extensions/v1beta1", | |
"kind": "Deployment", | |
"metadata": { | |
"labels": { | |
"k8s-app": "heapster", | |
"kubernetes.io/cluster-service": "true", | |
"version": "v1.1.0" | |
}, | |
"name": "heapster-v1.1.0", | |
"namespace": "kube-system" | |
}, | |
"spec": { | |
"replicas": 1, | |
"selector": { | |
"matchLabels": { | |
"k8s-app": "heapster", | |
"version": "v1.1.0" | |
} | |
}, | |
"template": { | |
"metadata": { | |
"labels": { | |
"k8s-app": "heapster", | |
"version": "v1.1.0" | |
} | |
}, | |
"spec": { | |
"containers": [ | |
{ | |
"command": [ | |
"/heapster", | |
"--source=kubernetes.summary_api:''" | |
], | |
"image": "gcr.io/google_containers/heapster:v1.1.0", | |
"name": "heapster", | |
"resources": { | |
"limits": { | |
"cpu": "100m", | |
"memory": "200Mi" | |
}, | |
"requests": { | |
"cpu": "100m", | |
"memory": "200Mi" | |
} | |
} | |
}, | |
{ | |
"command": [ | |
"/pod_nanny", | |
"--cpu=100m", | |
"--extra-cpu=0.5m", | |
"--memory=200Mi", | |
"--extra-memory=4Mi", | |
"--threshold=5", | |
"--deployment=heapster-v1.1.0", | |
"--container=heapster", | |
"--poll-period=300000", | |
"--estimator=exponential" | |
], | |
"env": [ | |
{ | |
"name": "MY_POD_NAME", | |
"valueFrom": { | |
"fieldRef": { | |
"fieldPath": "metadata.name" | |
} | |
} | |
}, | |
{ | |
"name": "MY_POD_NAMESPACE", | |
"valueFrom": { | |
"fieldRef": { | |
"fieldPath": "metadata.namespace" | |
} | |
} | |
} | |
], | |
"image": "gcr.io/google_containers/addon-resizer:1.3", | |
"name": "heapster-nanny", | |
"resources": { | |
"limits": { | |
"cpu": "50m", | |
"memory": "100Mi" | |
}, | |
"requests": { | |
"cpu": "50m", | |
"memory": "100Mi" | |
} | |
} | |
} | |
] | |
} | |
} | |
} | |
} | |
","verification":{}},"user":{},"group":{}},{"filesystem":"rootfs","path":"/srv/kubernetes/manifests/heapster-svc.json","contents":{"source":"data:,{ | |
"apiVersion": "v1", | |
"kind": "Service", | |
"metadata": { | |
"labels": { | |
"kubernetes.io/cluster-service": "true", | |
"kubernetes.io/name": "Heapster" | |
}, | |
"name": "heapster", | |
"namespace": "kube-system" | |
}, | |
"spec": { | |
"ports": [ | |
{ | |
"port": 80, | |
"targetPort": 8082 | |
} | |
], | |
"selector": { | |
"k8s-app": "heapster" | |
} | |
} | |
} | |
","verification":{}},"user":{},"group":{}},{"filesystem":"rootfs","path":"/srv/kubernetes/manifests/kube-dashboard-rc.json","contents":{"source":"data:,{ | |
"apiVersion": "v1", | |
"kind": "ReplicationController", | |
"metadata": { | |
"labels": { | |
"k8s-app": "kubernetes-dashboard", | |
"kubernetes.io/cluster-service": "true", | |
"version": "v1.1.0" | |
}, | |
"name": "kubernetes-dashboard-v1.1.0", | |
"namespace": "kube-system" | |
}, | |
"spec": { | |
"replicas": 1, | |
"selector": { | |
"k8s-app": "kubernetes-dashboard" | |
}, | |
"template": { | |
"metadata": { | |
"labels": { | |
"k8s-app": "kubernetes-dashboard", | |
"kubernetes.io/cluster-service": "true", | |
"version": "v1.1.0" | |
} | |
}, | |
"spec": { | |
"containers": [ | |
{ | |
"image": "gcr.io/google_containers/kubernetes-dashboard-amd64:v1.1.0", | |
"livenessProbe": { | |
"httpGet": { | |
"path": "/", | |
"port": 9090 | |
}, | |
"initialDelaySeconds": 30, | |
"timeoutSeconds": 30 | |
}, | |
"name": "kubernetes-dashboard", | |
"ports": [ | |
{ | |
"containerPort": 9090 | |
} | |
], | |
"resources": { | |
"limits": { | |
"cpu": "100m", | |
"memory": "50Mi" | |
}, | |
"requests": { | |
"cpu": "100m", | |
"memory": "50Mi" | |
} | |
} | |
} | |
] | |
} | |
} | |
} | |
} | |
","verification":{}},"user":{},"group":{}},{"filesystem":"rootfs","path":"/srv/kubernetes/manifests/kube-dashboard-svc.json","contents":{"source":"data:,{ | |
"apiVersion": "v1", | |
"kind": "Service", | |
"metadata": { | |
"labels": { | |
"k8s-app": "kubernetes-dashboard", | |
"kubernetes.io/cluster-service": "true" | |
}, | |
"name": "kubernetes-dashboard", | |
"namespace": "kube-system" | |
}, | |
"spec": { | |
"ports": [ | |
{ | |
"port": 80, | |
"targetPort": 9090 | |
} | |
], | |
"selector": { | |
"k8s-app": "kubernetes-dashboard" | |
} | |
} | |
} | |
","verification":{}},"user":{},"group":{}},{"filesystem":"rootfs","path":"/opt/init-flannel","contents":{"source":"data:,#!/bin/bash -ex | |
function init_flannel { | |
echo "Waiting for etcd..." | |
while true | |
do | |
IFS=',' read -ra ES <<< "http://kube-master.lab1.tite.lan:2379" | |
for ETCD in "${ES[@]}"; do | |
echo "Trying: $ETCD" | |
if [ -n "$(curl --silent "$ETCD/v2/machines")" ]; then | |
local ACTIVE_ETCD=$ETCD | |
break | |
fi | |
sleep 1 | |
done | |
if [ -n "$ACTIVE_ETCD" ]; then | |
break | |
fi | |
done | |
RES=$(curl --silent -X PUT -d "value={\"Network\":\"10.2.0.0/16\",\"Backend\":{\"Type\":\"vxlan\"}}" "$ACTIVE_ETCD/v2/keys/coreos.com/network/config?prevExist=false") | |
if [ -z "$(echo $RES | grep '"action":"create"')" ] && [ -z "$(echo $RES | grep 'Key already exists')" ]; then | |
echo "Unexpected error configuring flannel pod network: $RES" | |
fi | |
} | |
init_flannel | |
","verification":{}},"mode":356,"user":{},"group":{}},{"filesystem":"rootfs","path":"/opt/k8s-addons","contents":{"source":"data:,#!/bin/bash -ex | |
echo "Waiting for Kubernetes API..." | |
until curl --silent "http://127.0.0.1:8080/version" | |
do | |
sleep 5 | |
done | |
echo "K8S: DNS addon" | |
curl --silent -H "Content-Type: application/json" -XPOST -d"$(cat /srv/kubernetes/manifests/kube-dns-rc.json)" "http://127.0.0.1:8080/api/v1/namespaces/kube-system/replicationcontrollers" > /dev/null | |
curl --silent -H "Content-Type: application/json" -XPOST -d"$(cat /srv/kubernetes/manifests/kube-dns-svc.json)" "http://127.0.0.1:8080/api/v1/namespaces/kube-system/services" > /dev/null | |
echo "K8S: Heapster addon" | |
curl --silent -H "Content-Type: application/json" -XPOST -d"$(cat /srv/kubernetes/manifests/heapster-deployment.json)" "http://127.0.0.1:8080/apis/extensions/v1beta1/namespaces/kube-system/deployments" | |
curl --silent -H "Content-Type: application/json" -XPOST -d"$(cat /srv/kubernetes/manifests/heapster-svc.json)" "http://127.0.0.1:8080/api/v1/namespaces/kube-system/services" | |
echo "K8S: Dashboard addon" | |
curl --silent -H "Content-Type: application/json" -XPOST -d"$(cat /srv/kubernetes/manifests/kube-dashboard-rc.json)" "http://127.0.0.1:8080/api/v1/namespaces/kube-system/replicationcontrollers" > /dev/null | |
curl --silent -H "Content-Type: application/json" -XPOST -d"$(cat /srv/kubernetes/manifests/kube-dashboard-svc.json)" "http://127.0.0.1:8080/api/v1/namespaces/kube-system/services" > /dev/null | |
","verification":{}},"mode":356,"user":{},"group":{}}]},"systemd":{"units":[{"name":"etcd2.service","enable":true,"dropins":[{"name":"40-etcd-cluster.conf","contents":"[Service]\nEnvironment=\"ETCD_NAME=node1\"\nEnvironment=\"ETCD_ADVERTISE_CLIENT_URLS=http://kube-master.lab1.tite.lan:2379\"\nEnvironment=\"ETCD_INITIAL_ADVERTISE_PEER_URLS=http://kube-master.lab1.tite.lan:2380\"\nEnvironment=\"ETCD_LISTEN_CLIENT_URLS=http://0.0.0.0:2379\"\nEnvironment=\"ETCD_LISTEN_PEER_URLS=http://kube-master.lab1.tite.lan:2380\"\nEnvironment=\"ETCD_INITIAL_CLUSTER=node1=http://kube-master.lab1.tite.lan:2380\"\nEnvironment=\"ETCD_STRICT_RECONFIG_CHECK=true\"\n"}]},{"name":"flanneld.service","dropins":[{"name":"40-ExecStartPre-symlink.conf","contents":"[Service]\nEnvironmentFile=-/etc/flannel/options.env\nExecStartPre=/opt/init-flannel\n"}]},{"name":"docker.service","dropins":[{"name":"40-flannel.conf","contents":"[Unit]\nRequires=flanneld.service\nAfter=flanneld.service\n"}]},{"name":"[email protected]","contents":"[Unit]\nDescription=Fetch Kubernetes certificate assets\nRequires=network-online.target\nAfter=network-online.target\n[Service]\nExecStartPre=/usr/bin/mkdir -p /etc/kubernetes/ssl\nExecStart=/usr/bin/bash -c \"[ -f /etc/kubernetes/ssl/%i ] || curl http://bootcfg.mgt.tite.lan:8080/assets/tls/%i -o /etc/kubernetes/ssl/%i\"\n"},{"name":"k8s-assets.target","contents":"[Unit]\nDescription=Load Kubernetes Assets\[email protected]\[email protected]\[email protected]\[email protected]\[email protected]\[email protected]\n"},{"name":"kubelet.service","enable":true,"contents":"[Unit]\nDescription=Kubelet via Hyperkube ACI\nWants=flanneld.service\nRequires=k8s-assets.target\nAfter=k8s-assets.target\n[Service]\nEnvironment=\"RKT_OPTS=--volume=resolv,kind=host,source=/etc/resolv.conf --mount volume=resolv,target=/etc/resolv.conf --volume var-log,kind=host,source=/var/log --mount volume=var-log,target=/var/log\"\nEnvironment=KUBELET_VERSION=v1.3.4_coreos.0\nExecStartPre=/usr/bin/mkdir -p /etc/kubernetes/manifests\nExecStartPre=/usr/bin/systemctl is-active flanneld.service\nExecStart=/usr/lib/coreos/kubelet-wrapper \\\n --api-servers=http://127.0.0.1:8080 \\\n --register-schedulable=true \\\n --allow-privileged=true \\\n --config=/etc/kubernetes/manifests \\\n --hostname-override=kube-master.lab1.tite.lan \\\n --cluster_dns=10.3.0.10 \\\n --cluster_domain=cluster.local\nRestart=always\nRestartSec=10\n[Install]\nWantedBy=multi-user.target\n"},{"name":"k8s-addons.service","enable":true,"contents":"[Unit]\nDescription=Kubernetes Addons\n[Service]\nType=oneshot\nExecStart=/opt/k8s-addons\n[Install]\nWantedBy=multi-user.target\n"}]},"networkd":{},"passwd":{"users":[{"name":"core","sshAuthorizedKeys":["ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDRk6/xTRumdiCTCukoKuZEfYuh7 I6yDUtBTIRX8ES5OrgRADCImfRBoBKbQW9O75k1j5loHW9BExLkM8RThJ1tu0LbeCepPYkmy pgD7pbrAL8DAMSUTNbQAnNxCuKc EmryyQMKDHB/HI4dsHfcx HgQ3cjUyRu/MMM2FVV/izB6knFVwMITxAlFhscdrrw7qRdC1HL0Ax/a7VhF/OGOaIX7QYsjeI0Q1E1yS4kQA4SMwm5cggcPgRDuI2qbOLs3KY1E9AzJ gVZR0krFFe5cfaKLdM/Ap1kevlXNchLWs4S qRbT1osi4zvyZwuIq0R1efawpmhjgRugphbh26B [email protected]"]}]}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"ignition":{"version":"2.0.0","config":{}},"storage":{"filesystems":[{"name":"rootfs","mount":{"device":"/dev/disk/by-label/ROOT","format":"ext4"}}],"files":[{"filesystem":"rootfs","path":"/etc/flannel/options.env","contents":{"source":"data:,FLANNELD_ETCD_ENDPOINTS%3Dhttp%3A%2F%2Fkube-master.lab1.tite.lan%3A2379%0A","verification":{}},"user":{},"group":{}}]},"systemd":{"units":[{"name":"etcd2.service","enable":true,"dropins":[{"name":"40-etcd-cluster.conf","contents":"[Service]\nEnvironment=\"ETCD_NAME=node1\"\nEnvironment=\"ETCD_ADVERTISE_CLIENT_URLS=http://kube-master.lab1.tite.lan:2379\"\nEnvironment=\"ETCD_INITIAL_ADVERTISE_PEER_URLS=http://kube-master.lab1.tite.lan:2380\"\nEnvironment=\"ETCD_LISTEN_CLIENT_URLS=http://0.0.0.0:2379\"\nEnvironment=\"ETCD_LISTEN_PEER_URLS=http://kube-master.lab1.tite.lan:2380\"\nEnvironment=\"ETCD_INITIAL_CLUSTER=node1=http://kube-master.lab1.tite.lan:2380\"\nEnvironment=\"ETCD_STRICT_RECONFIG_CHECK=true\"\n"}]}]},"networkd":{},"passwd":{"users":[{"name":"core","sshAuthorizedKeys":["ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDRk6/xTRumdiCTCukoKuZEfYuh7+I6yDUtBTIRX8ES5OrgRADCImfRBoBKbQW9O75k1j5loHW9BExLkM8RThJ1tu0LbeCepPYkmy+pgD7pbrAL8DAMSUTNbQAnNxCuKc+EmryyQMKDHB/HI4dsHfcx+HgQ3cjUyRu/MMM2FVV/izB6knFVwMITxAlFhscdrrw7qRdC1HL0Ax/a7VhF/OGOaIX7QYsjeI0Q1E1yS4kQA4SMwm5cggcPgRDuI2qbOLs3KY1E9AzJ+gVZR0krFFe5cfaKLdM/Ap1kevlXNchLWs4S+qRbT1osi4zvyZwuIq0R1efawpmhjgRugphbh26B [email protected]"]}]}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Logs begin at Sun 2016-08-21 22:30:40 UTC, end at Sun 2016-08-21 22:37:16 UTC. -- | |
Aug 21 22:30:40 localhost systemd-journald[97]: Runtime journal (/run/log/journal/) is 8.0M, max 100.2M, 92.2M free. | |
Aug 21 22:30:40 localhost kernel: Linux version 4.7.0-coreos ([email protected]) (gcc version 4.9.3 (Gentoo Hardened 4.9.3 p1.5, pie-0.6.4) ) #1 SMP Wed Jul 27 07:30:04 UTC 2016 | |
Aug 21 22:30:40 localhost kernel: Command line: coreos.autologin coreos.config.url=http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa coreos.first_boot | |
Aug 21 22:30:40 localhost kernel: x86/fpu: Legacy x87 FPU detected. | |
Aug 21 22:30:40 localhost kernel: x86/fpu: Using 'eager' FPU context switches. | |
Aug 21 22:30:40 localhost kernel: e820: BIOS-provided physical RAM map: | |
Aug 21 22:30:40 localhost kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable | |
Aug 21 22:30:40 localhost kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved | |
Aug 21 22:30:40 localhost kernel: BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved | |
Aug 21 22:30:40 localhost kernel: BIOS-e820: [mem 0x0000000000100000-0x000000007ffdffff] usable | |
Aug 21 22:30:40 localhost kernel: BIOS-e820: [mem 0x000000007ffe0000-0x000000007fffffff] reserved | |
Aug 21 22:30:40 localhost kernel: BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved | |
Aug 21 22:30:40 localhost kernel: BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved | |
Aug 21 22:30:40 localhost kernel: NX (Execute Disable) protection: active | |
Aug 21 22:30:40 localhost kernel: SMBIOS 2.8 present. | |
Aug 21 22:30:40 localhost kernel: DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.8.2-20150714_191134- 04/01/2014 | |
Aug 21 22:30:40 localhost kernel: Hypervisor detected: KVM | |
Aug 21 22:30:40 localhost kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved | |
Aug 21 22:30:40 localhost kernel: e820: remove [mem 0x000a0000-0x000fffff] usable | |
Aug 21 22:30:40 localhost kernel: e820: last_pfn = 0x7ffe0 max_arch_pfn = 0x400000000 | |
Aug 21 22:30:40 localhost kernel: MTRR default type: write-back | |
Aug 21 22:30:40 localhost kernel: MTRR fixed ranges enabled: | |
Aug 21 22:30:40 localhost kernel: 00000-9FFFF write-back | |
Aug 21 22:30:40 localhost kernel: A0000-BFFFF uncachable | |
Aug 21 22:30:40 localhost kernel: C0000-FFFFF write-protect | |
Aug 21 22:30:40 localhost kernel: MTRR variable ranges enabled: | |
Aug 21 22:30:40 localhost kernel: 0 base 0080000000 mask FF80000000 uncachable | |
Aug 21 22:30:40 localhost kernel: 1 disabled | |
Aug 21 22:30:40 localhost kernel: 2 disabled | |
Aug 21 22:30:40 localhost kernel: 3 disabled | |
Aug 21 22:30:40 localhost kernel: 4 disabled | |
Aug 21 22:30:40 localhost kernel: 5 disabled | |
Aug 21 22:30:40 localhost kernel: 6 disabled | |
Aug 21 22:30:40 localhost kernel: 7 disabled | |
Aug 21 22:30:40 localhost kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WC UC- WT | |
Aug 21 22:30:40 localhost kernel: Base memory trampoline at [ffff880000095000] 95000 size 28672 | |
Aug 21 22:30:40 localhost kernel: BRK [0x2f975000, 0x2f975fff] PGTABLE | |
Aug 21 22:30:40 localhost kernel: BRK [0x2f976000, 0x2f976fff] PGTABLE | |
Aug 21 22:30:40 localhost kernel: BRK [0x2f977000, 0x2f977fff] PGTABLE | |
Aug 21 22:30:40 localhost kernel: BRK [0x2f978000, 0x2f978fff] PGTABLE | |
Aug 21 22:30:40 localhost kernel: BRK [0x2f979000, 0x2f979fff] PGTABLE | |
Aug 21 22:30:40 localhost kernel: RAMDISK: [mem 0x719c7000-0x7fef4fff] | |
Aug 21 22:30:40 localhost kernel: ACPI: Early table checksum verification disabled | |
Aug 21 22:30:40 localhost kernel: ACPI: RSDP 0x00000000000F62C0 000014 (v00 BOCHS ) | |
Aug 21 22:30:40 localhost kernel: ACPI: RSDT 0x000000007FFE1711 000030 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001) | |
Aug 21 22:30:40 localhost kernel: ACPI: FACP 0x000000007FFE0CAF 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001) | |
Aug 21 22:30:40 localhost kernel: ACPI: DSDT 0x000000007FFE0040 000C6F (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001) | |
Aug 21 22:30:40 localhost kernel: ACPI: FACS 0x000000007FFE0000 000040 | |
Aug 21 22:30:40 localhost kernel: ACPI: SSDT 0x000000007FFE0D23 000976 (v01 BOCHS BXPCSSDT 00000001 BXPC 00000001) | |
Aug 21 22:30:40 localhost kernel: ACPI: APIC 0x000000007FFE1699 000078 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001) | |
Aug 21 22:30:40 localhost kernel: ACPI: Local APIC address 0xfee00000 | |
Aug 21 22:30:40 localhost kernel: No NUMA configuration found | |
Aug 21 22:30:40 localhost kernel: Faking a node at [mem 0x0000000000000000-0x000000007ffdffff] | |
Aug 21 22:30:40 localhost kernel: NODE_DATA(0) allocated [mem 0x7ffda000-0x7ffdffff] | |
Aug 21 22:30:40 localhost kernel: kvm-clock: Using msrs 4b564d01 and 4b564d00 | |
Aug 21 22:30:40 localhost kernel: kvm-clock: cpu 0, msr 0:7ffd8001, primary cpu clock | |
Aug 21 22:30:40 localhost kernel: kvm-clock: using sched offset of 3489955311709 cycles | |
Aug 21 22:30:40 localhost kernel: clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns | |
Aug 21 22:30:40 localhost kernel: Zone ranges: | |
Aug 21 22:30:40 localhost kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff] | |
Aug 21 22:30:40 localhost kernel: DMA32 [mem 0x0000000001000000-0x000000007ffdffff] | |
Aug 21 22:30:40 localhost kernel: Normal empty | |
Aug 21 22:30:40 localhost kernel: Movable zone start for each node | |
Aug 21 22:30:40 localhost kernel: Early memory node ranges | |
Aug 21 22:30:40 localhost kernel: node 0: [mem 0x0000000000001000-0x000000000009efff] | |
Aug 21 22:30:40 localhost kernel: node 0: [mem 0x0000000000100000-0x000000007ffdffff] | |
Aug 21 22:30:40 localhost kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffdffff] | |
Aug 21 22:30:40 localhost kernel: On node 0 totalpages: 524158 | |
Aug 21 22:30:40 localhost kernel: DMA zone: 64 pages used for memmap | |
Aug 21 22:30:40 localhost kernel: DMA zone: 25 pages reserved | |
Aug 21 22:30:40 localhost kernel: DMA zone: 3998 pages, LIFO batch:0 | |
Aug 21 22:30:40 localhost kernel: DMA32 zone: 8128 pages used for memmap | |
Aug 21 22:30:40 localhost kernel: DMA32 zone: 520160 pages, LIFO batch:31 | |
Aug 21 22:30:40 localhost kernel: ACPI: PM-Timer IO Port: 0x608 | |
Aug 21 22:30:40 localhost kernel: ACPI: Local APIC address 0xfee00000 | |
Aug 21 22:30:40 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) | |
Aug 21 22:30:40 localhost kernel: IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23 | |
Aug 21 22:30:40 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) | |
Aug 21 22:30:40 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) | |
Aug 21 22:30:40 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) | |
Aug 21 22:30:40 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) | |
Aug 21 22:30:40 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) | |
Aug 21 22:30:40 localhost kernel: ACPI: IRQ0 used by override. | |
Aug 21 22:30:40 localhost kernel: ACPI: IRQ5 used by override. | |
Aug 21 22:30:40 localhost kernel: ACPI: IRQ9 used by override. | |
Aug 21 22:30:40 localhost kernel: ACPI: IRQ10 used by override. | |
Aug 21 22:30:40 localhost kernel: ACPI: IRQ11 used by override. | |
Aug 21 22:30:40 localhost kernel: Using ACPI (MADT) for SMP configuration information | |
Aug 21 22:30:40 localhost kernel: smpboot: Allowing 1 CPUs, 0 hotplug CPUs | |
Aug 21 22:30:40 localhost kernel: e820: [mem 0x80000000-0xfeffbfff] available for PCI devices | |
Aug 21 22:30:40 localhost kernel: Booting paravirtualized kernel on KVM | |
Aug 21 22:30:40 localhost kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns | |
Aug 21 22:30:40 localhost kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:1 nr_node_ids:1 | |
Aug 21 22:30:40 localhost kernel: percpu: Embedded 33 pages/cpu @ffff880071600000 s97944 r8192 d29032 u2097152 | |
Aug 21 22:30:40 localhost kernel: pcpu-alloc: s97944 r8192 d29032 u2097152 alloc=1*2097152 | |
Aug 21 22:30:40 localhost kernel: pcpu-alloc: [0] 0 | |
Aug 21 22:30:40 localhost kernel: KVM setup async PF for cpu 0 | |
Aug 21 22:30:40 localhost kernel: kvm-stealtime: cpu 0, msr 7160d880 | |
Aug 21 22:30:40 localhost kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 515941 | |
Aug 21 22:30:40 localhost kernel: Policy zone: DMA32 | |
Aug 21 22:30:40 localhost kernel: Kernel command line: rootflags=rw mount.usrflags=ro coreos.autologin coreos.config.url=http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa coreos.first_boot | |
Aug 21 22:30:40 localhost kernel: PID hash table entries: 4096 (order: 3, 32768 bytes) | |
Aug 21 22:30:40 localhost kernel: Memory: 1786200K/2096632K available (5707K kernel code, 1117K rwdata, 2348K rodata, 30100K init, 960K bss, 310432K reserved, 0K cma-reserved) | |
Aug 21 22:30:40 localhost kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 | |
Aug 21 22:30:40 localhost kernel: Hierarchical RCU implementation. | |
Aug 21 22:30:40 localhost kernel: Build-time adjustment of leaf fanout to 64. | |
Aug 21 22:30:40 localhost kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=1. | |
Aug 21 22:30:40 localhost kernel: RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=1 | |
Aug 21 22:30:40 localhost kernel: NR_IRQS:8448 nr_irqs:256 16 | |
Aug 21 22:30:40 localhost kernel: Console: colour VGA+ 80x25 | |
Aug 21 22:30:40 localhost kernel: console [tty0] enabled | |
Aug 21 22:30:40 localhost kernel: tsc: Detected 2533.422 MHz processor | |
Aug 21 22:30:40 localhost kernel: Calibrating delay loop (skipped) preset value.. 5066.84 BogoMIPS (lpj=2533422) | |
Aug 21 22:30:40 localhost kernel: pid_max: default: 32768 minimum: 301 | |
Aug 21 22:30:40 localhost kernel: ACPI: Core revision 20160422 | |
Aug 21 22:30:40 localhost kernel: ACPI: 2 ACPI AML tables successfully acquired and loaded | |
Aug 21 22:30:40 localhost kernel: | |
Aug 21 22:30:40 localhost kernel: Security Framework initialized | |
Aug 21 22:30:40 localhost kernel: SELinux: Initializing. | |
Aug 21 22:30:40 localhost kernel: SELinux: Starting in permissive mode | |
Aug 21 22:30:40 localhost kernel: Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) | |
Aug 21 22:30:40 localhost kernel: Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) | |
Aug 21 22:30:40 localhost kernel: Mount-cache hash table entries: 4096 (order: 3, 32768 bytes) | |
Aug 21 22:30:40 localhost kernel: Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes) | |
Aug 21 22:30:40 localhost kernel: mce: CPU supports 10 MCE banks | |
Aug 21 22:30:40 localhost kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 | |
Aug 21 22:30:40 localhost kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 | |
Aug 21 22:30:40 localhost kernel: Freeing SMP alternatives memory: 24K (ffffffffaf87e000 - ffffffffaf884000) | |
Aug 21 22:30:40 localhost kernel: ftrace: allocating 22630 entries in 89 pages | |
Aug 21 22:30:40 localhost kernel: smpboot: Max logical packages: 1 | |
Aug 21 22:30:40 localhost kernel: smpboot: APIC(0) Converting physical 0 to logical package 0 | |
Aug 21 22:30:40 localhost kernel: x2apic enabled | |
Aug 21 22:30:40 localhost kernel: Switched APIC routing to physical x2apic. | |
Aug 21 22:30:40 localhost kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 | |
Aug 21 22:30:40 localhost kernel: smpboot: CPU0: Intel Core i7 9xx (Nehalem Class Core i7) (family: 0x6, model: 0x1a, stepping: 0x3) | |
Aug 21 22:30:40 localhost kernel: Performance Events: unsupported p6 CPU model 26 no PMU driver, software events only. | |
Aug 21 22:30:40 localhost kernel: x86: Booted up 1 node, 1 CPUs | |
Aug 21 22:30:40 localhost kernel: smpboot: Total of 1 processors activated (5066.84 BogoMIPS) | |
Aug 21 22:30:40 localhost kernel: devtmpfs: initialized | |
Aug 21 22:30:40 localhost kernel: x86/mm: Memory block size: 128MB | |
Aug 21 22:30:40 localhost kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns | |
Aug 21 22:30:40 localhost kernel: pinctrl core: initialized pinctrl subsystem | |
Aug 21 22:30:40 localhost kernel: NET: Registered protocol family 16 | |
Aug 21 22:30:40 localhost kernel: cpuidle: using governor menu | |
Aug 21 22:30:40 localhost kernel: ACPI: bus type PCI registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 | |
Aug 21 22:30:40 localhost kernel: dca service started, version 1.12.1 | |
Aug 21 22:30:40 localhost kernel: PCI: Using configuration type 1 for base access | |
Aug 21 22:30:40 localhost kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages | |
Aug 21 22:30:40 localhost kernel: ACPI: Added _OSI(Module Device) | |
Aug 21 22:30:40 localhost kernel: ACPI: Added _OSI(Processor Device) | |
Aug 21 22:30:40 localhost kernel: ACPI: Added _OSI(3.0 _SCP Extensions) | |
Aug 21 22:30:40 localhost kernel: ACPI: Added _OSI(Processor Aggregator Device) | |
Aug 21 22:30:40 localhost kernel: ACPI: Executed 1 blocks of module-level executable AML code | |
Aug 21 22:30:40 localhost kernel: ACPI: Interpreter enabled | |
Aug 21 22:30:40 localhost kernel: ACPI: (supports S0 S5) | |
Aug 21 22:30:40 localhost kernel: ACPI: Using IOAPIC for interrupt routing | |
Aug 21 22:30:40 localhost kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug | |
Aug 21 22:30:40 localhost kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) | |
Aug 21 22:30:40 localhost kernel: acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI] | |
Aug 21 22:30:40 localhost kernel: acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM | |
Aug 21 22:30:40 localhost kernel: acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge. | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [3] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [4] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [5] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [7] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [8] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [9] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [10] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [11] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [12] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [13] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [14] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [15] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [16] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [17] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [18] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [19] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [20] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [21] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [22] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [23] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [24] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [25] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [26] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [27] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [28] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [29] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [30] registered | |
Aug 21 22:30:40 localhost kernel: acpiphp: Slot [31] registered | |
Aug 21 22:30:40 localhost kernel: PCI host bridge to bus 0000:00 | |
Aug 21 22:30:40 localhost kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] | |
Aug 21 22:30:40 localhost kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] | |
Aug 21 22:30:40 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] | |
Aug 21 22:30:40 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff window] | |
Aug 21 22:30:40 localhost kernel: pci_bus 0000:00: root bus resource [bus 00-ff] | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:01.1: reg 0x20: [io 0xc1c0-0xc1cf] | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6] | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376] | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:02.0: [1b36:0100] type 00 class 0x030000 | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:02.0: reg 0x10: [mem 0xf4000000-0xf7ffffff] | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:02.0: reg 0x14: [mem 0xf8000000-0xfbffffff] | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:02.0: reg 0x18: [mem 0xfc054000-0xfc055fff] | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:02.0: reg 0x1c: [io 0xc100-0xc11f] | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:02.0: reg 0x30: [mem 0xfc040000-0xfc04ffff pref] | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:03.0: [10ec:8139] type 00 class 0x020000 | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:03.0: reg 0x10: [io 0xc000-0xc0ff] | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:03.0: reg 0x14: [mem 0xfc056000-0xfc0560ff] | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:03.0: reg 0x30: [mem 0xfc000000-0xfc03ffff pref] | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:04.0: [8086:2668] type 00 class 0x040300 | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:04.0: reg 0x10: [mem 0xfc050000-0xfc053fff] | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:05.0: [1af4:1003] type 00 class 0x078000 | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:05.0: reg 0x10: [io 0xc120-0xc13f] | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:05.0: reg 0x14: [mem 0xfc057000-0xfc057fff] | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:06.0: [8086:2934] type 00 class 0x0c0300 | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:06.0: reg 0x20: [io 0xc140-0xc15f] | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:06.1: [8086:2935] type 00 class 0x0c0300 | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:06.1: reg 0x20: [io 0xc160-0xc17f] | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:06.2: [8086:2936] type 00 class 0x0c0300 | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:06.2: reg 0x20: [io 0xc180-0xc19f] | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:06.7: [8086:293a] type 00 class 0x0c0320 | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:06.7: reg 0x10: [mem 0xfc058000-0xfc058fff] | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:07.0: [1af4:1002] type 00 class 0x00ff00 | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:07.0: reg 0x10: [io 0xc1a0-0xc1bf] | |
Aug 21 22:30:40 localhost kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11) | |
Aug 21 22:30:40 localhost kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11) | |
Aug 21 22:30:40 localhost kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11) | |
Aug 21 22:30:40 localhost kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11) | |
Aug 21 22:30:40 localhost kernel: ACPI: PCI Interrupt Link [LNKS] (IRQs *9) | |
Aug 21 22:30:40 localhost kernel: ACPI: Enabled 16 GPEs in block 00 to 0F | |
Aug 21 22:30:40 localhost kernel: vgaarb: setting as boot device: PCI:0000:00:02.0 | |
Aug 21 22:30:40 localhost kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none | |
Aug 21 22:30:40 localhost kernel: vgaarb: loaded | |
Aug 21 22:30:40 localhost kernel: vgaarb: bridge control possible 0000:00:02.0 | |
Aug 21 22:30:40 localhost kernel: PCI: Using ACPI for IRQ routing | |
Aug 21 22:30:40 localhost kernel: PCI: pci_cache_line_size set to 64 bytes | |
Aug 21 22:30:40 localhost kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff] | |
Aug 21 22:30:40 localhost kernel: e820: reserve RAM buffer [mem 0x7ffe0000-0x7fffffff] | |
Aug 21 22:30:40 localhost kernel: amd_nb: Cannot enumerate AMD northbridges | |
Aug 21 22:30:40 localhost kernel: clocksource: Switched to clocksource kvm-clock | |
Aug 21 22:30:40 localhost kernel: VFS: Disk quotas dquot_6.6.0 | |
Aug 21 22:30:40 localhost kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) | |
Aug 21 22:30:40 localhost kernel: pnp: PnP ACPI init | |
Aug 21 22:30:40 localhost kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active) | |
Aug 21 22:30:40 localhost kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active) | |
Aug 21 22:30:40 localhost kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active) | |
Aug 21 22:30:40 localhost kernel: pnp 00:03: [dma 2] | |
Aug 21 22:30:40 localhost kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0700 (active) | |
Aug 21 22:30:40 localhost kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active) | |
Aug 21 22:30:40 localhost kernel: pnp: PnP ACPI: found 5 devices | |
Aug 21 22:30:40 localhost kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns | |
Aug 21 22:30:40 localhost kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] | |
Aug 21 22:30:40 localhost kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] | |
Aug 21 22:30:40 localhost kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] | |
Aug 21 22:30:40 localhost kernel: pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff window] | |
Aug 21 22:30:40 localhost kernel: NET: Registered protocol family 2 | |
Aug 21 22:30:40 localhost kernel: TCP established hash table entries: 16384 (order: 5, 131072 bytes) | |
Aug 21 22:30:40 localhost kernel: TCP bind hash table entries: 16384 (order: 6, 262144 bytes) | |
Aug 21 22:30:40 localhost kernel: TCP: Hash tables configured (established 16384 bind 16384) | |
Aug 21 22:30:40 localhost kernel: UDP hash table entries: 1024 (order: 3, 32768 bytes) | |
Aug 21 22:30:40 localhost kernel: UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes) | |
Aug 21 22:30:40 localhost kernel: NET: Registered protocol family 1 | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:00.0: Limiting direct PCI/PCI transfers | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:01.0: PIIX3: Enabling Passive Release | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:01.0: Activating ISA DMA hang workarounds | |
Aug 21 22:30:40 localhost kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] | |
Aug 21 22:30:40 localhost kernel: ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 10 | |
Aug 21 22:30:40 localhost kernel: ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11 | |
Aug 21 22:30:40 localhost kernel: ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11 | |
Aug 21 22:30:40 localhost kernel: ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 10 | |
Aug 21 22:30:40 localhost kernel: PCI: CLS 0 bytes, default 64 | |
Aug 21 22:30:40 localhost kernel: Unpacking initramfs... | |
Aug 21 22:30:40 localhost kernel: Freeing initrd memory: 234680K (ffff8800719c7000 - ffff88007fef5000) | |
Aug 21 22:30:40 localhost kernel: futex hash table entries: 256 (order: 2, 16384 bytes) | |
Aug 21 22:30:40 localhost kernel: audit: initializing netlink subsys (disabled) | |
Aug 21 22:30:40 localhost kernel: audit: type=2000 audit(1471818640.009:1): initialized | |
Aug 21 22:30:40 localhost kernel: Initialise system trusted keyrings | |
Aug 21 22:30:40 localhost kernel: workingset: timestamp_bits=37 max_order=19 bucket_order=0 | |
Aug 21 22:30:40 localhost kernel: SELinux: Registering netfilter hooks | |
Aug 21 22:30:40 localhost kernel: Key type asymmetric registered | |
Aug 21 22:30:40 localhost kernel: Asymmetric key parser 'x509' registered | |
Aug 21 22:30:40 localhost kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252) | |
Aug 21 22:30:40 localhost kernel: io scheduler noop registered | |
Aug 21 22:30:40 localhost kernel: io scheduler deadline registered | |
Aug 21 22:30:40 localhost kernel: io scheduler cfq registered (default) | |
Aug 21 22:30:40 localhost kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5 | |
Aug 21 22:30:40 localhost kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4 | |
Aug 21 22:30:40 localhost kernel: intel_idle: does not run on family 6 model 26 | |
Aug 21 22:30:40 localhost kernel: GHES: HEST is not enabled! | |
Aug 21 22:30:40 localhost kernel: ioatdma: Intel(R) QuickData Technology Driver 4.00 | |
Aug 21 22:30:40 localhost kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled | |
Aug 21 22:30:40 localhost kernel: 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A | |
Aug 21 22:30:40 localhost kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 | |
Aug 21 22:30:40 localhost kernel: serio: i8042 KBD port at 0x60,0x64 irq 1 | |
Aug 21 22:30:40 localhost kernel: serio: i8042 AUX port at 0x60,0x64 irq 12 | |
Aug 21 22:30:40 localhost kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0 | |
Aug 21 22:30:40 localhost kernel: rtc_cmos 00:00: RTC can wake from S4 | |
Aug 21 22:30:40 localhost kernel: rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0 | |
Aug 21 22:30:40 localhost kernel: rtc_cmos 00:00: alarms up to one day, 114 bytes nvram | |
Aug 21 22:30:40 localhost kernel: NET: Registered protocol family 10 | |
Aug 21 22:30:40 localhost kernel: NET: Registered protocol family 17 | |
Aug 21 22:30:40 localhost kernel: microcode: CPU0 sig=0x106a3, pf=0x1, revision=0x1 | |
Aug 21 22:30:40 localhost kernel: microcode: Microcode Update Driver: v2.01 <[email protected]>, Peter Oruba | |
Aug 21 22:30:40 localhost kernel: registered taskstats version 1 | |
Aug 21 22:30:40 localhost kernel: Loading compiled-in X.509 certificates | |
Aug 21 22:30:40 localhost kernel: alg: No test for pkcs1pad(rsa,sha256) (pkcs1pad(rsa-generic,sha256)) | |
Aug 21 22:30:40 localhost kernel: Loaded X.509 cert 'CoreOS, Inc: Module signing key for 4.7.0-coreos: 9941709b255b359bd2b4e23e4ac08aaef38d0555' | |
Aug 21 22:30:40 localhost kernel: rtc_cmos 00:00: setting system clock to 2016-08-21 22:30:40 UTC (1471818640) | |
Aug 21 22:30:40 localhost kernel: Freeing unused kernel memory: 30100K (ffffffffadb19000 - ffffffffaf87e000) | |
Aug 21 22:30:40 localhost kernel: Write protecting the kernel read-only data: 10240k | |
Aug 21 22:30:40 localhost kernel: Freeing unused kernel memory: 420K (ffff88002d597000 - ffff88002d600000) | |
Aug 21 22:30:40 localhost kernel: Freeing unused kernel memory: 1748K (ffff88002d84b000 - ffff88002da00000) | |
Aug 21 22:30:40 localhost systemd[1]: Failed to insert module 'ip_tables': Function not implemented | |
Aug 21 22:30:40 localhost kernel: random: systemd urandom read with 15 bits of entropy available | |
Aug 21 22:30:40 localhost systemd[1]: systemd 229 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT -GNUTLS -ACL +XZ -LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD -IDN) | |
Aug 21 22:30:40 localhost systemd[1]: Detected virtualization qemu. | |
Aug 21 22:30:40 localhost systemd[1]: Detected architecture x86-64. | |
Aug 21 22:30:40 localhost systemd[1]: Running in initial RAM disk. | |
Aug 21 22:30:40 localhost systemd[1]: No hostname configured. | |
Aug 21 22:30:40 localhost systemd[1]: Set hostname to <localhost>. | |
Aug 21 22:30:40 localhost systemd[1]: Initializing machine ID from random generator. | |
Aug 21 22:30:40 localhost systemd[1]: Reached target Timers. | |
Aug 21 22:30:40 localhost systemd[1]: Reached target Swap. | |
Aug 21 22:30:40 localhost systemd[1]: Listening on Journal Socket. | |
Aug 21 22:30:40 localhost systemd[1]: Listening on Journal Audit Socket. | |
Aug 21 22:30:40 localhost systemd[1]: Listening on Journal Socket (/dev/log). | |
Aug 21 22:30:40 localhost systemd[1]: Created slice System Slice. | |
Aug 21 22:30:40 localhost systemd[1]: Starting Journal Service... | |
Aug 21 22:30:40 localhost systemd[1]: Starting Create list of required static device nodes for the current kernel... | |
Aug 21 22:30:40 localhost systemd[1]: Starting Apply Kernel Variables... | |
Aug 21 22:30:40 localhost systemd[1]: Starting dracut cmdline hook... | |
Aug 21 22:30:40 localhost systemd[1]: Reached target Slices. | |
Aug 21 22:30:40 localhost systemd-journald[97]: Journal started | |
Aug 21 22:30:40 localhost systemd-sysctl[102]: Couldn't write 'fq_codel' to 'net/core/default_qdisc', ignoring: No such file or directory | |
Aug 21 22:30:40 localhost systemd[1]: Reached target Encrypted Volumes. | |
Aug 21 22:30:40 localhost systemd[1]: Listening on udev Control Socket. | |
Aug 21 22:30:40 localhost systemd[1]: Started Dispatch Password Requests to Console Directory Watch. | |
Aug 21 22:30:40 localhost systemd[1]: Listening on udev Kernel Socket. | |
Aug 21 22:30:40 localhost systemd[1]: Reached target Sockets. | |
Aug 21 22:30:40 localhost systemd[1]: Reached target Paths. | |
Aug 21 22:30:40 localhost dracut-cmdline[104]: dracut-dracut-041-r2 | |
Aug 21 22:30:40 localhost dracut-cmdline[104]: Using kernel command line parameters: | |
Aug 21 22:30:40 localhost systemd[1]: Started Journal Service. | |
Aug 21 22:30:40 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:30:40 localhost kernel: audit: type=1130 audit(1471818640.681:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:30:40 localhost systemd[1]: Started Create list of required static device nodes for the current kernel. | |
Aug 21 22:30:40 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=kmod-static-nodes comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:30:40 localhost kernel: audit: type=1130 audit(1471818640.690:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=kmod-static-nodes comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:30:40 localhost systemd[1]: Started Apply Kernel Variables. | |
Aug 21 22:30:40 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:30:40 localhost kernel: audit: type=1130 audit(1471818640.700:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:30:40 localhost systemd[1]: Starting Create Static Device Nodes in /dev... | |
Aug 21 22:30:40 localhost systemd[1]: Started Create Static Device Nodes in /dev. | |
Aug 21 22:30:40 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:30:40 localhost kernel: audit: type=1130 audit(1471818640.724:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:30:40 localhost systemd[1]: Started dracut cmdline hook. | |
Aug 21 22:30:40 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:30:40 localhost kernel: audit: type=1130 audit(1471818640.747:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:30:40 localhost systemd[1]: Starting dracut pre-udev hook... | |
Aug 21 22:30:40 localhost kernel: device-mapper: uevent: version 1.0.3 | |
Aug 21 22:30:40 localhost kernel: device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: [email protected] | |
Aug 21 22:30:40 localhost systemd[1]: Started dracut pre-udev hook. | |
Aug 21 22:30:40 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:30:40 localhost systemd[1]: Starting udev Kernel Device Manager... | |
Aug 21 22:30:40 localhost kernel: audit: type=1130 audit(1471818640.812:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:30:40 localhost systemd-udevd[193]: RUN{builtin}: 'uaccess' unknown /usr/lib64/udev/rules.d/73-seat-late.rules:15 | |
Aug 21 22:30:40 localhost systemd[1]: Started udev Kernel Device Manager. | |
Aug 21 22:30:40 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:30:40 localhost kernel: audit: type=1130 audit(1471818640.833:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:30:40 localhost systemd[1]: Starting Network Service... | |
Aug 21 22:30:40 localhost systemd[1]: Starting dracut pre-trigger hook... | |
Aug 21 22:30:40 localhost systemd-networkd[202]: Enumeration completed | |
Aug 21 22:30:40 localhost systemd[1]: Started Network Service. | |
Aug 21 22:30:40 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-systemd-networkd comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:30:40 localhost kernel: audit: type=1130 audit(1471818640.854:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-systemd-networkd comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:30:40 localhost systemd[1]: Reached target Network. | |
Aug 21 22:30:40 localhost systemd[1]: Starting Network Name Resolution... | |
Aug 21 22:30:40 localhost systemd-resolved[207]: Positive Trust Anchors: | |
Aug 21 22:30:40 localhost systemd-resolved[207]: . IN DS 19036 8 2 49aac11d7b6f6446702e54a1607371607a1a41855200fd2ce1cdde32f24e8fb5 | |
Aug 21 22:30:40 localhost systemd-resolved[207]: Negative trust anchors: 10.in-addr.arpa 16.172.in-addr.arpa 17.172.in-addr.arpa 18.172.in-addr.arpa 19.172.in-addr.arpa 20.172.in-addr.arpa 21.172.in-addr.arpa 22.172.in-addr.arpa 23.172.in-addr.arpa 24.172.in-addr.arpa 25.172.in-addr.arpa 26.172.in-addr.arpa 27.172.in-addr.arpa 28.172.in-addr.arpa 29.172.in-addr.arpa 30.172.in-addr.arpa 31.172.in-addr.arpa 168.192.in-addr.arpa corp home internal intranet lan local private test | |
Aug 21 22:30:40 localhost kernel: audit: type=1130 audit(1471818640.878:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-systemd-resolved comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:30:40 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-systemd-resolved comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:30:40 localhost ignition[214]: Ignition v0.8.0 | |
Aug 21 22:30:40 localhost systemd-resolved[207]: Defaulting to hostname 'linux'. | |
Aug 21 22:30:40 localhost dracut-pre-trigger[203]: rd.md=0: removing MD RAID activation | |
Aug 21 22:30:40 localhost ignition[214]: parsed url from cmdline: "http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa" | |
Aug 21 22:30:40 localhost systemd[1]: Started Network Name Resolution. | |
Aug 21 22:30:40 localhost ignition[214]: failed to fetch http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa: Get http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa: dial tcp: lookup bootcfg.mgt.tite.lan on [::1]:53: read udp [::1]:40901->[::1]:53: read: connection refused | |
Aug 21 22:30:40 localhost systemd[1]: Starting Ignition (disks)... | |
Aug 21 22:30:40 localhost systemd[1]: Started dracut pre-trigger hook. | |
Aug 21 22:30:40 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-trigger comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:30:40 localhost systemd[1]: Starting udev Coldplug all Devices... | |
Aug 21 22:30:40 localhost systemd-udevd[193]: RUN{builtin}: 'uaccess' unknown /usr/lib64/udev/rules.d/73-seat-late.rules:15 | |
Aug 21 22:30:40 localhost systemd[1]: Started udev Coldplug all Devices. | |
Aug 21 22:30:40 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:30:40 localhost systemd[1]: Starting dracut initqueue hook... | |
Aug 21 22:30:41 localhost systemd[1]: Started dracut initqueue hook. | |
Aug 21 22:30:41 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:30:41 localhost systemd[1]: Starting dracut pre-mount hook... | |
Aug 21 22:30:41 localhost systemd[1]: Reached target Remote File Systems (Pre). | |
Aug 21 22:30:41 localhost systemd[1]: Reached target Remote File Systems. | |
Aug 21 22:30:41 localhost systemd[1]: Started dracut pre-mount hook. | |
Aug 21 22:30:41 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-mount comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:30:41 localhost kernel: 8139cp: 8139cp: 10/100 PCI Ethernet driver v1.3 (Mar 22, 2004) | |
Aug 21 22:30:41 localhost kernel: ACPI: bus type USB registered | |
Aug 21 22:30:41 localhost ignition[214]: failed to fetch http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa: Get http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa: dial tcp: lookup bootcfg.mgt.tite.lan on [::1]:53: read udp [::1]:59897->[::1]:53: read: connection refused | |
Aug 21 22:30:41 localhost kernel: usbcore: registered new interface driver usbfs | |
Aug 21 22:30:41 localhost kernel: SCSI subsystem initialized | |
Aug 21 22:30:41 localhost kernel: usbcore: registered new interface driver hub | |
Aug 21 22:30:41 localhost kernel: usbcore: registered new device driver usb | |
Aug 21 22:30:41 localhost kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver | |
Aug 21 22:30:41 localhost kernel: ehci-pci: EHCI PCI platform driver | |
Aug 21 22:30:41 localhost systemd-networkd[202]: lo: Configured | |
Aug 21 22:30:41 localhost kernel: libata version 3.00 loaded. | |
Aug 21 22:30:41 localhost kernel: 8139cp 0000:00:03.0 eth0: RTL-8139C+ at 0xffffc900003c0000, 52:54:00:91:cc:aa, IRQ 11 | |
Aug 21 22:30:41 localhost kernel: 8139too: 8139too Fast Ethernet driver 0.9.28 | |
Aug 21 22:30:41 localhost kernel: virtio-pci 0000:00:05.0: virtio_pci: leaving for legacy driver | |
Aug 21 22:30:41 localhost kernel: ehci-pci 0000:00:06.7: EHCI Host Controller | |
Aug 21 22:30:41 localhost kernel: ehci-pci 0000:00:06.7: new USB bus registered, assigned bus number 1 | |
Aug 21 22:30:41 localhost kernel: ehci-pci 0000:00:06.7: irq 10, io mem 0xfc058000 | |
Aug 21 22:30:41 localhost kernel: ehci-pci 0000:00:06.7: USB 2.0 started, EHCI 1.00 | |
Aug 21 22:30:41 localhost kernel: hub 1-0:1.0: USB hub found | |
Aug 21 22:30:41 localhost kernel: hub 1-0:1.0: 6 ports detected | |
Aug 21 22:30:41 localhost kernel: ata_piix 0000:00:01.1: version 2.13 | |
Aug 21 22:30:41 localhost kernel: uhci_hcd: USB Universal Host Controller Interface driver | |
Aug 21 22:30:41 localhost kernel: scsi host0: ata_piix | |
Aug 21 22:30:41 localhost kernel: scsi host1: ata_piix | |
Aug 21 22:30:41 localhost kernel: ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc1c0 irq 14 | |
Aug 21 22:30:41 localhost kernel: ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc1c8 irq 15 | |
Aug 21 22:30:41 localhost kernel: 8139cp 0000:00:03.0 eth0: link up, 100Mbps, full-duplex, lpa 0x05E1 | |
Aug 21 22:30:41 localhost systemd-networkd[202]: eth0: Gained carrier | |
Aug 21 22:30:41 localhost kernel: virtio-pci 0000:00:07.0: virtio_pci: leaving for legacy driver | |
Aug 21 22:30:41 localhost kernel: uhci_hcd 0000:00:06.0: UHCI Host Controller | |
Aug 21 22:30:41 localhost kernel: tsc: Refined TSC clocksource calibration: 2533.389 MHz | |
Aug 21 22:30:41 localhost kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x24846f0ce03, max_idle_ns: 440795256027 ns | |
Aug 21 22:30:41 localhost kernel: uhci_hcd 0000:00:06.0: new USB bus registered, assigned bus number 2 | |
Aug 21 22:30:41 localhost kernel: uhci_hcd 0000:00:06.0: detected 2 ports | |
Aug 21 22:30:41 localhost kernel: uhci_hcd 0000:00:06.0: irq 10, io base 0x0000c140 | |
Aug 21 22:30:41 localhost kernel: hub 2-0:1.0: USB hub found | |
Aug 21 22:30:41 localhost kernel: hub 2-0:1.0: 2 ports detected | |
Aug 21 22:30:41 localhost kernel: uhci_hcd 0000:00:06.1: UHCI Host Controller | |
Aug 21 22:30:41 localhost kernel: uhci_hcd 0000:00:06.1: new USB bus registered, assigned bus number 3 | |
Aug 21 22:30:41 localhost kernel: uhci_hcd 0000:00:06.1: detected 2 ports | |
Aug 21 22:30:41 localhost kernel: uhci_hcd 0000:00:06.1: irq 11, io base 0x0000c160 | |
Aug 21 22:30:41 localhost kernel: hub 3-0:1.0: USB hub found | |
Aug 21 22:30:41 localhost kernel: hub 3-0:1.0: 2 ports detected | |
Aug 21 22:30:41 localhost kernel: uhci_hcd 0000:00:06.2: UHCI Host Controller | |
Aug 21 22:30:41 localhost kernel: uhci_hcd 0000:00:06.2: new USB bus registered, assigned bus number 4 | |
Aug 21 22:30:41 localhost kernel: uhci_hcd 0000:00:06.2: detected 2 ports | |
Aug 21 22:30:41 localhost kernel: uhci_hcd 0000:00:06.2: irq 11, io base 0x0000c180 | |
Aug 21 22:30:41 localhost kernel: hub 4-0:1.0: USB hub found | |
Aug 21 22:30:41 localhost kernel: hub 4-0:1.0: 2 ports detected | |
Aug 21 22:30:41 localhost kernel: ata1.01: NODEV after polling detection | |
Aug 21 22:30:41 localhost kernel: ata1.00: ATA-7: QEMU HARDDISK, 2.4.1, max UDMA/100 | |
Aug 21 22:30:41 localhost kernel: ata1.00: 20971520 sectors, multi 16: LBA48 | |
Aug 21 22:30:41 localhost kernel: ata1.00: configured for MWDMA2 | |
Aug 21 22:30:41 localhost kernel: scsi 0:0:0:0: Direct-Access ATA QEMU HARDDISK 1 PQ: 0 ANSI: 5 | |
Aug 21 22:30:41 localhost kernel: sd 0:0:0:0: [sda] 20971520 512-byte logical blocks: (10.7 GB/10.0 GiB) | |
Aug 21 22:30:41 localhost kernel: sd 0:0:0:0: [sda] Write Protect is off | |
Aug 21 22:30:41 localhost kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 | |
Aug 21 22:30:41 localhost kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA | |
Aug 21 22:30:41 localhost kernel: sda: sda1 | |
Aug 21 22:30:41 localhost kernel: sd 0:0:0:0: [sda] Attached SCSI disk | |
Aug 21 22:30:41 localhost ignition[214]: failed to fetch http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa: Get http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa: dial tcp: lookup bootcfg.mgt.tite.lan on [::1]:53: read udp [::1]:46569->[::1]:53: read: connection refused | |
Aug 21 22:30:41 localhost systemd-networkd[202]: eth0: DHCPv4 address 172.16.1.12/28 via 172.16.1.2 | |
Aug 21 22:30:41 localhost systemd-networkd[202]: eth0: Not connected to system bus, ignoring transient hostname. | |
Aug 21 22:30:42 localhost ignition[214]: failed to fetch http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa: Get http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa: dial tcp: lookup bootcfg.mgt.tite.lan on [::1]:53: read udp [::1]:54550->[::1]:53: read: connection refused | |
Aug 21 22:30:42 localhost systemd-networkd[202]: eth0: Gained IPv6LL | |
Aug 21 22:30:43 localhost ignition[214]: failed to fetch http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa: Get http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa: dial tcp: lookup bootcfg.mgt.tite.lan on [::1]:53: read udp [::1]:57721->[::1]:53: read: connection refused | |
Aug 21 22:30:47 localhost ignition[214]: GET result: OK | |
Aug 21 22:30:47 localhost ignition[214]: GET result: OK | |
Aug 21 22:30:47 localhost ignition[214]: fetched config: {Ignition:{Version:{Major:2 Minor:0 Patch:0 PreRelease: Metadata:} Config:{Append:[] Replace:<nil>}} Storage:{Disks:[{Device:/dev/sda WipeTable:true Partitions:[{Label:ROOT Number:0 Size:0 Start:0 TypeGUID:}]}] Arrays:[] Filesystems:[{Name:rootfs Mount:0xc8200d5d10 Path:<nil>}] Files:[{Filesystem:rootfs Path:/etc/kubernetes/manifests/kube-proxy.yaml Contents:{Compression: Source:data:,apiVersion%3A%20v1%0Akind%3A%20Pod%0Ametadata%3A%0A%20%20name%3A%20kube-proxy%0A%20%20namespace%3A%20kube-system%0Aspec%3A%0A%20%20hostNetwork%3A%20true%0A%20%20containers%3A%0A%20%20-%20name%3A%20kube-proxy%0A%20%20%20%20image%3A%20quay.io%2Fcoreos%2Fhyperkube%3Av1.3.4_coreos.0%0A%20%20%20%20command%3A%0A%20%20%20%20-%20%2Fhyperkube%0A%20%20%20%20-%20proxy%0A%20%20%20%20-%20--master%3Dhttp%3A%2F%2F127.0.0.1%3A8080%0A%20%20%20%20securityContext%3A%0A%20%20%20%20%20%20privileged%3A%20true%0A%20%20%20%20volumeMounts%3A%0A%20%20%20%20-%20mountPath%3A%20%2Fetc%2Fssl%2Fcerts%0A%20%20%20%20%20%20name%3A%20ssl-certs-host%0A%20%20%20%20%20%20readOnly%3A%20true%0A%20%20volumes%3A%0A%20%20-%20hostPath%3A%0A%20%20%20%20%20%20path%3A%20%2Fusr%2Fshare%2Fca-certificates%0A%20%20%20%20name%3A%20ssl-certs-host%0A Verification:{Hash:<nil>}} Mode:0 User:{Id:0} Group:{Id:0}} {Filesystem:rootfs Path:/etc/kubernetes/manifests/kube-apiserver.yaml Contents:{Compression: Source:data:,apiVersion%3A%20v1%0Akind%3A%20Pod%0Ametadata%3A%0A%20%20name%3A%20kube-apiserver%0A%20%20namespace%3A%20kube-system%0Aspec%3A%0A%20%20hostNetwork%3A%20true%0A%20%20containers%3A%0A%20%20-%20name%3A%20kube-apiserver%0A%20%20%20%20image%3A%20quay.io%2Fcoreos%2Fhyperkube%3Av1.3.4_coreos.0%0A%20%20%20%20command%3A%0A%20%20%20%20-%20%2Fhyperkube%0A%20%20%20%20-%20apiserver%0A%20%20%20%20-%20--bind-address%3D0.0.0.0%0A%20%20%20%20-%20--etcd-servers%3Dhttp%3A%2F%2Fkube-master.lab1.tite.lan%3A2379%0A%20%20%20%20-%20--allow-privileged%3Dtrue%0A%20%20%20%20-%20--service-cluster-ip-range%3D10.3.0.0%2F24%0A%20%20%20%20-%20--secure-port%3D443%0A%20%20%20%20-%20--admission-control%3DNamespaceLifecycle%2CLimitRanger%2CServiceAccount%2CResourceQuota%0A%20%20%20%20-%20--tls-cert-file%3D%2Fetc%2Fkubernetes%2Fssl%2Fapiserver.pem%0A%20%20%20%20-%20--tls-private-key-file%3D%2Fetc%2Fkubernetes%2Fssl%2Fapiserver-key.pem%0A%20%20%20%20-%20--client-ca-file%3D%2Fetc%2Fkubernetes%2Fssl%2Fca.pem%0A%20%20%20%20-%20--service-account-key-file%3D%2Fetc%2Fkubernetes%2Fssl%2Fapiserver-key.pem%0A%20%20%20%20-%20--runtime-config%3Dextensions%2Fv1beta1%2Fnetworkpolicies%3Dtrue%0A%20%20%20%20livenessProbe%3A%0A%20%20%20%20%20%20httpGet%3A%0A%20%20%20%20%20%20%20%20host%3A%20127.0.0.1%0A%20%20%20%20%20%20%20%20port%3A%208080%0A%20%20%20%20%20%20%20%20path%3A%20%2Fhealthz%0A%20%20%20%20%20%20initialDelaySeconds%3A%2015%0A%20%20%20%20%20%20timeoutSeconds%3A%2015%0A%20%20%20%20ports%3A%0A%20%20%20%20-%20containerPort%3A%20443%0A%20%20%20%20%20%20hostPort%3A%20443%0A%20%20%20%20%20%20name%3A%20https%0A%20%20%20%20-%20containerPort%3A%208080%0A%20%20%20%20%20%20hostPort%3A%208080%0A%20%20%20%20%20%20name%3A%20local%0A%20%20%20%20volumeMounts%3A%0A%20%20%20%20-%20mountPath%3A%20%2Fetc%2Fkubernetes%2Fssl%0A%20%20%20%20%20%20name%3A%20ssl-certs-kubernetes%0A%20%20%20%20%20%20readOnly%3A%20true%0A%20%20%20%20-%20mountPath%3A%20%2Fetc%2Fssl%2Fcerts%0A%20%20%20%20%20%20name%3A%20ssl-certs-host%0A%20%20%20%20%20%20readOnly%3A%20true%0A%20%20volumes%3A%0A%20%20-%20hostPath%3A%0A%20%20%20%20%20%20path%3A%20%2Fetc%2Fkubernetes%2Fssl%0A%20%20%20%20name%3A%20ssl-certs-kubernetes%0A%20%20-%20hostPath%3A%0A%20%20%20%20%20%20path%3A%20%2Fusr%2Fshare%2Fca-certificates%0A%20%20%20%20name%3A%20ssl-certs-host%0A Verification:{Hash:<nil>}} Mode:0 User:{Id:0} Group:{Id:0}} {Filesystem:rootfs Path:/etc/flannel/options.env Contents:{Compression: Source:data:,FLANNELD_ETCD_ENDPOINTS%3Dhttp%3A%2F%2Fkube-master.lab1.tite.lan%3A2379%0A Verification:{Hash:<nil>}} Mode:0 User:{Id:0} Group:{Id:0}} {Filesystem:rootfs Path:/etc/kubernetes/manifests/kube-controller-manager.yaml Contents:{Compression: Source:data:,apiVersion%3A%20v1%0Akind%3A%20Pod%0Ametadata%3A%0A%20%20name%3A%20kube-controller-manager%0A%20%20namespace%3A%20kube-system%0Aspec%3A%0A%20%20containers%3A%0A%20%20-%20name%3A%20kube-controller-manager%0A%20%20%20%20image%3A%20quay.io%2Fcoreos%2Fhyperkube%3Av1.3.4_coreos.0%0A%20%20%20%20command%3A%0A%20%20%20%20-%20%2Fhyperkube%0A%20%20%20%20-%20controller-manager%0A%20%20%20%20-%20--master%3Dhttp%3A%2F%2F127.0.0.1%3A8080%0A%20%20%20%20-%20--leader-elect%3Dtrue%0A%20%20%20%20-%20--service-account-private-key-file%3D%2Fetc%2Fkubernetes%2Fssl%2Fapiserver-key.pem%0A%20%20%20%20-%20--root-ca-file%3D%2Fetc%2Fkubernetes%2Fssl%2Fca.pem%0A%20%20%20%20resources%3A%0A%20%20%20%20%20%20requests%3A%0A%20%20%20%20%20%20%20%20cpu%3A%20200m%0A%20%20%20%20livenessProbe%3A%0A%20%20%20%20%20%20httpGet%3A%0A%20%20%20%20%20%20%20%20host%3A%20127.0.0.1%0A%20%20%20%20%20%20%20%20path%3A%20%2Fhealthz%0A%20%20%20%20%20%20%20%20port%3A%2010252%0A%20%20%20%20%20%20initialDelaySeconds%3A%2015%0A%20%20%20%20%20%20timeoutSeconds%3A%2015%0A%20%20%20%20volumeMounts%3A%0A%20%20%20%20-%20mountPath%3A%20%2Fetc%2Fkubernetes%2Fssl%0A%20%20%20%20%20%20name%3A%20ssl-certs-kubernetes%0A%20%20%20%20%20%20readOnly%3A%20true%0A%20%20%20%20-%20mountPath%3A%20%2Fetc%2Fssl%2Fcerts%0A%20%20%20%20%20%20name%3A%20ssl-certs-host%0A%20%20%20%20%20%20readOnly%3A%20true%0A%20%20hostNetwork%3A%20true%0A%20%20volumes%3A%0A%20%20-%20hostPath%3A%0A%20%20%20%20%20%20path%3A%20%2Fetc%2Fkubernetes%2Fssl%0A%20%20%20%20name%3A%20ssl-certs-kubernetes%0A%20%20-%20hostPath%3A%0A%20%20%20%20%20%20path%3A%20%2Fusr%2Fshare%2Fca-certificates%0A%20%20%20%20name%3A%20ssl-certs-host%0A Verification:{Hash:<nil>}} Mode:0 User:{Id:0} Group:{Id:0}} {Filesystem:rootfs Path:/etc/kubernetes/manifests/kube-scheduler.yaml Contents:{Compression: Source:data:,apiVersion%3A%20v1%0Akind%3A%20Pod%0Ametadata%3A%0A%20%20name%3A%20kube-scheduler%0A%20%20namespace%3A%20kube-system%0Aspec%3A%0A%20%20hostNetwork%3A%20true%0A%20%20containers%3A%0A%20%20-%20name%3A%20kube-scheduler%0A%20%20%20%20image%3A%20quay.io%2Fcoreos%2Fhyperkube%3Av1.3.4_coreos.0%0A%20%20%20%20command%3A%0A%20%20%20%20-%20%2Fhyperkube%0A%20%20%20%20-%20scheduler%0A%20%20%20%20-%20--master%3Dhttp%3A%2F%2F127.0.0.1%3A8080%0A%20%20%20%20-%20--leader-elect%3Dtrue%0A%20%20%20%20resources%3A%0A%20%20%20%20%20%20requests%3A%0A%20%20%20%20%20%20%20%20cpu%3A%20100m%0A%20%20%20%20livenessProbe%3A%0A%20%20%20%20%20%20httpGet%3A%0A%20%20%20%20%20%20%20%20host%3A%20127.0.0.1%0A%20%20%20%20%20%20%20%20path%3A%20%2Fhealthz%0A%20%20%20%20%20%20%20%20port%3A%2010251%0A%20%20%20%20%20%20initialDelaySeconds%3A%2015%0A%20%20%20%20%20%20timeoutSeconds%3A%2015%0A Verification:{Hash:<nil>}} Mode:0 User:{Id:0} Group:{Id:0}} {Filesystem:rootfs Path:/srv/kubernetes/manifests/kube-dns-rc.json Contents:{Compression: Source:data:,%7B%0A%20%20%22apiVersion%22%3A%20%22v1%22%2C%0A%20%20%22kind%22%3A%20%22ReplicationController%22%2C%0A%20%20%22metadata%22%3A%20%7B%0A%20%20%20%20%22labels%22%3A%20%7B%0A%20%20%20%20%20%20%22k8s-app%22%3A%20%22kube-dns%22%2C%0A%20%20%20%20%20%20%22kubernetes.io%2Fcluster-service%22%3A%20%22true%22%2C%0A%20%20%20%20%20%20%22version%22%3A%20%22v15%22%0A%20%20%20%20%7D%2C%0A%20%20%20%20%22name%22%3A%20%22kube-dns-v15%22%2C%0A%20%20%20%20%22namespace%22%3A%20%22kube-system%22%0A%20%20%7D%2C%0A%20%20%22spec%22%3A%20%7B%0A%20%20%20%20%22replicas%22%3A%201%2C%0A%20%20%20%20%22selector%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%22k8s-app%22%3A%20%22kube-dns%22%2C%0A%20%20%20%20%20%20%20%20%22version%22%3A%20%22v15%22%0A%20%20%20%20%7D%2C%0A%20%20%20%20%22template%22%3A%20%7B%0A%20%20%20%20%20%20%22metadata%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%22labels%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%22k8s-app%22%3A%20%22kube-dns%22%2C%0A%20%20%20%20%20%20%20%20%20%20%22kubernetes.io%2Fcluster-service%22%3A%20%22true%22%2C%0A%20%20%20%20%20%20%20%20%20%20%22version%22%3A%20%22v15%22%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20%22spec%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%22containers%22%3A%20%5B%0A%20%20%20%20%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22args%22%3A%20%5B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22--domain%3Dcluster.local.%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22--dns-port%3D10053%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22image%22%3A%20%22gcr.io%2Fgoogle_containers%2Fkubedns-amd64%3A1.3%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22livenessProbe%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22failureThreshold%22%3A%205%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22httpGet%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22path%22%3A%20%22%2Fhealthz%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22port%22%3A%208080%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22scheme%22%3A%20%22HTTP%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22initialDelaySeconds%22%3A%2060%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22successThreshold%22%3A%201%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22timeoutSeconds%22%3A%205%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22name%22%3A%20%22kubedns%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22ports%22%3A%20%5B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22containerPort%22%3A%2010053%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22name%22%3A%20%22dns-local%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22protocol%22%3A%20%22UDP%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22containerPort%22%3A%2010053%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22name%22%3A%20%22dns-tcp-local%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22protocol%22%3A%20%22TCP%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22readinessProbe%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22httpGet%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22path%22%3A%20%22%2Freadiness%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22port%22%3A%208081%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22scheme%22%3A%20%22HTTP%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22initialDelaySeconds%22%3A%2030%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22timeoutSeconds%22%3A%205%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22resources%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22limits%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22cpu%22%3A%20%22100m%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22memory%22%3A%20%22200Mi%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22requests%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22cpu%22%3A%20%22100m%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22memory%22%3A%20%2250Mi%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22args%22%3A%20%5B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22--cache-size%3D1000%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22--no-resolv%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22--server%3D127.0.0.1%2310053%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22image%22%3A%20%22gcr.io%2Fgoogle_containers%2Fkube-dnsmasq-amd64%3A1.3%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22name%22%3A%20%22dnsmasq%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22ports%22%3A%20%5B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22containerPort%22%3A%2053%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22name%22%3A%20%22dns%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22protocol%22%3A%20%22UDP%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22containerPort%22%3A%2053%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22name%22%3A%20%22dns-tcp%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22protocol%22%3A%20%22TCP%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5D%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22args%22%3A%20%5B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22-cmd%3Dnslookup%20kubernetes.default.svc.cluster.local%20127.0.0.1%20%3E%2Fdev%2Fnull%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22-port%3D8080%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22-quiet%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22image%22%3A%20%22gcr.io%2Fgoogle_containers%2Fexechealthz-amd64%3A1.0%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22name%22%3A%20%22healthz%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22ports%22%3A%20%5B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22containerPort%22%3A%208080%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22protocol%22%3A%20%22TCP%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22resources%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22limits%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22cpu%22%3A%20%2210m%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22memory%22%3A%20%2220Mi%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22requests%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22cpu%22%3A%20%2210m%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22memory%22%3A%20%2220Mi%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%5D%2C%0A%20%20%20%20%20%20%20%20%22dnsPolicy%22%3A%20%22Default%22%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0A Verification:{Hash:<nil>}} Mode:0 User:{Id:0} Group:{Id:0}} {Filesystem:rootfs Path:/srv/kubernetes/manifests/kube-dns-svc.json Contents:{Compression: Source:data:,%7B%0A%20%20%22apiVersion%22%3A%20%22v1%22%2C%0A%20%20%22kind%22%3A%20%22Service%22%2C%0A%20%20%22metadata%22%3A%20%7B%0A%20%20%20%20%22labels%22%3A%20%7B%0A%20%20%20%20%20%20%22k8s-app%22%3A%20%22kube-dns%22%2C%0A%20%20%20%20%20%20%22kubernetes.io%2Fcluster-service%22%3A%20%22true%22%2C%0A%20%20%20%20%20%20%22kubernetes.io%2Fname%22%3A%20%22KubeDNS%22%0A%20%20%20%20%7D%2C%0A%20%20%20%20%22name%22%3A%20%22kube-dns%22%2C%0A%20%20%20%20%22namespace%22%3A%20%22kube-system%22%0A%20%20%7D%2C%0A%20%20%22spec%22%3A%20%7B%0A%20%20%20%20%22clusterIP%22%3A%20%2210.3.0.10%22%2C%0A%20%20%20%20%22ports%22%3A%20%5B%0A%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%22name%22%3A%20%22dns%22%2C%0A%20%20%20%20%20%20%20%20%22port%22%3A%2053%2C%0A%20%20%20%20%20%20%20%20%22protocol%22%3A%20%22UDP%22%0A%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%22name%22%3A%20%22dns-tcp%22%2C%0A%20%20%20%20%20%20%20%20%22port%22%3A%2053%2C%0A%20%20%20%20%20%20%20%20%22protocol%22%3A%20%22TCP%22%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%5D%2C%0A%20%20%20%20%22selector%22%3A%20%7B%0A%20%20%20%20%20%20%22k8s-app%22%3A%20%22kube-dns%22%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0A Verification:{Hash:<nil>}} Mode:0 User:{Id:0} Group:{Id:0}} {Filesystem:rootfs Path:/srv/kubernetes/manifests/heapster-deployment.json Contents:{Compression: Source:data:,%7B%0A%20%20%22apiVersion%22%3A%20%22extensions%2Fv1beta1%22%2C%0A%20%20%22kind%22%3A%20%22Deployment%22%2C%0A%20%20%22metadata%22%3A%20%7B%0A%20%20%20%20%22labels%22%3A%20%7B%0A%20%20%20%20%20%20%22k8s-app%22%3A%20%22heapster%22%2C%0A%20%20%20%20%20%20%22kubernetes.io%2Fcluster-service%22%3A%20%22true%22%2C%0A%20%20%20%20%20%20%22version%22%3A%20%22v1.1.0%22%0A%20%20%20%20%7D%2C%0A%20%20%20%20%22name%22%3A%20%22heapster-v1.1.0%22%2C%0A%20%20%20%20%22namespace%22%3A%20%22kube-system%22%0A%20%20%7D%2C%0A%20%20%22spec%22%3A%20%7B%0A%20%20%20%20%22replicas%22%3A%201%2C%0A%20%20%20%20%22selector%22%3A%20%7B%0A%20%20%20%20%20%20%22matchLabels%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%22k8s-app%22%3A%20%22heapster%22%2C%0A%20%20%20%20%20%20%20%20%22version%22%3A%20%22v1.1.0%22%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%2C%0A%20%20%20%20%22template%22%3A%20%7B%0A%20%20%20%20%20%20%22metadata%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%22labels%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%22k8s-app%22%3A%20%22heapster%22%2C%0A%20%20%20%20%20%20%20%20%20%20%22version%22%3A%20%22v1.1.0%22%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20%22spec%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%22containers%22%3A%20%5B%0A%20%20%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%22command%22%3A%20%5B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22%2Fheapster%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22--source%3Dkubernetes.summary_api%3A''%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%22image%22%3A%20%22gcr.io%2Fgoogle_containers%2Fheapster%3Av1.1.0%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%22name%22%3A%20%22heapster%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%22resources%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22limits%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22cpu%22%3A%20%22100m%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22memory%22%3A%20%22200Mi%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22requests%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22cpu%22%3A%20%22100m%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22memory%22%3A%20%22200Mi%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%22command%22%3A%20%5B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22%2Fpod_nanny%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22--cpu%3D100m%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22--extra-cpu%3D0.5m%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22--memory%3D200Mi%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22--extra-memory%3D4Mi%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22--threshold%3D5%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22--deployment%3Dheapster-v1.1.0%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22--container%3Dheapster%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22--poll-period%3D300000%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22--estimator%3Dexponential%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%22env%22%3A%20%5B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22name%22%3A%20%22MY_POD_NAME%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22valueFrom%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22fieldRef%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22fieldPath%22%3A%20%22metadata.name%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22name%22%3A%20%22MY_POD_NAMESPACE%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22valueFrom%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22fieldRef%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22fieldPath%22%3A%20%22metadata.namespace%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%22image%22%3A%20%22gcr.io%2Fgoogle_containers%2Faddon-resizer%3A1.3%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%22name%22%3A%20%22heapster-nanny%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%22resources%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22limits%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22cpu%22%3A%20%2250m%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22memory%22%3A%20%22100Mi%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22requests%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22cpu%22%3A%20%2250m%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22memory%22%3A%20%22100Mi%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%5D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0A Verification:{Hash:<nil>}} Mode:0 User:{Id:0} Group:{Id:0}} {Filesystem:rootfs Path:/srv/kubernetes/manifests/heapster-svc.json Contents:{Compression: Source:data:,%7B%0A%20%20%22apiVersion%22%3A%20%22v1%22%2C%0A%20%20%22kind%22%3A%20%22Service%22%2C%0A%20%20%22metadata%22%3A%20%7B%0A%20%20%20%20%22labels%22%3A%20%7B%0A%20%20%20%20%20%20%22kubernetes.io%2Fcluster-service%22%3A%20%22true%22%2C%0A%20%20%20%20%20%20%22kubernetes.io%2Fname%22%3A%20%22Heapster%22%0A%20%20%20%20%7D%2C%0A%20%20%20%20%22name%22%3A%20%22heapster%22%2C%0A%20%20%20%20%22namespace%22%3A%20%22kube-system%22%0A%20%20%7D%2C%0A%20%20%22spec%22%3A%20%7B%0A%20%20%20%20%22ports%22%3A%20%5B%0A%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%22port%22%3A%2080%2C%0A%20%20%20%20%20%20%20%20%22targetPort%22%3A%208082%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%5D%2C%0A%20%20%20%20%22selector%22%3A%20%7B%0A%20%20%20%20%20%20%22k8s-app%22%3A%20%22heapster%22%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0A Verification:{Hash:<nil>}} Mode:0 User:{Id:0} Group:{Id:0}} {Filesystem:rootfs Path:/srv/kubernetes/manifests/kube-dashboard-rc.json Contents:{Compression: Source:data:,%7B%0A%20%20%22apiVersion%22%3A%20%22v1%22%2C%0A%20%20%22kind%22%3A%20%22ReplicationController%22%2C%0A%20%20%22metadata%22%3A%20%7B%0A%20%20%20%20%22labels%22%3A%20%7B%0A%20%20%20%20%20%20%22k8s-app%22%3A%20%22kubernetes-dashboard%22%2C%0A%20%20%20%20%20%20%22kubernetes.io%2Fcluster-service%22%3A%20%22true%22%2C%0A%20%20%20%20%20%20%22version%22%3A%20%22v1.1.0%22%0A%20%20%20%20%7D%2C%0A%20%20%20%20%22name%22%3A%20%22kubernetes-dashboard-v1.1.0%22%2C%0A%20%20%20%20%22namespace%22%3A%20%22kube-system%22%0A%20%20%7D%2C%0A%20%20%22spec%22%3A%20%7B%0A%20%20%20%20%22replicas%22%3A%201%2C%0A%20%20%20%20%22selector%22%3A%20%7B%0A%20%20%20%20%20%20%22k8s-app%22%3A%20%22kubernetes-dashboard%22%0A%20%20%20%20%7D%2C%0A%20%20%20%20%22template%22%3A%20%7B%0A%20%20%20%20%20%20%22metadata%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%22labels%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%22k8s-app%22%3A%20%22kubernetes-dashboard%22%2C%0A%20%20%20%20%20%20%20%20%20%20%22kubernetes.io%2Fcluster-service%22%3A%20%22true%22%2C%0A%20%20%20%20%20%20%20%20%20%20%22version%22%3A%20%22v1.1.0%22%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20%22spec%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%22containers%22%3A%20%5B%0A%20%20%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%22image%22%3A%20%22gcr.io%2Fgoogle_containers%2Fkubernetes-dashboard-amd64%3Av1.1.0%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%22livenessProbe%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22httpGet%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22path%22%3A%20%22%2F%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22port%22%3A%209090%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22initialDelaySeconds%22%3A%2030%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22timeoutSeconds%22%3A%2030%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%22name%22%3A%20%22kubernetes-dashboard%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%22ports%22%3A%20%5B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22containerPort%22%3A%209090%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%22resources%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22limits%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22cpu%22%3A%20%22100m%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22memory%22%3A%20%2250Mi%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22requests%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22cpu%22%3A%20%22100m%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22memory%22%3A%20%2250Mi%22%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%5D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0A Verification:{Hash:<nil>}} Mode:0 User:{Id:0} Group:{Id:0}} {Filesystem:rootfs Path:/srv/kubernetes/manifests/kube-dashboard-svc.json Contents:{Compression: Source:data:,%7B%0A%20%20%22apiVersion%22%3A%20%22v1%22%2C%0A%20%20%22kind%22%3A%20%22Service%22%2C%0A%20%20%22metadata%22%3A%20%7B%0A%20%20%20%20%22labels%22%3A%20%7B%0A%20%20%20%20%20%20%22k8s-app%22%3A%20%22kubernetes-dashboard%22%2C%0A%20%20%20%20%20%20%22kubernetes.io%2Fcluster-service%22%3A%20%22true%22%0A%20%20%20%20%7D%2C%0A%20%20%20%20%22name%22%3A%20%22kubernetes-dashboard%22%2C%0A%20%20%20%20%22namespace%22%3A%20%22kube-system%22%0A%20%20%7D%2C%0A%20%20%22spec%22%3A%20%7B%0A%20%20%20%20%22ports%22%3A%20%5B%0A%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%22port%22%3A%2080%2C%0A%20%20%20%20%20%20%20%20%22targetPort%22%3A%209090%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%5D%2C%0A%20%20%20%20%22selector%22%3A%20%7B%0A%20%20%20%20%20%20%22k8s-app%22%3A%20%22kubernetes-dashboard%22%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0A Verification:{Hash:<nil>}} Mode:0 User:{Id:0} Group:{Id:0}} {Filesystem:rootfs Path:/opt/init-flannel Contents:{Compression: Source:data:,%23!%2Fbin%2Fbash%20-ex%0Afunction%20init_flannel%20%7B%0A%20%20echo%20%22Waiting%20for%20etcd...%22%0A%20%20while%20true%0A%20%20do%0A%20%20%20%20%20%20IFS%3D'%2C'%20read%20-ra%20ES%20%3C%3C%3C%20%22http%3A%2F%2Fkube-master.lab1.tite.lan%3A2379%22%0A%20%20%20%20%20%20for%20ETCD%20in%20%22%24%7BES%5B%40%5D%7D%22%3B%20do%0A%20%20%20%20%20%20%20%20%20%20echo%20%22Trying%3A%20%24ETCD%22%0A%20%20%20%20%20%20%20%20%20%20if%20%5B%20-n%20%22%24(curl%20--silent%20%22%24ETCD%2Fv2%2Fmachines%22)%22%20%5D%3B%20then%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20local%20ACTIVE_ETCD%3D%24ETCD%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20break%0A%20%20%20%20%20%20%20%20%20%20fi%0A%20%20%20%20%20%20%20%20%20%20sleep%201%0A%20%20%20%20%20%20done%0A%20%20%20%20%20%20if%20%5B%20-n%20%22%24ACTIVE_ETCD%22%20%5D%3B%20then%0A%20%20%20%20%20%20%20%20%20%20break%0A%20%20%20%20%20%20fi%0A%20%20done%0A%20%20RES%3D%24(curl%20--silent%20-X%20PUT%20-d%20%22value%3D%7B%5C%22Network%5C%22%3A%5C%2210.2.0.0%2F16%5C%22%2C%5C%22Backend%5C%22%3A%7B%5C%22Type%5C%22%3A%5C%22vxlan%5C%22%7D%7D%22%20%22%24ACTIVE_ETCD%2Fv2%2Fkeys%2Fcoreos.com%2Fnetwork%2Fconfig%3FprevExist%3Dfalse%22)%0A%20%20if%20%5B%20-z%20%22%24(echo%20%24RES%20%7C%20grep%20'%22action%22%3A%22create%22')%22%20%5D%20%26%26%20%5B%20-z%20%22%24(echo%20%24RES%20%7C%20grep%20'Key%20already%20exists')%22%20%5D%3B%20then%0A%20%20%20%20%20%20echo%20%22Unexpected%20error%20configuring%20flannel%20pod%20network%3A%20%24RES%22%0A%20%20fi%0A%7D%0Ainit_flannel%0A Verification:{Hash:<nil>}} Mode:356 User:{Id:0} Group:{Id:0}} {Filesystem:rootfs Path:/opt/k8s-addons Contents:{Compression: Source:data:,%23!%2Fbin%2Fbash%20-ex%0Aecho%20%22Waiting%20for%20Kubernetes%20API...%22%0Auntil%20curl%20--silent%20%22http%3A%2F%2F127.0.0.1%3A8080%2Fversion%22%0Ado%0A%20%20sleep%205%0Adone%0Aecho%20%22K8S%3A%20DNS%20addon%22%0Acurl%20--silent%20-H%20%22Content-Type%3A%20application%2Fjson%22%20-XPOST%20-d%22%24(cat%20%2Fsrv%2Fkubernetes%2Fmanifests%2Fkube-dns-rc.json)%22%20%22http%3A%2F%2F127.0.0.1%3A8080%2Fapi%2Fv1%2Fnamespaces%2Fkube-system%2Freplicationcontrollers%22%20%3E%20%2Fdev%2Fnull%0Acurl%20--silent%20-H%20%22Content-Type%3A%20application%2Fjson%22%20-XPOST%20-d%22%24(cat%20%2Fsrv%2Fkubernetes%2Fmanifests%2Fkube-dns-svc.json)%22%20%22http%3A%2F%2F127.0.0.1%3A8080%2Fapi%2Fv1%2Fnamespaces%2Fkube-system%2Fservices%22%20%3E%20%2Fdev%2Fnull%0Aecho%20%22K8S%3A%20Heapster%20addon%22%0Acurl%20--silent%20-H%20%22Content-Type%3A%20application%2Fjson%22%20-XPOST%20-d%22%24(cat%20%2Fsrv%2Fkubernetes%2Fmanifests%2Fheapster-deployment.json)%22%20%22http%3A%2F%2F127.0.0.1%3A8080%2Fapis%2Fextensions%2Fv1beta1%2Fnamespaces%2Fkube-system%2Fdeployments%22%0Acurl%20--silent%20-H%20%22Content-Type%3A%20application%2Fjson%22%20-XPOST%20-d%22%24(cat%20%2Fsrv%2Fkubernetes%2Fmanifests%2Fheapster-svc.json)%22%20%22http%3A%2F%2F127.0.0.1%3A8080%2Fapi%2Fv1%2Fnamespaces%2Fkube-system%2Fservices%22%0Aecho%20%22K8S%3A%20Dashboard%20addon%22%0Acurl%20--silent%20-H%20%22Content-Type%3A%20application%2Fjson%22%20-XPOST%20-d%22%24(cat%20%2Fsrv%2Fkubernetes%2Fmanifests%2Fkube-dashboard-rc.json)%22%20%22http%3A%2F%2F127.0.0.1%3A8080%2Fapi%2Fv1%2Fnamespaces%2Fkube-system%2Freplicationcontrollers%22%20%3E%20%2Fdev%2Fnull%0Acurl%20--silent%20-H%20%22Content-Type%3A%20application%2Fjson%22%20-XPOST%20-d%22%24(cat%20%2Fsrv%2Fkubernetes%2Fmanifests%2Fkube-dashboard-svc.json)%22%20%22http%3A%2F%2F127.0.0.1%3A8080%2Fapi%2Fv1%2Fnamespaces%2Fkube-system%2Fservices%22%20%3E%20%2Fdev%2Fnull%0A Verification:{Hash:<nil>}} Mode:356 User:{Id:0} Group:{Id:0}}]} Systemd:{Units:[{Name:etcd2.service Enable:true Mask:false Contents: DropIns:[{Name:40-etcd-cluster.conf Contents:[Service] | |
Environment="ETCD_NAME=node1" | |
Environment="ETCD_ADVERTISE_CLIENT_URLS=http://kube-master.lab1.tite.lan:2379" | |
Environment="ETCD_INITIAL_ADVERTISE_PEER_URLS=http://kube-master.lab1.tite.lan:2380" | |
Environment="ETCD_LISTEN_CLIENT_URLS=http://0.0.0.0:2379" | |
Environment="ETCD_LISTEN_PEER_URLS=http://kube-master.lab1.tite.lan:2380" | |
Environment="ETCD_INITIAL_CLUSTER=node1=http://kube-master.lab1.tite.lan:2380" | |
Environment="ETCD_STRICT_RECONFIG_CHECK=true" | |
}]} {Name:flanneld.service Enable:false Mask:false Contents: DropIns:[{Name:40-ExecStartPre-symlink.conf Contents:[Service] | |
EnvironmentFile=-/etc/flannel/options.env | |
ExecStartPre=/opt/init-flannel | |
}]} {Name:docker.service Enable:false Mask:false Contents: DropIns:[{Name:40-flannel.conf Contents:[Unit] | |
Requires=flanneld.service | |
After=flanneld.service | |
}]} {Name:[email protected] Enable:false Mask:false Contents:[Unit] | |
Description=Fetch Kubernetes certificate assets | |
Requires=network-online.target | |
After=network-online.target | |
[Service] | |
ExecStartPre=/usr/bin/mkdir -p /etc/kubernetes/ssl | |
ExecStart=/usr/bin/bash -c "[ -f /etc/kubernetes/ssl/%i ] || curl http://bootcfg.mgt.tite.lan:8080/assets/tls/%i -o /etc/kubernetes/ssl/%i" | |
DropIns:[]} {Name:k8s-assets.target Enable:false Mask:false Contents:[Unit] | |
Description=Load Kubernetes Assets | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
DropIns:[]} {Name:kubelet.service Enable:true Mask:false Contents:[Unit] | |
Description=Kubelet via Hyperkube ACI | |
Wants=flanneld.service | |
Requires=k8s-assets.target | |
After=k8s-assets.target | |
[Service] | |
Environment="RKT_OPTS=--volume=resolv,kind=host,source=/etc/resolv.conf --mount volume=resolv,target=/etc/resolv.conf --volume var-log,kind=host,source=/var/log --mount volume=var-log,target=/var/log" | |
Environment=KUBELET_VERSION=v1.3.4_coreos.0 | |
ExecStartPre=/usr/bin/mkdir -p /etc/kubernetes/manifests | |
ExecStartPre=/usr/bin/systemctl is-active flanneld.service | |
ExecStart=/usr/lib/coreos/kubelet-wrapper \ | |
--api-servers=http://127.0.0.1:8080 \ | |
--register-schedulable=true \ | |
--allow-privileged=true \ | |
--config=/etc/kubernetes/manifests \ | |
--hostname-override=kube-master.lab1.tite.lan \ | |
--cluster_dns=10.3.0.10 \ | |
--cluster_domain=cluster.local | |
Restart=always | |
RestartSec=10 | |
[Install] | |
WantedBy=multi-user.target | |
DropIns:[]} {Name:k8s-addons.service Enable:true Mask:false Contents:[Unit] | |
Description=Kubernetes Addons | |
[Service] | |
Type=oneshot | |
ExecStart=/opt/k8s-addons | |
[Install] | |
WantedBy=multi-user.target | |
DropIns:[]}]} Networkd:{Units:[]} Passwd:{Users:[{Name:core PasswordHash: SSHAuthorizedKeys:[ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDRk6/xTRumdiCTCukoKuZEfYuh7+I6yDUtBTIRX8ES5OrgRADCImfRBoBKbQW9O75k1j5loHW9BExLkM8RThJ1tu0LbeCepPYkmy+pgD7pbrAL8DAMSUTNbQAnNxCuKc+EmryyQMKDHB/HI4dsHfcx+HgQ3cjUyRu/MMM2FVV/izB6knFVwMITxAlFhscdrrw7qRdC1HL0Ax/a7VhF/OGOaIX7QYsjeI0Q1E1yS4kQA4SMwm5cggcPgRDuI2qbOLs3KY1E9AzJ+gVZR0krFFe5cfaKLdM/Ap1kevlXNchLWs4S+qRbT1osi4zvyZwuIq0R1efawpmhjgRugphbh26B [email protected]] Create:<nil>}] Groups:[]}} | |
Aug 21 22:30:47 localhost ignition[214]: disks: createPartitions: op(1): [started] waiting for devices [/dev/sda] | |
Aug 21 22:30:47 localhost ignition[214]: disks: createPartitions: op(1): [finished] waiting for devices [/dev/sda] | |
Aug 21 22:30:47 localhost ignition[214]: disks: createPartitions: op(2): [started] partitioning "/dev/sda" | |
Aug 21 22:30:47 localhost ignition[214]: disks: createPartitions: op(2): wiping partition table requested on "/dev/sda" | |
Aug 21 22:30:47 localhost ignition[214]: disks: createPartitions: op(2): op(3): [started] wiping table on "/dev/sda" | |
Aug 21 22:30:47 localhost ignition[214]: disks: createPartitions: op(2): op(3): executing: /sbin/sgdisk [--zap-all /dev/sda] | |
Aug 21 22:30:48 localhost ignition[214]: disks: createPartitions: op(2): op(3): [finished] wiping table on "/dev/sda" | |
Aug 21 22:30:48 localhost ignition[214]: disks: createPartitions: op(2): op(4): [started] creating 1 partitions on "/dev/sda" | |
Aug 21 22:30:48 localhost ignition[214]: disks: createPartitions: op(2): op(4): executing: /sbin/sgdisk [--new=0:0:+0 --change-name=0:ROOT /dev/sda] | |
Aug 21 22:30:49 localhost kernel: sda: sda1 | |
Aug 21 22:30:49 localhost ignition[214]: disks: createPartitions: op(2): op(4): [finished] creating 1 partitions on "/dev/sda" | |
Aug 21 22:30:49 localhost ignition[214]: disks: createPartitions: op(2): [finished] partitioning "/dev/sda" | |
Aug 21 22:30:49 localhost ignition[214]: disks: createFilesystems: op(5): [started] waiting for devices [/dev/sda1] | |
Aug 21 22:30:49 localhost systemd[1]: Found device QEMU_HARDDISK ROOT. | |
Aug 21 22:30:49 localhost ignition[214]: disks: createFilesystems: op(5): [finished] waiting for devices [/dev/sda1] | |
Aug 21 22:30:49 localhost ignition[214]: disks: createFilesystems: op(6): [started] creating "ext4" filesystem on "/dev/sda1" | |
Aug 21 22:30:49 localhost ignition[214]: disks: createFilesystems: op(6): executing: /sbin/mkfs.ext4 [-LROOT -p -F /dev/sda1] | |
Aug 21 22:30:49 localhost kernel: random: nonblocking pool is initialized | |
Aug 21 22:30:55 localhost systemd-networkd[202]: eth0: Configured | |
Aug 21 22:31:48 localhost ignition[214]: disks: createFilesystems: op(6): [finished] creating "ext4" filesystem on "/dev/sda1" | |
Aug 21 22:31:48 localhost systemd[1]: Started Ignition (disks). | |
Aug 21 22:31:48 localhost kernel: audit_printk_skb: 12 callbacks suppressed | |
Aug 21 22:31:48 localhost kernel: audit: type=1130 audit(1471818708.330:15): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=ignition-disks comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:48 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=ignition-disks comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:48 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=ignition-disks comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:48 localhost kernel: audit: type=1131 audit(1471818708.334:16): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=ignition-disks comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:48 localhost systemd[1]: Reached target Local File Systems (Pre). | |
Aug 21 22:31:48 localhost systemd[1]: Mounting /sysroot... | |
Aug 21 22:31:48 localhost systemd[1]: Reached target Local File Systems. | |
Aug 21 22:31:48 localhost systemd[1]: Reached target System Initialization. | |
Aug 21 22:31:48 localhost systemd[1]: Reached target Basic System. | |
Aug 21 22:31:48 localhost systemd[1]: Mounted /sysroot. | |
Aug 21 22:31:48 localhost systemd[1]: Mounting /sysroot/usr... | |
Aug 21 22:31:48 localhost kernel: loop: module loaded | |
Aug 21 22:31:48 localhost kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher | |
Aug 21 22:31:48 localhost systemd[1]: Mounted /sysroot/usr. | |
Aug 21 22:31:48 localhost systemd[1]: Reached target Initrd Root File System. | |
Aug 21 22:31:48 localhost systemd[1]: Starting Root filesystem setup... | |
Aug 21 22:31:48 localhost systemd[1]: Started Root filesystem setup. | |
Aug 21 22:31:48 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-setup-root comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:48 localhost kernel: audit: type=1130 audit(1471818708.432:17): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-setup-root comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:48 localhost kernel: audit: type=1131 audit(1471818708.435:18): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-setup-root comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:48 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-setup-root comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:48 localhost systemd[1]: Starting Ignition (files)... | |
Aug 21 22:31:48 localhost ignition[334]: Ignition v0.8.0 | |
Aug 21 22:31:48 localhost ignition[334]: files: createUsers: op(1): [started] adding ssh keys to user "core" | |
Aug 21 22:31:48 localhost ignition[334]: files: createUsers: op(1): [finished] adding ssh keys to user "core" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(2): [started] mounting "/dev/sda1" at "/tmp/ignition-files865389815" | |
Aug 21 22:31:48 localhost kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(2): [finished] mounting "/dev/sda1" at "/tmp/ignition-files865389815" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(3): [started] writing file "/etc/kubernetes/manifests/kube-proxy.yaml" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(3): [finished] writing file "/etc/kubernetes/manifests/kube-proxy.yaml" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(4): [started] writing file "/etc/kubernetes/manifests/kube-apiserver.yaml" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(4): [finished] writing file "/etc/kubernetes/manifests/kube-apiserver.yaml" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(5): [started] writing file "/etc/flannel/options.env" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(5): [finished] writing file "/etc/flannel/options.env" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(6): [started] writing file "/etc/kubernetes/manifests/kube-controller-manager.yaml" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(6): [finished] writing file "/etc/kubernetes/manifests/kube-controller-manager.yaml" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(7): [started] writing file "/etc/kubernetes/manifests/kube-scheduler.yaml" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(7): [finished] writing file "/etc/kubernetes/manifests/kube-scheduler.yaml" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(8): [started] writing file "/srv/kubernetes/manifests/kube-dns-rc.json" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(8): [finished] writing file "/srv/kubernetes/manifests/kube-dns-rc.json" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(9): [started] writing file "/srv/kubernetes/manifests/kube-dns-svc.json" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(9): [finished] writing file "/srv/kubernetes/manifests/kube-dns-svc.json" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(a): [started] writing file "/srv/kubernetes/manifests/heapster-deployment.json" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(a): [finished] writing file "/srv/kubernetes/manifests/heapster-deployment.json" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(b): [started] writing file "/srv/kubernetes/manifests/heapster-svc.json" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(b): [finished] writing file "/srv/kubernetes/manifests/heapster-svc.json" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(c): [started] writing file "/srv/kubernetes/manifests/kube-dashboard-rc.json" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(c): [finished] writing file "/srv/kubernetes/manifests/kube-dashboard-rc.json" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(d): [started] writing file "/srv/kubernetes/manifests/kube-dashboard-svc.json" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(d): [finished] writing file "/srv/kubernetes/manifests/kube-dashboard-svc.json" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(e): [started] writing file "/opt/init-flannel" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(e): [finished] writing file "/opt/init-flannel" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(f): [started] writing file "/opt/k8s-addons" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(f): [finished] writing file "/opt/k8s-addons" | |
Aug 21 22:31:48 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(10): [started] unmounting "/dev/sda1" at "/tmp/ignition-files865389815" | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=ignition-files comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost systemd[1]: Started Ignition (files). | |
Aug 21 22:31:49 localhost kernel: audit: type=1130 audit(1471818709.570:19): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=ignition-files comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost kernel: audit: type=1131 audit(1471818709.573:20): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=ignition-files comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=ignition-files comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost ignition[334]: files: createFilesystemsFiles: createFiles: op(10): [finished] unmounting "/dev/sda1" at "/tmp/ignition-files865389815" | |
Aug 21 22:31:49 localhost systemd[1]: Starting Reload Configuration from the Real Root... | |
Aug 21 22:31:49 localhost ignition[334]: files: op(11): [started] writing unit "etcd2.service" | |
Aug 21 22:31:49 localhost systemd[1]: Reached target ignition.target. | |
Aug 21 22:31:49 localhost ignition[334]: files: op(11): op(12): [started] writing dropin "40-etcd-cluster.conf" at "etc/systemd/system/etcd2.service.d/40-etcd-cluster.conf" | |
Aug 21 22:31:49 localhost systemd[1]: Reloading. | |
Aug 21 22:31:49 localhost ignition[334]: files: op(11): op(12): [finished] writing dropin "40-etcd-cluster.conf" at "etc/systemd/system/etcd2.service.d/40-etcd-cluster.conf" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(11): [finished] writing unit "etcd2.service" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(13): [started] enabling unit "etcd2.service" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(13): [finished] enabling unit "etcd2.service" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(14): [started] writing unit "flanneld.service" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(14): op(15): [started] writing dropin "40-ExecStartPre-symlink.conf" at "etc/systemd/system/flanneld.service.d/40-ExecStartPre-symlink.conf" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(14): op(15): [finished] writing dropin "40-ExecStartPre-symlink.conf" at "etc/systemd/system/flanneld.service.d/40-ExecStartPre-symlink.conf" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(14): [finished] writing unit "flanneld.service" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(16): [started] writing unit "docker.service" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(16): op(17): [started] writing dropin "40-flannel.conf" at "etc/systemd/system/docker.service.d/40-flannel.conf" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(16): op(17): [finished] writing dropin "40-flannel.conf" at "etc/systemd/system/docker.service.d/40-flannel.conf" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(16): [finished] writing unit "docker.service" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(18): [started] writing unit "[email protected]" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(18): op(19): [started] writing unit "[email protected]" at "etc/systemd/system/[email protected]" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(18): op(19): [finished] writing unit "[email protected]" at "etc/systemd/system/[email protected]" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(18): [finished] writing unit "[email protected]" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(1a): [started] writing unit "k8s-assets.target" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(1a): op(1b): [started] writing unit "k8s-assets.target" at "etc/systemd/system/k8s-assets.target" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(1a): op(1b): [finished] writing unit "k8s-assets.target" at "etc/systemd/system/k8s-assets.target" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(1a): [finished] writing unit "k8s-assets.target" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(1c): [started] writing unit "kubelet.service" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(1c): op(1d): [started] writing unit "kubelet.service" at "etc/systemd/system/kubelet.service" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(1c): op(1d): [finished] writing unit "kubelet.service" at "etc/systemd/system/kubelet.service" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(1c): [finished] writing unit "kubelet.service" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(1e): [started] enabling unit "kubelet.service" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(1e): [finished] enabling unit "kubelet.service" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(1f): [started] writing unit "k8s-addons.service" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(1f): op(20): [started] writing unit "k8s-addons.service" at "etc/systemd/system/k8s-addons.service" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(1f): op(20): [finished] writing unit "k8s-addons.service" at "etc/systemd/system/k8s-addons.service" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(1f): [finished] writing unit "k8s-addons.service" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(21): [started] enabling unit "k8s-addons.service" | |
Aug 21 22:31:49 localhost ignition[334]: files: op(21): [finished] enabling unit "k8s-addons.service" | |
Aug 21 22:31:49 localhost systemd[1]: Started Reload Configuration from the Real Root. | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost kernel: audit: type=1130 audit(1471818709.756:21): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost kernel: audit: type=1131 audit(1471818709.759:22): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost systemd[1]: Reached target Initrd File Systems. | |
Aug 21 22:31:49 localhost systemd[1]: Reached target Initrd Default Target. | |
Aug 21 22:31:49 localhost systemd[1]: Starting dracut pre-pivot and cleanup hook... | |
Aug 21 22:31:49 localhost systemd[1]: Started dracut pre-pivot and cleanup hook. | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost kernel: audit: type=1130 audit(1471818709.789:23): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost systemd[1]: Starting Cleaning Up and Shutting Down Daemons... | |
Aug 21 22:31:49 localhost systemd[1]: Stopped Cleaning Up and Shutting Down Daemons. | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-cleanup comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost kernel: audit: type=1130 audit(1471818709.805:24): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-cleanup comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-cleanup comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost systemd[1]: Stopped target ignition.target. | |
Aug 21 22:31:49 localhost systemd[1]: Stopping Network Name Resolution... | |
Aug 21 22:31:49 localhost systemd[1]: Stopped dracut pre-pivot and cleanup hook. | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost systemd[1]: Stopped target Initrd Default Target. | |
Aug 21 22:31:49 localhost systemd[1]: Stopped target Basic System. | |
Aug 21 22:31:49 localhost systemd[1]: Stopped target Sockets. | |
Aug 21 22:31:49 localhost systemd[1]: Stopped target System Initialization. | |
Aug 21 22:31:49 localhost systemd[1]: Stopped target Local File Systems. | |
Aug 21 22:31:49 localhost systemd[1]: Stopped target Local File Systems (Pre). | |
Aug 21 22:31:49 localhost systemd[1]: Stopped Create list of required static device nodes for the current kernel. | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=kmod-static-nodes comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=kmod-static-nodes comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost systemd[1]: Stopped target Swap. | |
Aug 21 22:31:49 localhost systemd[1]: Stopped Apply Kernel Variables. | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost systemd[1]: Stopped target Paths. | |
Aug 21 22:31:49 localhost systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch. | |
Aug 21 22:31:49 localhost systemd[1]: Stopped target Remote File Systems. | |
Aug 21 22:31:49 localhost systemd[1]: Stopped target Remote File Systems (Pre). | |
Aug 21 22:31:49 localhost systemd[1]: Stopped target Timers. | |
Aug 21 22:31:49 localhost systemd[1]: Stopped dracut pre-mount hook. | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-mount comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-mount comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost systemd[1]: Stopped dracut initqueue hook. | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost systemd[1]: Stopped target Encrypted Volumes. | |
Aug 21 22:31:49 localhost systemd[1]: Stopped target Slices. | |
Aug 21 22:31:49 localhost systemd[1]: Stopped udev Coldplug all Devices. | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost systemd[1]: Stopped dracut pre-trigger hook. | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-trigger comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-trigger comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost systemd[1]: Stopped Network Name Resolution. | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-systemd-resolved comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-systemd-resolved comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost systemd[1]: Stopped target Network. | |
Aug 21 22:31:49 localhost systemd[1]: Stopping Network Service... | |
Aug 21 22:31:49 localhost systemd-networkd[202]: lo: Lost carrier | |
Aug 21 22:31:49 localhost systemd-networkd[202]: eth0: Lost carrier | |
Aug 21 22:31:49 localhost systemd-networkd[202]: eth0: DHCP lease lost | |
Aug 21 22:31:49 localhost systemd-networkd[202]: eth0: Not connected to system bus, ignoring transient hostname. | |
Aug 21 22:31:49 localhost systemd[1]: Stopped Network Service. | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-systemd-networkd comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-systemd-networkd comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost systemd[1]: Cannot find unit for notify message of PID 202. | |
Aug 21 22:31:49 localhost systemd[1]: Stopping udev Kernel Device Manager... | |
Aug 21 22:31:49 localhost systemd[1]: Stopped udev Kernel Device Manager. | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost systemd[1]: Stopped dracut pre-udev hook. | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost systemd[1]: Stopped dracut cmdline hook. | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost systemd[1]: Closed udev Control Socket. | |
Aug 21 22:31:49 localhost systemd[1]: Closed udev Kernel Socket. | |
Aug 21 22:31:49 localhost systemd[1]: Starting Cleanup udevd DB... | |
Aug 21 22:31:49 localhost systemd[1]: Started Cleanup udevd DB. | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-udevadm-cleanup-db comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-udevadm-cleanup-db comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:49 localhost systemd[1]: Reached target Switch Root. | |
Aug 21 22:31:49 localhost systemd[1]: Starting Switch Root... | |
Aug 21 22:31:49 localhost systemd[1]: Switching root. | |
Aug 21 22:31:49 localhost systemd-journald[97]: Journal stopped | |
Aug 21 22:31:50 localhost systemd-journald[464]: Runtime journal (/run/log/journal/) is 8.0M, max 100.2M, 92.2M free. | |
Aug 21 22:31:50 localhost systemd-journald[97]: Received SIGTERM from PID 1 (systemd). | |
Aug 21 22:31:50 localhost kernel: SELinux: 4096 avtab hash slots, 13428 rules. | |
Aug 21 22:31:50 localhost kernel: SELinux: 4096 avtab hash slots, 13428 rules. | |
Aug 21 22:31:50 localhost kernel: SELinux: 6 users, 6 roles, 1327 types, 55 bools, 1 sens, 1024 cats | |
Aug 21 22:31:50 localhost kernel: SELinux: 92 classes, 13428 rules | |
Aug 21 22:31:50 localhost kernel: SELinux: Permission validate_trans in class security not defined in policy. | |
Aug 21 22:31:50 localhost kernel: SELinux: Permission module_load in class system not defined in policy. | |
Aug 21 22:31:50 localhost kernel: SELinux: Class cap_userns not defined in policy. | |
Aug 21 22:31:50 localhost kernel: SELinux: Class cap2_userns not defined in policy. | |
Aug 21 22:31:50 localhost kernel: SELinux: the above unknown classes and permissions will be allowed | |
Aug 21 22:31:50 localhost kernel: SELinux: Completing initialization. | |
Aug 21 22:31:50 localhost kernel: SELinux: Setting up existing superblocks. | |
Aug 21 22:31:50 localhost systemd[1]: Successfully loaded SELinux policy in 38.425ms. | |
Aug 21 22:31:50 localhost kernel: ip_tables: (C) 2000-2006 Netfilter Core Team | |
Aug 21 22:31:50 localhost systemd[1]: Relabelled /dev and /run in 9.828ms. | |
Aug 21 22:31:50 localhost systemd-journald[464]: Journal started | |
Aug 21 22:31:50 localhost audit: MAC_POLICY_LOAD policy loaded auid=4294967295 ses=4294967295 | |
Aug 21 22:31:50 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:50 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:50 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:50 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:50 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:50 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:50 localhost audit: CONFIG_CHANGE audit_enabled=1 old=1 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 res=1 | |
Aug 21 22:31:50 localhost systemd[1]: systemd 229 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT -GNUTLS -ACL +XZ -LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD -IDN) | |
Aug 21 22:31:50 localhost systemd[1]: Detected virtualization qemu. | |
Aug 21 22:31:50 localhost systemd[1]: Detected architecture x86-64. | |
Aug 21 22:31:50 localhost systemd[1]: Running with unpopulated /etc. | |
Aug 21 22:31:50 localhost systemd[1]: Initializing machine ID from random generator. | |
Aug 21 22:31:50 localhost systemd[1]: Populated /etc with preset unit settings. | |
Aug 21 22:31:50 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:50 localhost systemd[1]: Started Create missing system files. | |
Aug 21 22:31:50 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=coreos-tmpfiles comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:50 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=coreos-tmpfiles comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:50 localhost systemd[1]: Started Create list of required static device nodes for the current kernel. | |
Aug 21 22:31:50 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=kmod-static-nodes comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:50 localhost systemd[1]: Started Apply Kernel Variables. | |
Aug 21 22:31:50 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:50 localhost systemd[1]: Started Load/Save Random Seed. | |
Aug 21 22:31:50 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:50 localhost systemd[1]: Started Setup Virtual Console. | |
Aug 21 22:31:50 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:50 localhost systemd[1]: Starting Create System Users... | |
Aug 21 22:31:50 localhost systemd[1]: Starting Flush Journal to Persistent Storage... | |
Aug 21 22:31:50 localhost audit[1]: USER_AVC pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='Unknown class service exe="/usr/lib64/systemd/systemd" sauid=0 hostname=? addr=? terminal=?' | |
Aug 21 22:31:50 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:50 localhost systemd[1]: Started Flush Journal to Persistent Storage. | |
Aug 21 22:31:50 localhost systemd-sysusers[488]: Creating group rkt-admin with gid 999. | |
Aug 21 22:31:50 localhost systemd-sysusers[488]: Creating group rkt with gid 251. | |
Aug 21 22:31:50 localhost systemd-sysusers[488]: Creating group fleet with gid 253. | |
Aug 21 22:31:50 localhost systemd-sysusers[488]: Creating user fleet (n/a) with uid 253 and gid 253. | |
Aug 21 22:31:50 localhost systemd-sysusers[488]: Creating group systemd-coredump with gid 998. | |
Aug 21 22:31:50 localhost systemd-sysusers[488]: Creating user systemd-coredump (systemd Core Dumper) with uid 998 and gid 998. | |
Aug 21 22:31:50 localhost systemd[1]: Started Create System Users. | |
Aug 21 22:31:50 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-sysusers comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:50 localhost systemd[1]: Starting udev Kernel Device Manager... | |
Aug 21 22:31:50 localhost systemd-udevd[492]: RUN{builtin}: 'uaccess' unknown /usr/lib64/udev/rules.d/73-seat-late.rules:15 | |
Aug 21 22:31:50 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-udevd comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:50 localhost systemd[1]: Started udev Kernel Device Manager. | |
Aug 21 22:31:50 localhost systemd[1]: Started Rebuild Dynamic Linker Cache. | |
Aug 21 22:31:50 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=ldconfig comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:51 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-hwdb-update comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:51 localhost systemd[1]: Started Rebuild Hardware Database. | |
Aug 21 22:31:51 localhost systemd[1]: Starting udev Coldplug all Devices... | |
Aug 21 22:31:51 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:51 localhost systemd[1]: Started udev Coldplug all Devices. | |
Aug 21 22:31:51 localhost systemd[1]: Starting udev Wait for Complete Device Initialization... | |
Aug 21 22:31:51 localhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2 | |
Aug 21 22:31:51 localhost kernel: ACPI: Power Button [PWRF] | |
Aug 21 22:31:51 localhost kernel: piix4_smbus 0000:00:01.3: SMBus Host Controller at 0x700, revision 0 | |
Aug 21 22:31:51 localhost kernel: 8139cp 0000:00:03.0 ens3: renamed from eth0 | |
Aug 21 22:31:51 localhost systemd-udevd[539]: Process '/usr/lib/udev/scripts/iscsidev.sh' failed with exit code 1. | |
Aug 21 22:31:51 localhost systemd-udevd[538]: Process '/usr/lib/udev/scripts/iscsidev.sh' failed with exit code 1. | |
Aug 21 22:31:51 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-udev-settle comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:51 localhost systemd[1]: Started udev Wait for Complete Device Initialization. | |
Aug 21 22:31:51 localhost systemd[1]: Starting Activation of LVM2 logical volumes... | |
Aug 21 22:31:51 localhost kernel: input: ImExPS/2 BYD TouchPad as /devices/platform/i8042/serio1/input/input3 | |
Aug 21 22:31:51 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=lvm2-activation-early comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:51 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=lvm2-activation-early comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:51 localhost systemd[1]: Started Activation of LVM2 logical volumes. | |
Aug 21 22:31:51 localhost systemd[1]: Reached target Encrypted Volumes. | |
Aug 21 22:31:51 localhost systemd[1]: Starting Activation of LVM2 logical volumes... | |
Aug 21 22:31:51 localhost kernel: mousedev: PS/2 mouse device common for all mice | |
Aug 21 22:31:51 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=lvm2-activation comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:51 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=lvm2-activation comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:51 localhost systemd[1]: Started Activation of LVM2 logical volumes. | |
Aug 21 22:31:51 localhost systemd[1]: Reached target Local File Systems. | |
Aug 21 22:31:51 localhost systemd[1]: Starting Rebuild Journal Catalog... | |
Aug 21 22:31:51 localhost systemd[1]: Starting Create Volatile Files and Directories... | |
Aug 21 22:31:51 localhost systemd[1]: Starting Activation of LVM2 logical volumes... | |
Aug 21 22:31:51 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-journal-catalog-update comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:51 localhost systemd[1]: Started Rebuild Journal Catalog. | |
Aug 21 22:31:51 localhost systemd[1]: Starting Update is Completed... | |
Aug 21 22:31:51 localhost systemd[1]: Started Update is Completed. | |
Aug 21 22:31:51 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-update-done comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:51 localhost systemd-tmpfiles[584]: [/usr/lib64/tmpfiles.d/trousers.conf:1] Duplicate line for path "/var/lib/tpm", ignoring. | |
Aug 21 22:31:51 localhost systemd-tmpfiles[584]: [/usr/lib64/tmpfiles.d/var.conf:20] Duplicate line for path "/var/lib", ignoring. | |
Aug 21 22:31:51 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=lvm2-activation-net comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:51 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=lvm2-activation-net comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:51 localhost systemd[1]: Started Activation of LVM2 logical volumes. | |
Aug 21 22:31:51 localhost systemd[1]: Reached target Remote File Systems. | |
Aug 21 22:31:51 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:51 localhost systemd[1]: Started Create Volatile Files and Directories. | |
Aug 21 22:31:51 localhost systemd[1]: Starting Load Security Auditing Rules... | |
Aug 21 22:31:51 localhost systemd[1]: Starting Clean up broken links in /etc/ssl/certs... | |
Aug 21 22:31:51 localhost systemd[1]: Starting Network Time Synchronization... | |
Aug 21 22:31:51 localhost systemd[1]: Starting Update UTMP about System Boot/Shutdown... | |
Aug 21 22:31:51 localhost audit[614]: SYSTEM_BOOT pid=614 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg=' comm="systemd-update-utmp" exe="/usr/lib64/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:51 localhost audit[1]: USER_AVC pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='Unknown permission status for class system exe="/usr/lib64/systemd/systemd" sauid=0 hostname=? addr=? terminal=?' | |
Aug 21 22:31:51 localhost systemd[1]: Started Update UTMP about System Boot/Shutdown. | |
Aug 21 22:31:51 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-update-utmp comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:51 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-timesyncd comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:51 localhost systemd[1]: Started Network Time Synchronization. | |
Aug 21 22:31:51 localhost systemd[1]: Reached target System Time Synchronized. | |
Aug 21 22:31:51 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=clean-ca-certificates comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:51 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=clean-ca-certificates comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 21 22:31:51 localhost systemd[1]: Started Clean up broken links in /etc/ssl/certs. | |
Aug 21 22:31:51 localhost audit: CONFIG_CHANGE auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 op="add_rule" key=(null) list=5 res=1 | |
Aug 21 22:31:51 localhost augenrules[611]: No rules | |
Aug 21 22:31:51 localhost systemd[1]: Started Load Security Auditing Rules. | |
Aug 21 22:31:51 localhost systemd[1]: Reached target System Initialization. | |
Aug 21 22:31:51 localhost systemd[1]: Listening on D-Bus System Message Bus Socket. | |
Aug 21 22:31:51 localhost systemd[1]: Starting rkt metadata service socket. | |
Aug 21 22:31:51 localhost systemd[1]: Started Daily Cleanup of Temporary Directories. | |
Aug 21 22:31:51 localhost systemd[1]: Listening on OpenSSH Server Socket. | |
Aug 21 22:31:51 localhost systemd[1]: Started Periodic Garbage Collection for rkt. | |
Aug 21 22:31:51 localhost systemd[1]: Started Daily Log Rotation. | |
Aug 21 22:31:51 localhost systemd[1]: Started Watch for a cloud-config at /var/lib/coreos-install/user_data. | |
Aug 21 22:31:51 localhost systemd[1]: Started Update Engine Stub Timer. | |
Aug 21 22:31:51 localhost systemd[1]: Reached target Timers. | |
Aug 21 22:31:51 localhost systemd[1]: Starting Docker Socket for the API. | |
Aug 21 22:31:51 localhost systemd[1]: Started Watch for update engine configuration changes. | |
Aug 21 22:31:51 localhost systemd[1]: Reached target Paths. | |
Aug 21 22:31:51 localhost systemd[1]: Listening on rkt metadata service socket. | |
Aug 21 22:31:51 localhost systemd[1]: Listening on Docker Socket for the API. | |
Aug 21 22:31:51 localhost systemd[1]: Reached target Sockets. | |
Aug 21 22:31:51 localhost systemd[1]: Reached target Basic System. | |
Aug 21 22:31:51 localhost systemd[1]: Starting Generate sshd host keys... | |
Aug 21 22:31:51 localhost systemd[1]: Starting Garbage Collection for rkt... | |
Aug 21 22:31:51 localhost systemd[1]: Started D-Bus System Message Bus. | |
Aug 21 22:31:51 localhost systemd[1]: Starting Network Service... | |
Aug 21 22:31:51 localhost systemd[1]: Starting Install an ssh key from /proc/cmdline... | |
Aug 21 22:31:51 localhost systemd[1]: Starting etcd2... | |
Aug 21 22:31:51 localhost systemd[1]: Starting Login Service... | |
Aug 21 22:31:51 localhost systemd[1]: Starting Extend Filesystems... | |
Aug 21 22:31:51 localhost systemd[1]: Reached target Load system-provided cloud configs. | |
Aug 21 22:31:51 localhost systemd[1]: Reached target Load user-provided cloud configs. | |
Aug 21 22:31:51 localhost systemd[1]: Starting Kubernetes Addons... | |
Aug 21 22:31:51 localhost systemd[1]: Starting Generate /run/coreos/motd... | |
Aug 21 22:31:51 localhost systemd[672]: k8s-addons.service: Failed at step EXEC spawning /opt/k8s-addons: No such file or directory | |
Aug 21 22:31:51 localhost systemd[1]: Started Install an ssh key from /proc/cmdline. | |
Aug 21 22:31:51 localhost systemd[1]: k8s-addons.service: Main process exited, code=exited, status=203/EXEC | |
Aug 21 22:31:51 localhost systemd[1]: Failed to start Kubernetes Addons. | |
Aug 21 22:31:51 localhost systemd[1]: k8s-addons.service: Unit entered failed state. | |
Aug 21 22:31:51 localhost systemd[1]: k8s-addons.service: Failed with result 'exit-code'. | |
Aug 21 22:31:51 localhost systemd[1]: Started Generate /run/coreos/motd. | |
Aug 21 22:31:52 localhost systemd[1]: Started Login Service. | |
Aug 21 22:31:52 localhost systemd-logind[668]: Watching system buttons on /dev/input/event1 (Power Button) | |
Aug 21 22:31:52 localhost systemd-logind[668]: New seat seat0. | |
Aug 21 22:31:52 localhost systemd[1]: Started Extend Filesystems. | |
Aug 21 22:31:52 localhost systemd-networkd[665]: Enumeration completed | |
Aug 21 22:31:52 localhost systemd[1]: Started Network Service. | |
Aug 21 22:31:52 localhost systemd[1]: Reached target Network. | |
Aug 21 22:31:52 localhost systemd[1]: Starting Network Name Resolution... | |
Aug 21 22:31:52 localhost systemd[1]: Starting Wait for Network to be Configured... | |
Aug 21 22:31:52 localhost kernel: 8139cp 0000:00:03.0 ens3: link up, 100Mbps, full-duplex, lpa 0x05E1 | |
Aug 21 22:31:52 localhost systemd-networkd-wait-online[688]: ignoring: lo | |
Aug 21 22:31:52 localhost systemd-networkd-wait-online[688]: ignoring: lo | |
Aug 21 22:31:52 localhost systemd-networkd-wait-online[688]: ignoring: lo | |
Aug 21 22:31:52 localhost systemd-networkd-wait-online[688]: ignoring: lo | |
Aug 21 22:31:52 localhost systemd-networkd[665]: lo: Configured | |
Aug 21 22:31:52 localhost systemd-networkd-wait-online[688]: ignoring: lo | |
Aug 21 22:31:52 localhost systemd-networkd-wait-online[688]: ignoring: lo | |
Aug 21 22:31:52 localhost systemd-networkd[665]: ens3: Gained carrier | |
Aug 21 22:31:52 localhost systemd-networkd-wait-online[688]: ignoring: lo | |
Aug 21 22:31:52 localhost systemd-resolved[687]: Positive Trust Anchors: | |
Aug 21 22:31:52 localhost systemd-resolved[687]: . IN DS 19036 8 2 49aac11d7b6f6446702e54a1607371607a1a41855200fd2ce1cdde32f24e8fb5 | |
Aug 21 22:31:52 localhost systemd-resolved[687]: Negative trust anchors: 10.in-addr.arpa 16.172.in-addr.arpa 17.172.in-addr.arpa 18.172.in-addr.arpa 19.172.in-addr.arpa 20.172.in-addr.arpa 21.172.in-addr.arpa 22.172.in-addr.arpa 23.172.in-addr.arpa 24.172.in-addr.arpa 25.172.in-addr.arpa 26.172.in-addr.arpa 27.172.in-addr.arpa 28.172.in-addr.arpa 29.172.in-addr.arpa 30.172.in-addr.arpa 31.172.in-addr.arpa 168.192.in-addr.arpa corp home internal intranet lan local private test | |
Aug 21 22:31:52 localhost systemd-resolved[687]: Defaulting to hostname 'linux'. | |
Aug 21 22:31:52 localhost systemd[1]: Started Network Name Resolution. | |
Aug 21 22:31:52 localhost etcd2[667]: recognized and used environment variable ETCD_ADVERTISE_CLIENT_URLS=http://kube-master.lab1.tite.lan:2379 | |
Aug 21 22:31:52 localhost etcd2[667]: recognized and used environment variable ETCD_DATA_DIR=/var/lib/etcd2 | |
Aug 21 22:31:52 localhost etcd2[667]: recognized and used environment variable ETCD_INITIAL_ADVERTISE_PEER_URLS=http://kube-master.lab1.tite.lan:2380 | |
Aug 21 22:31:52 localhost etcd2[667]: recognized and used environment variable ETCD_INITIAL_CLUSTER=node1=http://kube-master.lab1.tite.lan:2380 | |
Aug 21 22:31:52 localhost etcd2[667]: recognized and used environment variable ETCD_LISTEN_CLIENT_URLS=http://0.0.0.0:2379 | |
Aug 21 22:31:52 localhost etcd2[667]: recognized and used environment variable ETCD_LISTEN_PEER_URLS=http://kube-master.lab1.tite.lan:2380 | |
Aug 21 22:31:52 localhost etcd2[667]: recognized and used environment variable ETCD_NAME=node1 | |
Aug 21 22:31:52 localhost etcd2[667]: recognized and used environment variable ETCD_STRICT_RECONFIG_CHECK=true | |
Aug 21 22:31:52 localhost etcd2[667]: etcd Version: 2.3.2 | |
Aug 21 22:31:52 localhost etcd2[667]: Git SHA: ce63f10 | |
Aug 21 22:31:52 localhost etcd2[667]: Go Version: go1.5.4 | |
Aug 21 22:31:52 localhost etcd2[667]: Go OS/Arch: linux/amd64 | |
Aug 21 22:31:52 localhost etcd2[667]: setting maximum number of CPUs to 1, total number of available CPUs is 1 | |
Aug 21 22:31:52 localhost etcd2[667]: listen tcp: lookup kube-master.lab1.tite.lan: Temporary failure in name resolution | |
Aug 21 22:31:52 localhost systemd[1]: etcd2.service: Main process exited, code=exited, status=1/FAILURE | |
Aug 21 22:31:52 localhost systemd[1]: Failed to start etcd2. | |
Aug 21 22:31:52 localhost systemd[1]: etcd2.service: Unit entered failed state. | |
Aug 21 22:31:52 localhost systemd[1]: etcd2.service: Failed with result 'exit-code'. | |
Aug 21 22:31:52 localhost systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:31:52 localhost systemd[716]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:31:52 localhost systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:31:52 localhost systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:31:52 localhost systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:31:52 localhost systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:31:52 localhost systemd-networkd[665]: ens3: DHCPv4 address 172.16.1.12/28 via 172.16.1.2 | |
Aug 21 22:31:52 localhost dbus[650]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' | |
Aug 21 22:31:52 localhost systemd[1]: Starting Hostname Service... | |
Aug 21 22:31:52 localhost systemd-timesyncd[613]: Network configuration changed, trying to establish connection. | |
Aug 21 22:31:52 localhost systemd-networkd-wait-online[688]: ignoring: lo | |
Aug 21 22:31:52 localhost dbus[650]: [system] Successfully activated service 'org.freedesktop.hostname1' | |
Aug 21 22:31:52 localhost systemd[1]: Started Hostname Service. | |
Aug 21 22:31:52 localhost dbus[650]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' | |
Aug 21 22:31:52 localhost systemd[1]: Starting Authorization Manager... | |
Aug 21 22:31:52 localhost systemd[1]: Started Garbage Collection for rkt. | |
Aug 21 22:31:52 localhost polkitd[735]: Started polkitd version 0.113 | |
Aug 21 22:31:52 localhost polkitd[735]: Loading rules from directory /etc/polkit-1/rules.d | |
Aug 21 22:31:52 localhost polkitd[735]: Loading rules from directory /usr/share/polkit-1/rules.d | |
Aug 21 22:31:52 localhost polkitd[735]: Finished loading, compiling and executing 3 rules | |
Aug 21 22:31:52 localhost dbus[650]: [system] Successfully activated service 'org.freedesktop.PolicyKit1' | |
Aug 21 22:31:52 localhost systemd[1]: Started Authorization Manager. | |
Aug 21 22:31:52 kube-master.lab1.tite.lan systemd-hostnamed[723]: Changed host name to 'kube-master.lab1.tite.lan' | |
Aug 21 22:31:52 kube-master.lab1.tite.lan systemd-resolved[687]: System hostname changed to 'kube-master'. | |
Aug 21 22:31:52 kube-master.lab1.tite.lan polkitd[735]: Acquired the name org.freedesktop.PolicyKit1 on the system bus | |
Aug 21 22:31:52 kube-master.lab1.tite.lan sshd_keygen[648]: ssh-keygen: generating new host keys: RSA DSA ECDSA ED25519 | |
Aug 21 22:31:51 kube-master.lab1.tite.lan systemd[1]: Time has been changed | |
Aug 21 22:31:51 kube-master.lab1.tite.lan systemd-timesyncd[613]: Synchronized to time server 184.105.182.7:123 (0.coreos.pool.ntp.org). | |
Aug 21 22:31:51 kube-master.lab1.tite.lan systemd[1]: Started Generate sshd host keys. | |
Aug 21 22:31:51 kube-master.lab1.tite.lan systemd[1]: Starting Generate /run/issue... | |
Aug 21 22:31:51 kube-master.lab1.tite.lan systemd[1]: Started Generate /run/issue. | |
Aug 21 22:31:51 kube-master.lab1.tite.lan systemd[1]: Starting Permit User Sessions... | |
Aug 21 22:31:51 kube-master.lab1.tite.lan systemd[1]: Started Permit User Sessions. | |
Aug 21 22:31:51 kube-master.lab1.tite.lan systemd[1]: Started Getty on tty1. | |
Aug 21 22:31:51 kube-master.lab1.tite.lan systemd[1]: Reached target Login Prompts. | |
Aug 21 22:31:52 kube-master.lab1.tite.lan systemd-networkd[665]: ens3: Gained IPv6LL | |
Aug 21 22:31:56 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:31:56 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:31:56 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:31:56 kube-master.lab1.tite.lan systemd-udevd[492]: RUN{builtin}: 'uaccess' unknown /usr/lib64/udev/rules.d/73-seat-late.rules:15 | |
Aug 21 22:31:56 kube-master.lab1.tite.lan systemd[787]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:31:56 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:31:56 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:31:56 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:31:56 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:31:56 kube-master.lab1.tite.lan login[774]: pam_unix(login:session): session opened for user core by LOGIN(uid=0) | |
Aug 21 22:31:56 kube-master.lab1.tite.lan systemd[1]: Created slice User Slice of core. | |
Aug 21 22:31:56 kube-master.lab1.tite.lan systemd[1]: dev-disk-by\x2dlabel-OEM.device: Start request repeated too quickly. | |
Aug 21 22:31:56 kube-master.lab1.tite.lan systemd[1]: Failed to start dev-disk-by\x2dlabel-OEM.device. | |
Aug 21 22:31:56 kube-master.lab1.tite.lan systemd[1]: Dependency failed for /usr/share/oem. | |
Aug 21 22:31:56 kube-master.lab1.tite.lan systemd[1]: usr-share-oem.mount: Job usr-share-oem.mount/start failed with result 'dependency'. | |
Aug 21 22:31:56 kube-master.lab1.tite.lan systemd[1]: Starting User Manager for UID 500... | |
Aug 21 22:31:56 kube-master.lab1.tite.lan systemd[818]: [email protected]: Failed at step PAM spawning /usr/lib/systemd/systemd: Operation not permitted | |
Aug 21 22:31:56 kube-master.lab1.tite.lan systemd[1]: Started User Manager for UID 500. | |
Aug 21 22:31:56 kube-master.lab1.tite.lan systemd[1]: Started Session 1 of user core. | |
Aug 21 22:31:56 kube-master.lab1.tite.lan systemd-logind[668]: New session 1 of user core. | |
Aug 21 22:32:01 kube-master.lab1.tite.lan systemd[1]: etcd2.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:32:01 kube-master.lab1.tite.lan systemd[1]: Stopped etcd2. | |
Aug 21 22:32:01 kube-master.lab1.tite.lan systemd[1]: Starting etcd2... | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: recognized and used environment variable ETCD_ADVERTISE_CLIENT_URLS=http://kube-master.lab1.tite.lan:2379 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: recognized and used environment variable ETCD_DATA_DIR=/var/lib/etcd2 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: recognized and used environment variable ETCD_INITIAL_ADVERTISE_PEER_URLS=http://kube-master.lab1.tite.lan:2380 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: recognized and used environment variable ETCD_INITIAL_CLUSTER=node1=http://kube-master.lab1.tite.lan:2380 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: recognized and used environment variable ETCD_LISTEN_CLIENT_URLS=http://0.0.0.0:2379 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: recognized and used environment variable ETCD_LISTEN_PEER_URLS=http://kube-master.lab1.tite.lan:2380 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: recognized and used environment variable ETCD_NAME=node1 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: recognized and used environment variable ETCD_STRICT_RECONFIG_CHECK=true | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: etcd Version: 2.3.2 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: Git SHA: ce63f10 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: Go Version: go1.5.4 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: Go OS/Arch: linux/amd64 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: setting maximum number of CPUs to 1, total number of available CPUs is 1 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: listening for peers on http://kube-master.lab1.tite.lan:2380 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: listening for client requests on http://0.0.0.0:2379 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: resolving kube-master.lab1.tite.lan:2380 to 172.16.1.12:2380 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: resolving kube-master.lab1.tite.lan:2380 to 172.16.1.12:2380 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: name = node1 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: data dir = /var/lib/etcd2 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: member dir = /var/lib/etcd2/member | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: heartbeat = 100ms | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: election = 1000ms | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: snapshot count = 10000 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: advertise client URLs = http://kube-master.lab1.tite.lan:2379 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: initial advertise peer URLs = http://kube-master.lab1.tite.lan:2380 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: initial cluster = node1=http://kube-master.lab1.tite.lan:2380 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: starting member 5daad223bb1330c3 in cluster 448c23e6f7258051 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: 5daad223bb1330c3 became follower at term 0 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: newRaft 5daad223bb1330c3 [peers: [], term: 0, commit: 0, applied: 0, lastindex: 0, lastterm: 0] | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: 5daad223bb1330c3 became follower at term 1 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: starting server... [version: 2.3.2, cluster version: to_be_decided] | |
Aug 21 22:32:01 kube-master.lab1.tite.lan systemd[1]: Started etcd2. | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: added local member 5daad223bb1330c3 [http://kube-master.lab1.tite.lan:2380] to cluster 448c23e6f7258051 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:32:01 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:32:01 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:32:01 kube-master.lab1.tite.lan systemd[885]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:32:01 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:32:01 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:32:01 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: 5daad223bb1330c3 is starting a new election at term 1 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: 5daad223bb1330c3 became candidate at term 2 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: 5daad223bb1330c3 received vote from 5daad223bb1330c3 at term 2 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: 5daad223bb1330c3 became leader at term 2 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: raft.node: 5daad223bb1330c3 elected leader 5daad223bb1330c3 at term 2 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: setting up the initial cluster version to 2.3 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: set the initial cluster version to 2.3 | |
Aug 21 22:32:01 kube-master.lab1.tite.lan etcd2[849]: published {Name:node1 ClientURLs:[http://kube-master.lab1.tite.lan:2379]} to cluster 448c23e6f7258051 | |
Aug 21 22:32:02 kube-master.lab1.tite.lan systemd[1]: Created slice system-sshd.slice. | |
Aug 21 22:32:02 kube-master.lab1.tite.lan systemd[1]: Started OpenSSH per-connection server daemon (192.168.128.14:38226). | |
Aug 21 22:32:02 kube-master.lab1.tite.lan sshd[898]: Accepted publickey for core from 192.168.128.14 port 38226 ssh2: RSA SHA256:6Bn9u6tFxok4eyFVwjGiJNhit3TycCeu6J0plxumPC4 | |
Aug 21 22:32:02 kube-master.lab1.tite.lan sshd[898]: pam_unix(sshd:session): session opened for user core by (uid=0) | |
Aug 21 22:32:02 kube-master.lab1.tite.lan systemd[1]: Started Session 2 of user core. | |
Aug 21 22:32:02 kube-master.lab1.tite.lan systemd-logind[668]: New session 2 of user core. | |
Aug 21 22:32:04 kube-master.lab1.tite.lan systemd-networkd[665]: ens3: Configured | |
Aug 21 22:32:04 kube-master.lab1.tite.lan systemd-timesyncd[613]: Network configuration changed, trying to establish connection. | |
Aug 21 22:32:04 kube-master.lab1.tite.lan systemd-networkd-wait-online[688]: ignoring: lo | |
Aug 21 22:32:04 kube-master.lab1.tite.lan systemd[1]: Started Wait for Network to be Configured. | |
Aug 21 22:32:04 kube-master.lab1.tite.lan systemd[1]: Reached target Network is Online. | |
Aug 21 22:32:04 kube-master.lab1.tite.lan systemd[1]: Starting Fetch Kubernetes certificate assets... | |
Aug 21 22:32:04 kube-master.lab1.tite.lan systemd[1]: Starting Fetch Kubernetes certificate assets... | |
Aug 21 22:32:04 kube-master.lab1.tite.lan systemd[1]: Starting Fetch Kubernetes certificate assets... | |
Aug 21 22:32:04 kube-master.lab1.tite.lan systemd[1]: Started Fetch Kubernetes certificate assets. | |
Aug 21 22:32:04 kube-master.lab1.tite.lan systemd[1]: Started Fetch Kubernetes certificate assets. | |
Aug 21 22:32:04 kube-master.lab1.tite.lan systemd[1]: Started Fetch Kubernetes certificate assets. | |
Aug 21 22:32:04 kube-master.lab1.tite.lan systemd[1]: Reached target Load Kubernetes Assets. | |
Aug 21 22:32:04 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:32:04 kube-master.lab1.tite.lan systemctl[956]: activating | |
Aug 21 22:32:04 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:32:04 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:32:04 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:32:04 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:32:04 kube-master.lab1.tite.lan systemd[1]: Reached target Multi-User System. | |
Aug 21 22:32:04 kube-master.lab1.tite.lan systemd[1]: Startup finished in 1.666s (kernel) + 1min 9.492s (initrd) + 16.323s (userspace) = 1min 27.481s. | |
Aug 21 22:32:04 kube-master.lab1.tite.lan bash[942]: % Total % Received % Xferd Average Speed Time Time Time Current | |
Aug 21 22:32:04 kube-master.lab1.tite.lan bash[942]: Dload Upload Total Spent Left Speed | |
Aug 21 22:32:04 kube-master.lab1.tite.lan bash[946]: % Total % Received % Xferd Average Speed Time Time Time Current | |
Aug 21 22:32:04 kube-master.lab1.tite.lan bash[946]: Dload Upload Total Spent Left Speed | |
Aug 21 22:32:04 kube-master.lab1.tite.lan bash[950]: % Total % Received % Xferd Average Speed Time Time Time Current | |
Aug 21 22:32:04 kube-master.lab1.tite.lan bash[950]: Dload Upload Total Spent Left Speed | |
Aug 21 22:32:04 kube-master.lab1.tite.lan bash[942]: [158B blob data] | |
Aug 21 22:32:04 kube-master.lab1.tite.lan bash[946]: [158B blob data] | |
Aug 21 22:32:04 kube-master.lab1.tite.lan bash[950]: [158B blob data] | |
Aug 21 22:32:04 kube-master.lab1.tite.lan systemd-timesyncd[613]: Synchronized to time server 184.105.182.7:123 (0.coreos.pool.ntp.org). | |
Aug 21 22:32:05 kube-master.lab1.tite.lan sudo[966]: core : TTY=pts/0 ; PWD=/home/core ; USER=root ; COMMAND=/bin/su - | |
Aug 21 22:32:05 kube-master.lab1.tite.lan sudo[966]: pam_unix(sudo:session): session opened for user root by core(uid=0) | |
Aug 21 22:32:05 kube-master.lab1.tite.lan sudo[966]: pam_systemd(sudo:session): Cannot create session: Already running in a session | |
Aug 21 22:32:06 kube-master.lab1.tite.lan su[967]: Successful su for root by root | |
Aug 21 22:32:06 kube-master.lab1.tite.lan su[967]: + /dev/pts/0 root:root | |
Aug 21 22:32:06 kube-master.lab1.tite.lan su[967]: pam_unix(su:session): session opened for user root by core(uid=0) | |
Aug 21 22:32:06 kube-master.lab1.tite.lan su[967]: pam_systemd(su:session): Cannot create session: Already running in a session | |
Aug 21 22:32:06 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:32:06 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:32:06 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:32:06 kube-master.lab1.tite.lan systemd[994]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:32:06 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:32:06 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:32:06 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:32:06 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:32:11 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:32:11 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:32:11 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:32:11 kube-master.lab1.tite.lan systemd[1024]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:32:11 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:32:11 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:32:11 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:32:11 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:32:15 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:32:15 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:32:15 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:32:15 kube-master.lab1.tite.lan systemctl[1039]: activating | |
Aug 21 22:32:15 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:32:15 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:32:15 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:32:15 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:32:17 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:32:17 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:32:17 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:32:17 kube-master.lab1.tite.lan systemd[1069]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:32:17 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:32:17 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:32:17 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:32:17 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:32:22 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:32:22 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:32:22 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:32:22 kube-master.lab1.tite.lan systemd[1099]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:32:22 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:32:22 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:32:22 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:32:22 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:32:25 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:32:25 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:32:25 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:32:25 kube-master.lab1.tite.lan systemctl[1115]: activating | |
Aug 21 22:32:25 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:32:25 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:32:25 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:32:25 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:32:27 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:32:27 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:32:27 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:32:27 kube-master.lab1.tite.lan systemd[1141]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:32:27 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:32:27 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:32:27 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:32:27 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:32:32 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:32:32 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:32:32 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:32:32 kube-master.lab1.tite.lan systemd[1170]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:32:32 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:32:32 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:32:32 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:32:32 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:32:35 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:32:35 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:32:35 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:32:35 kube-master.lab1.tite.lan systemctl[1186]: activating | |
Aug 21 22:32:35 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:32:35 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:32:35 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:32:35 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:32:38 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:32:38 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:32:38 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:32:38 kube-master.lab1.tite.lan systemd[1205]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:32:38 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:32:38 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:32:38 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:32:38 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:32:43 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:32:43 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:32:43 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:32:43 kube-master.lab1.tite.lan systemd[1239]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:32:43 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:32:43 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:32:43 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:32:43 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:32:45 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:32:45 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:32:45 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:32:45 kube-master.lab1.tite.lan systemctl[1254]: activating | |
Aug 21 22:32:45 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:32:45 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:32:45 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:32:45 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:32:48 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:32:48 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:32:48 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:32:48 kube-master.lab1.tite.lan systemd[1285]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:32:48 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:32:48 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:32:48 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:32:48 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:32:53 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:32:53 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:32:53 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:32:53 kube-master.lab1.tite.lan systemd[1312]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:32:53 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:32:53 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:32:53 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:32:53 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:32:56 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:32:56 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:32:56 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:32:56 kube-master.lab1.tite.lan systemctl[1328]: activating | |
Aug 21 22:32:56 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:32:56 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:32:56 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:32:56 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:32:59 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:32:59 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:32:59 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:32:59 kube-master.lab1.tite.lan systemd[1354]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:32:59 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:32:59 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:32:59 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:32:59 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:33:04 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:33:04 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:33:04 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:33:04 kube-master.lab1.tite.lan systemd[1384]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:33:04 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:33:04 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:33:04 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:33:04 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:33:06 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:33:06 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:33:06 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:33:06 kube-master.lab1.tite.lan systemctl[1404]: activating | |
Aug 21 22:33:06 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:33:06 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:33:06 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:33:06 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:33:09 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:33:09 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:33:09 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:33:09 kube-master.lab1.tite.lan systemd[1426]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:33:09 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:33:09 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:33:09 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:33:09 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:33:14 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:33:14 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:33:14 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:33:14 kube-master.lab1.tite.lan systemd[1456]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:33:14 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:33:14 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:33:14 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:33:14 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:33:16 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:33:16 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:33:16 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:33:16 kube-master.lab1.tite.lan systemctl[1471]: activating | |
Aug 21 22:33:16 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:33:16 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:33:16 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:33:16 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:33:20 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:33:20 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:33:20 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:33:20 kube-master.lab1.tite.lan systemd[1498]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:33:20 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:33:20 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:33:20 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:33:20 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:33:25 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:33:25 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:33:25 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:33:25 kube-master.lab1.tite.lan systemd[1527]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:33:25 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:33:25 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:33:25 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:33:25 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:33:26 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:33:26 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:33:26 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:33:26 kube-master.lab1.tite.lan systemctl[1543]: activating | |
Aug 21 22:33:26 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:33:26 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:33:26 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:33:26 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:33:30 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:33:30 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:33:30 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:33:30 kube-master.lab1.tite.lan systemd[1571]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:33:30 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:33:30 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:33:30 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:33:30 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:33:35 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:33:35 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:33:35 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:33:35 kube-master.lab1.tite.lan systemd[1601]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:33:35 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:33:35 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:33:35 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:33:35 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:33:37 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:33:37 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:33:37 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:33:37 kube-master.lab1.tite.lan systemctl[1624]: activating | |
Aug 21 22:33:37 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:33:37 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:33:37 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:33:37 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:33:41 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:33:41 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:33:41 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:33:41 kube-master.lab1.tite.lan systemd[1648]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:33:41 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:33:41 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:33:41 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:33:41 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:33:46 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:33:46 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:33:46 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:33:46 kube-master.lab1.tite.lan systemd[1679]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:33:46 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:33:46 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:33:46 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:33:46 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:33:47 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:33:47 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:33:47 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:33:47 kube-master.lab1.tite.lan systemctl[1695]: activating | |
Aug 21 22:33:47 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:33:47 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:33:47 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:33:47 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:33:51 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:33:51 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:33:51 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:33:51 kube-master.lab1.tite.lan systemd[1723]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:33:51 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:33:51 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:33:51 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:33:51 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:33:56 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:33:56 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:33:56 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:33:56 kube-master.lab1.tite.lan systemd[1751]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:33:56 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:33:56 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:33:56 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:33:56 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:33:57 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:33:57 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:33:57 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:33:57 kube-master.lab1.tite.lan systemctl[1767]: activating | |
Aug 21 22:33:57 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:33:57 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:33:57 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:33:57 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:34:02 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:34:02 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:34:02 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:34:02 kube-master.lab1.tite.lan systemd[1805]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:34:02 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:34:02 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:34:02 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:34:02 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:34:07 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:34:07 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:34:07 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:34:07 kube-master.lab1.tite.lan systemd[1834]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:34:07 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:34:07 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:34:07 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:34:07 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:34:07 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:34:07 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:34:07 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:34:07 kube-master.lab1.tite.lan systemctl[1850]: activating | |
Aug 21 22:34:07 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:34:07 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:34:07 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:34:07 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:34:12 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:34:12 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:34:12 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:34:12 kube-master.lab1.tite.lan systemd[1877]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:34:12 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:34:12 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:34:12 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:34:12 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:34:17 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:34:17 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:34:17 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:34:17 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:34:17 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:34:17 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:34:17 kube-master.lab1.tite.lan systemd[1908]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:34:17 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:34:17 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:34:17 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:34:17 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:34:17 kube-master.lab1.tite.lan systemctl[1915]: activating | |
Aug 21 22:34:17 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:34:17 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:34:17 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:34:17 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:34:23 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:34:23 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:34:23 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:34:23 kube-master.lab1.tite.lan systemd[1945]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:34:23 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:34:23 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:34:23 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:34:23 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:34:28 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:34:28 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:34:28 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:34:28 kube-master.lab1.tite.lan systemctl[1962]: activating | |
Aug 21 22:34:28 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:34:28 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:34:28 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:34:28 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:34:28 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:34:28 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:34:28 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:34:28 kube-master.lab1.tite.lan systemd[1992]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:34:28 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:34:28 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:34:28 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:34:28 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:34:33 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:34:33 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:34:33 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:34:33 kube-master.lab1.tite.lan systemd[2022]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:34:33 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:34:33 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:34:33 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:34:33 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:34:38 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:34:38 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:34:38 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:34:38 kube-master.lab1.tite.lan systemctl[2039]: activating | |
Aug 21 22:34:38 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:34:38 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:34:38 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:34:38 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:34:38 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:34:38 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:34:38 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:34:38 kube-master.lab1.tite.lan systemd[2062]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:34:38 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:34:38 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:34:38 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:34:38 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:34:44 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:34:44 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:34:44 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:34:44 kube-master.lab1.tite.lan systemd[2092]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:34:44 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:34:44 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:34:44 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:34:44 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:34:48 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:34:48 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:34:48 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:34:48 kube-master.lab1.tite.lan systemctl[2109]: activating | |
Aug 21 22:34:48 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:34:48 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:34:48 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:34:48 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:34:49 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:34:49 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:34:49 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:34:49 kube-master.lab1.tite.lan systemd[2136]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:34:49 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:34:49 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:34:49 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:34:49 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:34:54 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:34:54 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:34:54 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:34:54 kube-master.lab1.tite.lan systemd[2163]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:34:54 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:34:54 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:34:54 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:34:54 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:34:58 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:34:58 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:34:58 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:34:58 kube-master.lab1.tite.lan systemctl[2177]: activating | |
Aug 21 22:34:58 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:34:58 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:34:58 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:34:58 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:34:59 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:34:59 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:34:59 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:34:59 kube-master.lab1.tite.lan systemd[2208]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:34:59 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:34:59 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:34:59 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:34:59 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:35:05 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:35:05 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:35:05 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:35:05 kube-master.lab1.tite.lan systemd[2235]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:35:05 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:35:05 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:35:05 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:35:05 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:35:09 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:35:09 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:35:09 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:35:09 kube-master.lab1.tite.lan systemctl[2257]: activating | |
Aug 21 22:35:09 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:35:09 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:35:09 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:35:09 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:35:10 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:35:10 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:35:10 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:35:10 kube-master.lab1.tite.lan systemd[2284]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:35:10 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:35:10 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:35:10 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:35:10 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:35:15 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:35:15 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:35:15 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:35:15 kube-master.lab1.tite.lan systemd[2315]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:35:15 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:35:15 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:35:15 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:35:15 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:35:19 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:35:19 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:35:19 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:35:19 kube-master.lab1.tite.lan systemctl[2331]: activating | |
Aug 21 22:35:19 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:35:19 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:35:19 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:35:19 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:35:20 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:35:20 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:35:20 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:35:20 kube-master.lab1.tite.lan systemd[2359]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:35:20 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:35:20 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:35:20 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:35:20 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:35:26 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:35:26 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:35:26 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:35:26 kube-master.lab1.tite.lan systemd[2386]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:35:26 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:35:26 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:35:26 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:35:26 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:35:29 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:35:29 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:35:29 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:35:29 kube-master.lab1.tite.lan systemctl[2402]: activating | |
Aug 21 22:35:29 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:35:29 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:35:29 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:35:29 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:35:31 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:35:31 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:35:31 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:35:31 kube-master.lab1.tite.lan systemd[2436]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:35:31 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:35:31 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:35:31 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:35:31 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:35:36 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:35:36 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:35:36 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:35:36 kube-master.lab1.tite.lan systemd[2461]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:35:36 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:35:36 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:35:36 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:35:36 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:35:39 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:35:39 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:35:39 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:35:39 kube-master.lab1.tite.lan systemctl[2475]: activating | |
Aug 21 22:35:39 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:35:39 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:35:39 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:35:39 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:35:41 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:35:41 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:35:41 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:35:41 kube-master.lab1.tite.lan systemd[2508]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:35:41 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:35:41 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:35:41 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:35:41 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:35:47 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:35:47 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:35:47 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:35:47 kube-master.lab1.tite.lan systemd[2533]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:35:47 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:35:47 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:35:47 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:35:47 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:35:50 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:35:50 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:35:50 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:35:50 kube-master.lab1.tite.lan systemctl[2548]: activating | |
Aug 21 22:35:50 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:35:50 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:35:50 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:35:50 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:35:52 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:35:52 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:35:52 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:35:52 kube-master.lab1.tite.lan systemd[2571]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:35:52 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:35:52 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:35:52 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:35:52 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:35:57 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:35:57 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:35:57 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:35:57 kube-master.lab1.tite.lan systemd[2598]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:35:57 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:35:57 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:35:57 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:35:57 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:36:00 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:36:00 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:36:00 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:36:00 kube-master.lab1.tite.lan systemctl[2614]: activating | |
Aug 21 22:36:00 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:36:00 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:36:00 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:36:00 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:36:02 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:36:02 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:36:02 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:36:02 kube-master.lab1.tite.lan systemd[2639]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:36:02 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:36:02 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:36:02 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:36:02 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:36:08 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:36:08 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:36:08 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:36:08 kube-master.lab1.tite.lan systemd[2669]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:36:08 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:36:08 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:36:08 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:36:08 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:36:10 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:36:10 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:36:10 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:36:10 kube-master.lab1.tite.lan systemctl[2685]: activating | |
Aug 21 22:36:10 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:36:10 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:36:10 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:36:10 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:36:13 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:36:13 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:36:13 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:36:13 kube-master.lab1.tite.lan systemd[2711]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:36:13 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:36:13 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:36:13 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:36:13 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:36:18 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:36:18 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:36:18 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:36:18 kube-master.lab1.tite.lan systemd[2739]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:36:18 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:36:18 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:36:18 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:36:18 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:36:20 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:36:20 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:36:20 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:36:20 kube-master.lab1.tite.lan systemctl[2758]: activating | |
Aug 21 22:36:20 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:36:20 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:36:20 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:36:20 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:36:23 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:36:23 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:36:23 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:36:23 kube-master.lab1.tite.lan systemd[2790]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:36:23 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:36:23 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:36:23 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:36:23 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:36:29 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:36:29 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:36:29 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:36:29 kube-master.lab1.tite.lan systemd[2820]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:36:29 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:36:29 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:36:29 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:36:29 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:36:31 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:36:31 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:36:31 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:36:31 kube-master.lab1.tite.lan systemctl[2836]: activating | |
Aug 21 22:36:31 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:36:31 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:36:31 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:36:31 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:36:34 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:36:34 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:36:34 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:36:34 kube-master.lab1.tite.lan systemd[2862]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:36:34 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:36:34 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:36:34 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:36:34 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:36:39 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:36:39 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:36:39 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:36:39 kube-master.lab1.tite.lan systemd[2892]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:36:39 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:36:39 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:36:39 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:36:39 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:36:41 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:36:41 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:36:41 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:36:41 kube-master.lab1.tite.lan systemctl[2907]: activating | |
Aug 21 22:36:41 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:36:41 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:36:41 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:36:41 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:36:44 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:36:44 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:36:44 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:36:44 kube-master.lab1.tite.lan systemd[2936]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:36:44 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:36:44 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:36:44 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:36:44 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:36:50 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:36:50 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:36:50 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:36:50 kube-master.lab1.tite.lan systemd[2962]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:36:50 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:36:50 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:36:50 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:36:50 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:36:51 kube-master.lab1.tite.lan systemd-timesyncd[613]: Network configuration changed, trying to establish connection. | |
Aug 21 22:36:51 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:36:51 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:36:51 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:36:51 kube-master.lab1.tite.lan systemctl[2978]: activating | |
Aug 21 22:36:51 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:36:51 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:36:51 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:36:51 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:36:51 kube-master.lab1.tite.lan systemd-timesyncd[613]: Synchronized to time server 184.105.182.7:123 (0.coreos.pool.ntp.org). | |
Aug 21 22:36:55 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:36:55 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:36:55 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:36:55 kube-master.lab1.tite.lan systemd[3008]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:36:55 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:36:55 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:36:55 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:36:55 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:37:00 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:37:00 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:37:00 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:37:00 kube-master.lab1.tite.lan systemd[3038]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:37:00 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:37:00 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:37:00 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:37:00 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:37:01 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:37:01 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:37:01 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:37:01 kube-master.lab1.tite.lan systemctl[3051]: activating | |
Aug 21 22:37:01 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:37:01 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:37:01 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:37:01 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:37:05 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:37:05 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:37:05 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:37:05 kube-master.lab1.tite.lan systemd[3085]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:37:05 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:37:05 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:37:05 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:37:05 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:37:11 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:37:11 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:37:11 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:37:11 kube-master.lab1.tite.lan systemd[3115]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:37:11 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:37:11 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:37:11 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:37:11 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. | |
Aug 21 22:37:11 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:37:11 kube-master.lab1.tite.lan systemd[1]: Stopped Kubelet via Hyperkube ACI. | |
Aug 21 22:37:11 kube-master.lab1.tite.lan systemd[1]: Starting Kubelet via Hyperkube ACI... | |
Aug 21 22:37:11 kube-master.lab1.tite.lan systemctl[3131]: activating | |
Aug 21 22:37:11 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Control process exited, code=exited status=3 | |
Aug 21 22:37:11 kube-master.lab1.tite.lan systemd[1]: Failed to start Kubelet via Hyperkube ACI. | |
Aug 21 22:37:11 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Unit entered failed state. | |
Aug 21 22:37:11 kube-master.lab1.tite.lan systemd[1]: kubelet.service: Failed with result 'exit-code'. | |
Aug 21 22:37:16 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Service hold-off time over, scheduling restart. | |
Aug 21 22:37:16 kube-master.lab1.tite.lan systemd[1]: Stopped Network fabric for containers. | |
Aug 21 22:37:16 kube-master.lab1.tite.lan systemd[1]: Starting Network fabric for containers... | |
Aug 21 22:37:16 kube-master.lab1.tite.lan systemd[3159]: flanneld.service: Failed at step EXEC spawning /opt/init-flannel: No such file or directory | |
Aug 21 22:37:16 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Control process exited, code=exited status=203 | |
Aug 21 22:37:16 kube-master.lab1.tite.lan systemd[1]: Failed to start Network fabric for containers. | |
Aug 21 22:37:16 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Unit entered failed state. | |
Aug 21 22:37:16 kube-master.lab1.tite.lan systemd[1]: flanneld.service: Failed with result 'exit-code'. |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Logs begin at Mon 2016-08-22 22:51:19 UTC, end at Mon 2016-08-22 23:13:31 UTC. -- | |
Aug 22 22:51:19 localhost systemd-journald[107]: Runtime journal (/run/log/journal/) is 8.0M, max 100.2M, 92.2M free. | |
Aug 22 22:51:19 localhost kernel: Linux version 4.7.0-coreos ([email protected]) (gcc version 4.9.3 (Gentoo Hardened 4.9.3 p1.5, pie-0.6.4) ) #1 SMP Wed Jul 27 07:30:04 UTC 2016 | |
Aug 22 22:51:19 localhost kernel: Command line: coreos.autologin coreos.config.url=http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa coreos.first_boot systemd.log_level=debug | |
Aug 22 22:51:19 localhost kernel: x86/fpu: Legacy x87 FPU detected. | |
Aug 22 22:51:19 localhost kernel: x86/fpu: Using 'eager' FPU context switches. | |
Aug 22 22:51:19 localhost kernel: e820: BIOS-provided physical RAM map: | |
Aug 22 22:51:19 localhost kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable | |
Aug 22 22:51:19 localhost kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved | |
Aug 22 22:51:19 localhost kernel: BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved | |
Aug 22 22:51:19 localhost kernel: BIOS-e820: [mem 0x0000000000100000-0x000000007ffdffff] usable | |
Aug 22 22:51:19 localhost kernel: BIOS-e820: [mem 0x000000007ffe0000-0x000000007fffffff] reserved | |
Aug 22 22:51:19 localhost kernel: BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved | |
Aug 22 22:51:19 localhost kernel: BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved | |
Aug 22 22:51:19 localhost kernel: NX (Execute Disable) protection: active | |
Aug 22 22:51:19 localhost kernel: SMBIOS 2.8 present. | |
Aug 22 22:51:19 localhost kernel: DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.8.2-20150714_191134- 04/01/2014 | |
Aug 22 22:51:19 localhost kernel: Hypervisor detected: KVM | |
Aug 22 22:51:19 localhost kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved | |
Aug 22 22:51:19 localhost kernel: e820: remove [mem 0x000a0000-0x000fffff] usable | |
Aug 22 22:51:19 localhost kernel: e820: last_pfn = 0x7ffe0 max_arch_pfn = 0x400000000 | |
Aug 22 22:51:19 localhost kernel: MTRR default type: write-back | |
Aug 22 22:51:19 localhost kernel: MTRR fixed ranges enabled: | |
Aug 22 22:51:19 localhost kernel: 00000-9FFFF write-back | |
Aug 22 22:51:19 localhost kernel: A0000-BFFFF uncachable | |
Aug 22 22:51:19 localhost kernel: C0000-FFFFF write-protect | |
Aug 22 22:51:19 localhost kernel: MTRR variable ranges enabled: | |
Aug 22 22:51:19 localhost kernel: 0 base 0080000000 mask FF80000000 uncachable | |
Aug 22 22:51:19 localhost kernel: 1 disabled | |
Aug 22 22:51:19 localhost kernel: 2 disabled | |
Aug 22 22:51:19 localhost kernel: 3 disabled | |
Aug 22 22:51:19 localhost kernel: 4 disabled | |
Aug 22 22:51:19 localhost kernel: 5 disabled | |
Aug 22 22:51:19 localhost kernel: 6 disabled | |
Aug 22 22:51:19 localhost kernel: 7 disabled | |
Aug 22 22:51:19 localhost kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WC UC- WT | |
Aug 22 22:51:19 localhost kernel: Base memory trampoline at [ffff880000095000] 95000 size 28672 | |
Aug 22 22:51:19 localhost kernel: BRK [0x26975000, 0x26975fff] PGTABLE | |
Aug 22 22:51:19 localhost kernel: BRK [0x26976000, 0x26976fff] PGTABLE | |
Aug 22 22:51:19 localhost kernel: BRK [0x26977000, 0x26977fff] PGTABLE | |
Aug 22 22:51:19 localhost kernel: BRK [0x26978000, 0x26978fff] PGTABLE | |
Aug 22 22:51:19 localhost kernel: BRK [0x26979000, 0x26979fff] PGTABLE | |
Aug 22 22:51:19 localhost kernel: RAMDISK: [mem 0x719c7000-0x7fef4fff] | |
Aug 22 22:51:19 localhost kernel: ACPI: Early table checksum verification disabled | |
Aug 22 22:51:19 localhost kernel: ACPI: RSDP 0x00000000000F62C0 000014 (v00 BOCHS ) | |
Aug 22 22:51:19 localhost kernel: ACPI: RSDT 0x000000007FFE1711 000030 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001) | |
Aug 22 22:51:19 localhost kernel: ACPI: FACP 0x000000007FFE0CAF 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001) | |
Aug 22 22:51:19 localhost kernel: ACPI: DSDT 0x000000007FFE0040 000C6F (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001) | |
Aug 22 22:51:19 localhost kernel: ACPI: FACS 0x000000007FFE0000 000040 | |
Aug 22 22:51:19 localhost kernel: ACPI: SSDT 0x000000007FFE0D23 000976 (v01 BOCHS BXPCSSDT 00000001 BXPC 00000001) | |
Aug 22 22:51:19 localhost kernel: ACPI: APIC 0x000000007FFE1699 000078 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001) | |
Aug 22 22:51:19 localhost kernel: ACPI: Local APIC address 0xfee00000 | |
Aug 22 22:51:19 localhost kernel: No NUMA configuration found | |
Aug 22 22:51:19 localhost kernel: Faking a node at [mem 0x0000000000000000-0x000000007ffdffff] | |
Aug 22 22:51:19 localhost kernel: NODE_DATA(0) allocated [mem 0x7ffda000-0x7ffdffff] | |
Aug 22 22:51:19 localhost kernel: kvm-clock: Using msrs 4b564d01 and 4b564d00 | |
Aug 22 22:51:19 localhost kernel: kvm-clock: cpu 0, msr 0:7ffd8001, primary cpu clock | |
Aug 22 22:51:19 localhost kernel: kvm-clock: using sched offset of 3539612974307 cycles | |
Aug 22 22:51:19 localhost kernel: clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns | |
Aug 22 22:51:19 localhost kernel: Zone ranges: | |
Aug 22 22:51:19 localhost kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff] | |
Aug 22 22:51:19 localhost kernel: DMA32 [mem 0x0000000001000000-0x000000007ffdffff] | |
Aug 22 22:51:19 localhost kernel: Normal empty | |
Aug 22 22:51:19 localhost kernel: Movable zone start for each node | |
Aug 22 22:51:19 localhost kernel: Early memory node ranges | |
Aug 22 22:51:19 localhost kernel: node 0: [mem 0x0000000000001000-0x000000000009efff] | |
Aug 22 22:51:19 localhost kernel: node 0: [mem 0x0000000000100000-0x000000007ffdffff] | |
Aug 22 22:51:19 localhost kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffdffff] | |
Aug 22 22:51:19 localhost kernel: On node 0 totalpages: 524158 | |
Aug 22 22:51:19 localhost kernel: DMA zone: 64 pages used for memmap | |
Aug 22 22:51:19 localhost kernel: DMA zone: 25 pages reserved | |
Aug 22 22:51:19 localhost kernel: DMA zone: 3998 pages, LIFO batch:0 | |
Aug 22 22:51:19 localhost kernel: DMA32 zone: 8128 pages used for memmap | |
Aug 22 22:51:19 localhost kernel: DMA32 zone: 520160 pages, LIFO batch:31 | |
Aug 22 22:51:19 localhost kernel: ACPI: PM-Timer IO Port: 0x608 | |
Aug 22 22:51:19 localhost kernel: ACPI: Local APIC address 0xfee00000 | |
Aug 22 22:51:19 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) | |
Aug 22 22:51:19 localhost kernel: IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23 | |
Aug 22 22:51:19 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) | |
Aug 22 22:51:19 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) | |
Aug 22 22:51:19 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) | |
Aug 22 22:51:19 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) | |
Aug 22 22:51:19 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) | |
Aug 22 22:51:19 localhost kernel: ACPI: IRQ0 used by override. | |
Aug 22 22:51:19 localhost kernel: ACPI: IRQ5 used by override. | |
Aug 22 22:51:19 localhost kernel: ACPI: IRQ9 used by override. | |
Aug 22 22:51:19 localhost kernel: ACPI: IRQ10 used by override. | |
Aug 22 22:51:19 localhost kernel: ACPI: IRQ11 used by override. | |
Aug 22 22:51:19 localhost kernel: Using ACPI (MADT) for SMP configuration information | |
Aug 22 22:51:19 localhost kernel: smpboot: Allowing 1 CPUs, 0 hotplug CPUs | |
Aug 22 22:51:19 localhost kernel: e820: [mem 0x80000000-0xfeffbfff] available for PCI devices | |
Aug 22 22:51:19 localhost kernel: Booting paravirtualized kernel on KVM | |
Aug 22 22:51:19 localhost kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns | |
Aug 22 22:51:19 localhost kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:1 nr_node_ids:1 | |
Aug 22 22:51:19 localhost kernel: percpu: Embedded 33 pages/cpu @ffff880071600000 s97944 r8192 d29032 u2097152 | |
Aug 22 22:51:19 localhost kernel: pcpu-alloc: s97944 r8192 d29032 u2097152 alloc=1*2097152 | |
Aug 22 22:51:19 localhost kernel: pcpu-alloc: [0] 0 | |
Aug 22 22:51:19 localhost kernel: KVM setup async PF for cpu 0 | |
Aug 22 22:51:19 localhost kernel: kvm-stealtime: cpu 0, msr 7160d880 | |
Aug 22 22:51:19 localhost kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 515941 | |
Aug 22 22:51:19 localhost kernel: Policy zone: DMA32 | |
Aug 22 22:51:19 localhost kernel: Kernel command line: rootflags=rw mount.usrflags=ro coreos.autologin coreos.config.url=http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa coreos.first_boot systemd.log_level=debug | |
Aug 22 22:51:19 localhost kernel: PID hash table entries: 4096 (order: 3, 32768 bytes) | |
Aug 22 22:51:19 localhost kernel: Memory: 1786200K/2096632K available (5707K kernel code, 1117K rwdata, 2348K rodata, 30100K init, 960K bss, 310432K reserved, 0K cma-reserved) | |
Aug 22 22:51:19 localhost kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 | |
Aug 22 22:51:19 localhost kernel: Hierarchical RCU implementation. | |
Aug 22 22:51:19 localhost kernel: Build-time adjustment of leaf fanout to 64. | |
Aug 22 22:51:19 localhost kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=1. | |
Aug 22 22:51:19 localhost kernel: RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=1 | |
Aug 22 22:51:19 localhost kernel: NR_IRQS:8448 nr_irqs:256 16 | |
Aug 22 22:51:19 localhost kernel: Console: colour VGA+ 80x25 | |
Aug 22 22:51:19 localhost kernel: console [tty0] enabled | |
Aug 22 22:51:19 localhost kernel: tsc: Detected 2533.422 MHz processor | |
Aug 22 22:51:19 localhost kernel: Calibrating delay loop (skipped) preset value.. 5066.84 BogoMIPS (lpj=2533422) | |
Aug 22 22:51:19 localhost kernel: pid_max: default: 32768 minimum: 301 | |
Aug 22 22:51:19 localhost kernel: ACPI: Core revision 20160422 | |
Aug 22 22:51:19 localhost kernel: ACPI: 2 ACPI AML tables successfully acquired and loaded | |
Aug 22 22:51:19 localhost kernel: | |
Aug 22 22:51:19 localhost kernel: Security Framework initialized | |
Aug 22 22:51:19 localhost kernel: SELinux: Initializing. | |
Aug 22 22:51:19 localhost kernel: SELinux: Starting in permissive mode | |
Aug 22 22:51:19 localhost kernel: Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) | |
Aug 22 22:51:19 localhost kernel: Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) | |
Aug 22 22:51:19 localhost kernel: Mount-cache hash table entries: 4096 (order: 3, 32768 bytes) | |
Aug 22 22:51:19 localhost kernel: Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes) | |
Aug 22 22:51:19 localhost kernel: mce: CPU supports 10 MCE banks | |
Aug 22 22:51:19 localhost kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 | |
Aug 22 22:51:19 localhost kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 | |
Aug 22 22:51:19 localhost kernel: Freeing SMP alternatives memory: 24K (ffffffffa687e000 - ffffffffa6884000) | |
Aug 22 22:51:19 localhost kernel: ftrace: allocating 22630 entries in 89 pages | |
Aug 22 22:51:19 localhost kernel: smpboot: Max logical packages: 1 | |
Aug 22 22:51:19 localhost kernel: smpboot: APIC(0) Converting physical 0 to logical package 0 | |
Aug 22 22:51:19 localhost kernel: x2apic enabled | |
Aug 22 22:51:19 localhost kernel: Switched APIC routing to physical x2apic. | |
Aug 22 22:51:19 localhost kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 | |
Aug 22 22:51:19 localhost kernel: smpboot: CPU0: Intel Core i7 9xx (Nehalem Class Core i7) (family: 0x6, model: 0x1a, stepping: 0x3) | |
Aug 22 22:51:19 localhost kernel: Performance Events: unsupported p6 CPU model 26 no PMU driver, software events only. | |
Aug 22 22:51:19 localhost kernel: x86: Booted up 1 node, 1 CPUs | |
Aug 22 22:51:19 localhost kernel: smpboot: Total of 1 processors activated (5066.84 BogoMIPS) | |
Aug 22 22:51:19 localhost kernel: devtmpfs: initialized | |
Aug 22 22:51:19 localhost kernel: x86/mm: Memory block size: 128MB | |
Aug 22 22:51:19 localhost kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns | |
Aug 22 22:51:19 localhost kernel: pinctrl core: initialized pinctrl subsystem | |
Aug 22 22:51:19 localhost kernel: NET: Registered protocol family 16 | |
Aug 22 22:51:19 localhost kernel: cpuidle: using governor menu | |
Aug 22 22:51:19 localhost kernel: ACPI: bus type PCI registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 | |
Aug 22 22:51:19 localhost kernel: dca service started, version 1.12.1 | |
Aug 22 22:51:19 localhost kernel: PCI: Using configuration type 1 for base access | |
Aug 22 22:51:19 localhost kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages | |
Aug 22 22:51:19 localhost kernel: ACPI: Added _OSI(Module Device) | |
Aug 22 22:51:19 localhost kernel: ACPI: Added _OSI(Processor Device) | |
Aug 22 22:51:19 localhost kernel: ACPI: Added _OSI(3.0 _SCP Extensions) | |
Aug 22 22:51:19 localhost kernel: ACPI: Added _OSI(Processor Aggregator Device) | |
Aug 22 22:51:19 localhost kernel: ACPI: Executed 1 blocks of module-level executable AML code | |
Aug 22 22:51:19 localhost kernel: ACPI: Interpreter enabled | |
Aug 22 22:51:19 localhost kernel: ACPI: (supports S0 S5) | |
Aug 22 22:51:19 localhost kernel: ACPI: Using IOAPIC for interrupt routing | |
Aug 22 22:51:19 localhost kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug | |
Aug 22 22:51:19 localhost kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) | |
Aug 22 22:51:19 localhost kernel: acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI] | |
Aug 22 22:51:19 localhost kernel: acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM | |
Aug 22 22:51:19 localhost kernel: acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge. | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [3] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [4] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [5] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [7] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [8] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [9] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [10] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [11] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [12] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [13] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [14] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [15] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [16] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [17] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [18] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [19] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [20] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [21] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [22] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [23] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [24] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [25] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [26] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [27] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [28] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [29] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [30] registered | |
Aug 22 22:51:19 localhost kernel: acpiphp: Slot [31] registered | |
Aug 22 22:51:19 localhost kernel: PCI host bridge to bus 0000:00 | |
Aug 22 22:51:19 localhost kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] | |
Aug 22 22:51:19 localhost kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] | |
Aug 22 22:51:19 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] | |
Aug 22 22:51:19 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff window] | |
Aug 22 22:51:19 localhost kernel: pci_bus 0000:00: root bus resource [bus 00-ff] | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:01.1: reg 0x20: [io 0xc1c0-0xc1cf] | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6] | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376] | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:02.0: [1b36:0100] type 00 class 0x030000 | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:02.0: reg 0x10: [mem 0xf4000000-0xf7ffffff] | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:02.0: reg 0x14: [mem 0xf8000000-0xfbffffff] | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:02.0: reg 0x18: [mem 0xfc054000-0xfc055fff] | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:02.0: reg 0x1c: [io 0xc100-0xc11f] | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:02.0: reg 0x30: [mem 0xfc040000-0xfc04ffff pref] | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:03.0: [10ec:8139] type 00 class 0x020000 | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:03.0: reg 0x10: [io 0xc000-0xc0ff] | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:03.0: reg 0x14: [mem 0xfc056000-0xfc0560ff] | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:03.0: reg 0x30: [mem 0xfc000000-0xfc03ffff pref] | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:04.0: [8086:2668] type 00 class 0x040300 | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:04.0: reg 0x10: [mem 0xfc050000-0xfc053fff] | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:05.0: [1af4:1003] type 00 class 0x078000 | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:05.0: reg 0x10: [io 0xc120-0xc13f] | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:05.0: reg 0x14: [mem 0xfc057000-0xfc057fff] | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:06.0: [8086:2934] type 00 class 0x0c0300 | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:06.0: reg 0x20: [io 0xc140-0xc15f] | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:06.1: [8086:2935] type 00 class 0x0c0300 | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:06.1: reg 0x20: [io 0xc160-0xc17f] | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:06.2: [8086:2936] type 00 class 0x0c0300 | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:06.2: reg 0x20: [io 0xc180-0xc19f] | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:06.7: [8086:293a] type 00 class 0x0c0320 | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:06.7: reg 0x10: [mem 0xfc058000-0xfc058fff] | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:07.0: [1af4:1002] type 00 class 0x00ff00 | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:07.0: reg 0x10: [io 0xc1a0-0xc1bf] | |
Aug 22 22:51:19 localhost kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11) | |
Aug 22 22:51:19 localhost kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11) | |
Aug 22 22:51:19 localhost kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11) | |
Aug 22 22:51:19 localhost kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11) | |
Aug 22 22:51:19 localhost kernel: ACPI: PCI Interrupt Link [LNKS] (IRQs *9) | |
Aug 22 22:51:19 localhost kernel: ACPI: Enabled 16 GPEs in block 00 to 0F | |
Aug 22 22:51:19 localhost kernel: vgaarb: setting as boot device: PCI:0000:00:02.0 | |
Aug 22 22:51:19 localhost kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none | |
Aug 22 22:51:19 localhost kernel: vgaarb: loaded | |
Aug 22 22:51:19 localhost kernel: vgaarb: bridge control possible 0000:00:02.0 | |
Aug 22 22:51:19 localhost kernel: PCI: Using ACPI for IRQ routing | |
Aug 22 22:51:19 localhost kernel: PCI: pci_cache_line_size set to 64 bytes | |
Aug 22 22:51:19 localhost kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff] | |
Aug 22 22:51:19 localhost kernel: e820: reserve RAM buffer [mem 0x7ffe0000-0x7fffffff] | |
Aug 22 22:51:19 localhost kernel: amd_nb: Cannot enumerate AMD northbridges | |
Aug 22 22:51:19 localhost kernel: clocksource: Switched to clocksource kvm-clock | |
Aug 22 22:51:19 localhost kernel: VFS: Disk quotas dquot_6.6.0 | |
Aug 22 22:51:19 localhost kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) | |
Aug 22 22:51:19 localhost kernel: pnp: PnP ACPI init | |
Aug 22 22:51:19 localhost kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active) | |
Aug 22 22:51:19 localhost kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active) | |
Aug 22 22:51:19 localhost kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active) | |
Aug 22 22:51:19 localhost kernel: pnp 00:03: [dma 2] | |
Aug 22 22:51:19 localhost kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0700 (active) | |
Aug 22 22:51:19 localhost kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active) | |
Aug 22 22:51:19 localhost kernel: pnp: PnP ACPI: found 5 devices | |
Aug 22 22:51:19 localhost kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns | |
Aug 22 22:51:19 localhost kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] | |
Aug 22 22:51:19 localhost kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] | |
Aug 22 22:51:19 localhost kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] | |
Aug 22 22:51:19 localhost kernel: pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff window] | |
Aug 22 22:51:19 localhost kernel: NET: Registered protocol family 2 | |
Aug 22 22:51:19 localhost kernel: TCP established hash table entries: 16384 (order: 5, 131072 bytes) | |
Aug 22 22:51:19 localhost kernel: TCP bind hash table entries: 16384 (order: 6, 262144 bytes) | |
Aug 22 22:51:19 localhost kernel: TCP: Hash tables configured (established 16384 bind 16384) | |
Aug 22 22:51:19 localhost kernel: UDP hash table entries: 1024 (order: 3, 32768 bytes) | |
Aug 22 22:51:19 localhost kernel: UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes) | |
Aug 22 22:51:19 localhost kernel: NET: Registered protocol family 1 | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:00.0: Limiting direct PCI/PCI transfers | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:01.0: PIIX3: Enabling Passive Release | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:01.0: Activating ISA DMA hang workarounds | |
Aug 22 22:51:19 localhost kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] | |
Aug 22 22:51:19 localhost kernel: ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 10 | |
Aug 22 22:51:19 localhost kernel: ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11 | |
Aug 22 22:51:19 localhost kernel: ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11 | |
Aug 22 22:51:19 localhost kernel: ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 10 | |
Aug 22 22:51:19 localhost kernel: PCI: CLS 0 bytes, default 64 | |
Aug 22 22:51:19 localhost kernel: Unpacking initramfs... | |
Aug 22 22:51:19 localhost kernel: Freeing initrd memory: 234680K (ffff8800719c7000 - ffff88007fef5000) | |
Aug 22 22:51:19 localhost kernel: futex hash table entries: 256 (order: 2, 16384 bytes) | |
Aug 22 22:51:19 localhost kernel: audit: initializing netlink subsys (disabled) | |
Aug 22 22:51:19 localhost kernel: audit: type=2000 audit(1471906279.945:1): initialized | |
Aug 22 22:51:19 localhost kernel: Initialise system trusted keyrings | |
Aug 22 22:51:19 localhost kernel: workingset: timestamp_bits=37 max_order=19 bucket_order=0 | |
Aug 22 22:51:19 localhost kernel: SELinux: Registering netfilter hooks | |
Aug 22 22:51:19 localhost kernel: Key type asymmetric registered | |
Aug 22 22:51:19 localhost kernel: Asymmetric key parser 'x509' registered | |
Aug 22 22:51:19 localhost kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252) | |
Aug 22 22:51:19 localhost kernel: io scheduler noop registered | |
Aug 22 22:51:19 localhost kernel: io scheduler deadline registered | |
Aug 22 22:51:19 localhost kernel: io scheduler cfq registered (default) | |
Aug 22 22:51:19 localhost kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5 | |
Aug 22 22:51:19 localhost kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4 | |
Aug 22 22:51:19 localhost kernel: intel_idle: does not run on family 6 model 26 | |
Aug 22 22:51:19 localhost kernel: GHES: HEST is not enabled! | |
Aug 22 22:51:19 localhost kernel: ioatdma: Intel(R) QuickData Technology Driver 4.00 | |
Aug 22 22:51:19 localhost kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled | |
Aug 22 22:51:19 localhost kernel: 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A | |
Aug 22 22:51:19 localhost kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 | |
Aug 22 22:51:19 localhost kernel: serio: i8042 KBD port at 0x60,0x64 irq 1 | |
Aug 22 22:51:19 localhost kernel: serio: i8042 AUX port at 0x60,0x64 irq 12 | |
Aug 22 22:51:19 localhost kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0 | |
Aug 22 22:51:19 localhost kernel: rtc_cmos 00:00: RTC can wake from S4 | |
Aug 22 22:51:19 localhost kernel: rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0 | |
Aug 22 22:51:19 localhost kernel: rtc_cmos 00:00: alarms up to one day, 114 bytes nvram | |
Aug 22 22:51:19 localhost kernel: NET: Registered protocol family 10 | |
Aug 22 22:51:19 localhost kernel: NET: Registered protocol family 17 | |
Aug 22 22:51:19 localhost kernel: microcode: CPU0 sig=0x106a3, pf=0x1, revision=0x1 | |
Aug 22 22:51:19 localhost kernel: microcode: Microcode Update Driver: v2.01 <[email protected]>, Peter Oruba | |
Aug 22 22:51:19 localhost kernel: registered taskstats version 1 | |
Aug 22 22:51:19 localhost kernel: Loading compiled-in X.509 certificates | |
Aug 22 22:51:19 localhost kernel: alg: No test for pkcs1pad(rsa,sha256) (pkcs1pad(rsa-generic,sha256)) | |
Aug 22 22:51:19 localhost kernel: Loaded X.509 cert 'CoreOS, Inc: Module signing key for 4.7.0-coreos: 9941709b255b359bd2b4e23e4ac08aaef38d0555' | |
Aug 22 22:51:19 localhost kernel: rtc_cmos 00:00: setting system clock to 2016-08-22 22:51:19 UTC (1471906279) | |
Aug 22 22:51:19 localhost kernel: Freeing unused kernel memory: 30100K (ffffffffa4b19000 - ffffffffa687e000) | |
Aug 22 22:51:19 localhost kernel: Write protecting the kernel read-only data: 10240k | |
Aug 22 22:51:19 localhost kernel: Freeing unused kernel memory: 420K (ffff880024597000 - ffff880024600000) | |
Aug 22 22:51:19 localhost kernel: Freeing unused kernel memory: 1748K (ffff88002484b000 - ffff880024a00000) | |
Aug 22 22:51:19 localhost systemd[1]: Failed to insert module 'ip_tables': Function not implemented | |
Aug 22 22:51:19 localhost kernel: random: systemd urandom read with 14 bits of entropy available | |
Aug 22 22:51:19 localhost systemd[1]: Mounting cgroup to /sys/fs/cgroup/net_cls,net_prio of type cgroup with options net_cls,net_prio. | |
Aug 22 22:51:19 localhost systemd[1]: Mounting cgroup to /sys/fs/cgroup/cpuset of type cgroup with options cpuset. | |
Aug 22 22:51:19 localhost systemd[1]: Mounting cgroup to /sys/fs/cgroup/devices of type cgroup with options devices. | |
Aug 22 22:51:19 localhost systemd[1]: Mounting cgroup to /sys/fs/cgroup/cpu,cpuacct of type cgroup with options cpu,cpuacct. | |
Aug 22 22:51:19 localhost systemd[1]: Mounting cgroup to /sys/fs/cgroup/hugetlb of type cgroup with options hugetlb. | |
Aug 22 22:51:19 localhost systemd[1]: Mounting cgroup to /sys/fs/cgroup/memory of type cgroup with options memory. | |
Aug 22 22:51:19 localhost systemd[1]: Mounting cgroup to /sys/fs/cgroup/perf_event of type cgroup with options perf_event. | |
Aug 22 22:51:19 localhost systemd[1]: Mounting cgroup to /sys/fs/cgroup/blkio of type cgroup with options blkio. | |
Aug 22 22:51:19 localhost systemd[1]: Mounting cgroup to /sys/fs/cgroup/freezer of type cgroup with options freezer. | |
Aug 22 22:51:19 localhost systemd[1]: Mounting cgroup to /sys/fs/cgroup/pids of type cgroup with options pids. | |
Aug 22 22:51:19 localhost systemd[1]: systemd 229 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT -GNUTLS -ACL +XZ -LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD -IDN) | |
Aug 22 22:51:19 localhost systemd[1]: Detected virtualization qemu. | |
Aug 22 22:51:19 localhost systemd[1]: Detected architecture x86-64. | |
Aug 22 22:51:19 localhost systemd[1]: Running in initial RAM disk. | |
Aug 22 22:51:19 localhost systemd[1]: No hostname configured. | |
Aug 22 22:51:19 localhost systemd[1]: Set hostname to <localhost>. | |
Aug 22 22:51:19 localhost systemd[1]: Initializing machine ID from random generator. | |
Aug 22 22:51:19 localhost systemd[1]: Using cgroup controller name=systemd. File system hierarchy is at /sys/fs/cgroup/systemd. | |
Aug 22 22:51:19 localhost systemd[1]: Installed release agent. | |
Aug 22 22:51:19 localhost systemd[1]: Controller 'cpu' supported: no | |
Aug 22 22:51:19 localhost systemd[1]: Controller 'cpuacct' supported: yes | |
Aug 22 22:51:19 localhost systemd[1]: Controller 'blkio' supported: yes | |
Aug 22 22:51:19 localhost systemd[1]: Controller 'memory' supported: yes | |
Aug 22 22:51:19 localhost systemd[1]: Controller 'devices' supported: yes | |
Aug 22 22:51:19 localhost systemd[1]: Controller 'pids' supported: yes | |
Aug 22 22:51:19 localhost systemd[1]: Set up TFD_TIMER_CANCEL_ON_SET timerfd. | |
Aug 22 22:51:19 localhost systemd[1]: Enabling showing of status. | |
Aug 22 22:51:19 localhost systemd[48]: Spawned /usr/lib/systemd/system-generators/verity-generator as 49. | |
Aug 22 22:51:19 localhost systemd[48]: Spawned /usr/lib/systemd/system-generators/usr-generator as 50. | |
Aug 22 22:51:19 localhost systemd[48]: Spawned /usr/lib/systemd/system-generators/systemd-hibernate-resume-generator as 51. | |
Aug 22 22:51:19 localhost systemd[48]: Spawned /usr/lib/systemd/system-generators/systemd-gpt-auto-generator as 52. | |
Aug 22 22:51:19 localhost systemd[48]: Spawned /usr/lib/systemd/system-generators/systemd-fstab-generator as 53. | |
Aug 22 22:51:19 localhost systemd[48]: Spawned /usr/lib/systemd/system-generators/systemd-cryptsetup-generator as 54. | |
Aug 22 22:51:19 localhost systemd[48]: Spawned /usr/lib/systemd/system-generators/ignition-generator as 55. | |
Aug 22 22:51:19 localhost systemd[48]: Spawned /usr/lib/systemd/system-generators/dracut-rootfs-generator as 56. | |
Aug 22 22:51:19 localhost systemd[48]: Spawned /usr/lib/systemd/system-generators/diskless-generator as 57. | |
Aug 22 22:51:19 localhost systemd-fstab-generator[53]: Could not find a root= entry on the kernel command line. | |
Aug 22 22:51:19 localhost systemd-fstab-generator[53]: Parsing /etc/fstab | |
Aug 22 22:51:19 localhost systemd-fstab-generator[53]: Parsing /sysroot/etc/fstab | |
Aug 22 22:51:19 localhost systemd-gpt-auto-generator[52]: Not a EFI boot, not creating root mount. | |
Aug 22 22:51:19 localhost systemd[48]: /usr/lib/systemd/system-generators/systemd-gpt-auto-generator succeeded. | |
Aug 22 22:51:19 localhost systemd[48]: /usr/lib/systemd/system-generators/systemd-hibernate-resume-generator succeeded. | |
Aug 22 22:51:19 localhost systemd[48]: /usr/lib/systemd/system-generators/ignition-generator succeeded. | |
Aug 22 22:51:19 localhost systemd[48]: /usr/lib/systemd/system-generators/diskless-generator succeeded. | |
Aug 22 22:51:19 localhost systemd[48]: /usr/lib/systemd/system-generators/systemd-fstab-generator succeeded. | |
Aug 22 22:51:19 localhost systemd[48]: /usr/lib/systemd/system-generators/verity-generator succeeded. | |
Aug 22 22:51:19 localhost systemd[48]: /usr/lib/systemd/system-generators/usr-generator succeeded. | |
Aug 22 22:51:19 localhost systemd[48]: /usr/lib/systemd/system-generators/dracut-rootfs-generator succeeded. | |
Aug 22 22:51:19 localhost systemd[48]: /usr/lib/systemd/system-generators/systemd-cryptsetup-generator succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: system-generators succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: Looking for unit files in (higher priority first): | |
Aug 22 22:51:19 localhost systemd[1]: /etc/systemd/system | |
Aug 22 22:51:19 localhost systemd[1]: /run/systemd/system | |
Aug 22 22:51:19 localhost systemd[1]: /run/systemd/generator | |
Aug 22 22:51:19 localhost systemd[1]: /usr/local/lib/systemd/system | |
Aug 22 22:51:19 localhost systemd[1]: /usr/lib64/systemd/system | |
Aug 22 22:51:19 localhost systemd[1]: SysV init scripts and rcN.d links support disabled | |
Aug 22 22:51:19 localhost systemd[1]: Unit type .busname is not supported on this system. | |
Aug 22 22:51:19 localhost systemd[1]: run-systemd-journal-socket.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: run.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: run-systemd.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: run-systemd-journal.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: run-systemd-journal-stdout.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: run-systemd-journal-syslog.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: syslog.service: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: run-systemd-journal-dev\x2dlog.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: run-udev.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: run-udev-control.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: systemd-sysusers.service: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: lvm2-activation-early.service: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: iscsid.service: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: iscsi.service: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: run-systemd-ask\x2dpassword.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: plymouth-start.service: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: systemd-hwdb-update.service: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: Using notification socket /run/systemd/notify | |
Aug 22 22:51:19 localhost systemd[1]: Successfully created private D-Bus server. | |
Aug 22 22:51:19 localhost systemd[1]: init.scope changed dead -> running | |
Aug 22 22:51:19 localhost systemd[1]: -.slice changed dead -> active | |
Aug 22 22:51:19 localhost systemd[1]: -.mount: Changed dead -> mounted | |
Aug 22 22:51:19 localhost systemd[1]: Activating default unit: default.target | |
Aug 22 22:51:19 localhost systemd[1]: usr.squashfs.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: sysroot-usr-share.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: sysroot-usr-share-oem.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: org.freedesktop.resolve1.busname: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: network-pre.target: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: org.freedesktop.network1.busname: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: multi-user.target: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: dbus.service: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: disk-uuid.service: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: var-tmp.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: var.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: tmp.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: initrd.target: Trying to enqueue job initrd.target/start/isolate | |
Aug 22 22:51:19 localhost systemd[1]: tmp.mount: Cannot add dependency job, ignoring: Unit tmp.mount not found. | |
Aug 22 22:51:19 localhost systemd[1]: org.freedesktop.resolve1.busname: Cannot add dependency job, ignoring: Unit org.freedesktop.resolve1.busname not found. | |
Aug 22 22:51:19 localhost systemd[1]: org.freedesktop.network1.busname: Cannot add dependency job, ignoring: Unit org.freedesktop.network1.busname not found. | |
Aug 22 22:51:19 localhost systemd[1]: remote-fs.target: Installed new job remote-fs.target/start as 46 | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Installed new job systemd-journald.service/start as 11 | |
Aug 22 22:51:19 localhost systemd[1]: local-fs.target: Installed new job local-fs.target/start as 15 | |
Aug 22 22:51:19 localhost systemd[1]: systemd-udevd.service: Installed new job systemd-udevd.service/start as 20 | |
Aug 22 22:51:19 localhost systemd[1]: timers.target: Installed new job timers.target/start as 29 | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.socket: Installed new job systemd-journald.socket/start as 12 | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-mount.service: Installed new job dracut-pre-mount.service/start as 47 | |
Aug 22 22:51:19 localhost systemd[1]: initrd-parse-etc.service: Installed new job initrd-parse-etc.service/start as 53 | |
Aug 22 22:51:19 localhost systemd[1]: kmod-static-nodes.service: Installed new job kmod-static-nodes.service/start as 10 | |
Aug 22 22:51:19 localhost systemd[1]: systemd-ask-password-console.path: Installed new job systemd-ask-password-console.path/start as 18 | |
Aug 22 22:51:19 localhost systemd[1]: dracut-cmdline.service: Installed new job dracut-cmdline.service/start as 48 | |
Aug 22 22:51:19 localhost systemd[1]: dracut-initqueue.service: Installed new job dracut-initqueue.service/start as 51 | |
Aug 22 22:51:19 localhost systemd[1]: slices.target: Installed new job slices.target/start as 27 | |
Aug 22 22:51:19 localhost systemd[1]: initrd.target: Installed new job initrd.target/start as 1 | |
Aug 22 22:51:19 localhost systemd[1]: initrd-fs.target: Installed new job initrd-fs.target/start as 49 | |
Aug 22 22:51:19 localhost systemd[1]: paths.target: Installed new job paths.target/start as 28 | |
Aug 22 22:51:19 localhost systemd[1]: basic.target: Installed new job basic.target/start as 2 | |
Aug 22 22:51:19 localhost systemd[1]: systemd-udevd-kernel.socket: Installed new job systemd-udevd-kernel.socket/start as 21 | |
Aug 22 22:51:19 localhost systemd[1]: remote-fs-pre.target: Installed new job remote-fs-pre.target/start as 52 | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-trigger.service: Installed new job dracut-pre-trigger.service/start as 54 | |
Aug 22 22:51:19 localhost systemd[1]: multipathd.service: Installed new job multipathd.service/start as 9 | |
Aug 22 22:51:19 localhost systemd[1]: network.target: Installed new job network.target/start as 36 | |
Aug 22 22:51:19 localhost systemd[1]: remount-sysroot.service: Installed new job remount-sysroot.service/start as 42 | |
Aug 22 22:51:19 localhost systemd[1]: systemd-udevd-control.socket: Installed new job systemd-udevd-control.socket/start as 23 | |
Aug 22 22:51:19 localhost systemd[1]: sysroot-usr.mount: Installed new job sysroot-usr.mount/start as 41 | |
Aug 22 22:51:19 localhost systemd[1]: ignition.target: Installed new job ignition.target/start as 31 | |
Aug 22 22:51:19 localhost systemd[1]: ignition-disks.service: Installed new job ignition-disks.service/start as 32 | |
Aug 22 22:51:19 localhost systemd[1]: system.slice: Installed new job system.slice/start as 7 | |
Aug 22 22:51:19 localhost systemd[1]: swap.target: Installed new job swap.target/start as 19 | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-pivot.service: Installed new job dracut-pre-pivot.service/start as 45 | |
Aug 22 22:51:19 localhost systemd[1]: systemd-sysctl.service: Installed new job systemd-sysctl.service/start as 6 | |
Aug 22 22:51:19 localhost systemd[1]: cryptsetup.target: Installed new job cryptsetup.target/start as 4 | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-udev.service: Installed new job dracut-pre-udev.service/start as 55 | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald-audit.socket: Installed new job systemd-journald-audit.socket/start as 14 | |
Aug 22 22:51:19 localhost systemd[1]: local-fs-pre.target: Installed new job local-fs-pre.target/start as 33 | |
Aug 22 22:51:19 localhost systemd[1]: initrd-systemd-resolved.service: Installed new job initrd-systemd-resolved.service/start as 34 | |
Aug 22 22:51:19 localhost systemd[1]: systemd-udev-trigger.service: Installed new job systemd-udev-trigger.service/start as 24 | |
Aug 22 22:51:19 localhost systemd[1]: systemd-modules-load.service: Installed new job systemd-modules-load.service/start as 16 | |
Aug 22 22:51:19 localhost systemd[1]: dracut-cmdline-ask.service: Installed new job dracut-cmdline-ask.service/start as 44 | |
Aug 22 22:51:19 localhost systemd[1]: dracut-mount.service: Installed new job dracut-mount.service/start as 50 | |
Aug 22 22:51:19 localhost systemd[1]: initrd-setup-root.service: Installed new job initrd-setup-root.service/start as 43 | |
Aug 22 22:51:19 localhost systemd[1]: sysroot.mount: Installed new job sysroot.mount/start as 39 | |
Aug 22 22:51:19 localhost systemd[1]: sysinit.target: Installed new job sysinit.target/start as 3 | |
Aug 22 22:51:19 localhost systemd[1]: systemd-tmpfiles-setup-dev.service: Installed new job systemd-tmpfiles-setup-dev.service/start as 17 | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald-dev-log.socket: Installed new job systemd-journald-dev-log.socket/start as 13 | |
Aug 22 22:51:19 localhost systemd[1]: initrd-root-fs.target: Installed new job initrd-root-fs.target/start as 38 | |
Aug 22 22:51:19 localhost systemd[1]: initrd-systemd-networkd.service: Installed new job initrd-systemd-networkd.service/start as 35 | |
Aug 22 22:51:19 localhost systemd[1]: ignition-files.service: Installed new job ignition-files.service/start as 37 | |
Aug 22 22:51:19 localhost systemd[1]: sockets.target: Installed new job sockets.target/start as 30 | |
Aug 22 22:51:19 localhost systemd[1]: initrd.target: Enqueued job initrd.target/start as 1 | |
Aug 22 22:51:19 localhost systemd[1]: Loaded units and determined initial transaction in 60ms. | |
Aug 22 22:51:19 localhost systemd[1]: var-tmp.mount: Collecting. | |
Aug 22 22:51:19 localhost systemd[1]: var.mount: Collecting. | |
Aug 22 22:51:19 localhost systemd[1]: usr.squashfs.mount: Collecting. | |
Aug 22 22:51:19 localhost systemd[1]: sysroot-usr-share.mount: Collecting. | |
Aug 22 22:51:19 localhost systemd[1]: sysroot-usr-share-oem.mount: Collecting. | |
Aug 22 22:51:19 localhost systemd[1]: run-systemd-ask\x2dpassword.mount: Collecting. | |
Aug 22 22:51:19 localhost systemd[1]: run-udev.mount: Collecting. | |
Aug 22 22:51:19 localhost systemd[1]: run-udev-control.mount: Collecting. | |
Aug 22 22:51:19 localhost systemd[1]: run-systemd-journal-dev\x2dlog.mount: Collecting. | |
Aug 22 22:51:19 localhost systemd[1]: run-systemd-journal-syslog.mount: Collecting. | |
Aug 22 22:51:19 localhost systemd[1]: run-systemd-journal-socket.mount: Collecting. | |
Aug 22 22:51:19 localhost systemd[1]: run.mount: Collecting. | |
Aug 22 22:51:19 localhost systemd[1]: run-systemd.mount: Collecting. | |
Aug 22 22:51:19 localhost systemd[1]: run-systemd-journal.mount: Collecting. | |
Aug 22 22:51:19 localhost systemd[1]: run-systemd-journal-stdout.mount: Collecting. | |
Aug 22 22:51:19 localhost systemd[1]: Received SIGCHLD from PID 48 (n/a). | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald-dev-log.socket: Changed dead -> listening | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald-dev-log.socket: Job systemd-journald-dev-log.socket/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Listening on Journal Socket (/dev/log). | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald-audit.socket: ConditionCapability=CAP_AUDIT_READ succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald-audit.socket: ConditionSecurity=audit succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald-audit.socket: Changed dead -> listening | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald-audit.socket: Job systemd-journald-audit.socket/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Listening on Journal Audit Socket. | |
Aug 22 22:51:19 localhost systemd[1]: cryptsetup.target changed dead -> active | |
Aug 22 22:51:19 localhost systemd[1]: cryptsetup.target: Job cryptsetup.target/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Reached target Encrypted Volumes. | |
Aug 22 22:51:19 localhost systemd[1]: swap.target changed dead -> active | |
Aug 22 22:51:19 localhost systemd[1]: swap.target: Job swap.target/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Reached target Swap. | |
Aug 22 22:51:19 localhost systemd[1]: system.slice changed dead -> active | |
Aug 22 22:51:19 localhost systemd[1]: system.slice: Job system.slice/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Created slice System Slice. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-udevd-control.socket: ConditionPathIsReadWrite=/sys succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-udevd-control.socket: Changed dead -> listening | |
Aug 22 22:51:19 localhost systemd[1]: systemd-udevd-control.socket: Job systemd-udevd-control.socket/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Listening on udev Control Socket. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-udevd-kernel.socket: ConditionPathIsReadWrite=/sys succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-udevd-kernel.socket: Changed dead -> listening | |
Aug 22 22:51:19 localhost systemd[1]: systemd-udevd-kernel.socket: Job systemd-udevd-kernel.socket/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Listening on udev Kernel Socket. | |
Aug 22 22:51:19 localhost systemd[1]: slices.target changed dead -> active | |
Aug 22 22:51:19 localhost systemd[1]: slices.target: Job slices.target/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Reached target Slices. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-ask-password-console.path: ConditionPathExists=!/run/plymouth/pid succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-ask-password-console.path: Changed dead -> waiting | |
Aug 22 22:51:19 localhost systemd[1]: systemd-ask-password-console.path: Job systemd-ask-password-console.path/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Started Dispatch Password Requests to Console Directory Watch. | |
Aug 22 22:51:19 localhost systemd[1]: paths.target changed dead -> active | |
Aug 22 22:51:19 localhost systemd[1]: paths.target: Job paths.target/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Reached target Paths. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.socket: Changed dead -> listening | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.socket: Job systemd-journald.socket/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Listening on Journal Socket. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-modules-load.service: ConditionKernelCommandLine=|rd.modules-load failed. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-modules-load.service: ConditionKernelCommandLine=|modules-load failed. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-modules-load.service: ConditionDirectoryNotEmpty=|/run/modules-load.d failed. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-modules-load.service: ConditionDirectoryNotEmpty=|/etc/modules-load.d failed. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-modules-load.service: ConditionDirectoryNotEmpty=|/usr/local/lib/modules-load.d failed. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-modules-load.service: ConditionDirectoryNotEmpty=|/usr/lib/modules-load.d failed. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-modules-load.service: ConditionDirectoryNotEmpty=|/lib/modules-load.d failed. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-modules-load.service: ConditionCapability=CAP_SYS_MODULE succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-modules-load.service: Starting requested but condition failed. Not starting unit. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-modules-load.service: Job systemd-modules-load.service/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: kmod-static-nodes.service: ConditionFileNotEmpty=/lib/modules/4.7.0-coreos/modules.devname succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: kmod-static-nodes.service: ConditionCapability=CAP_SYS_MODULE succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: kmod-static-nodes.service: About to execute: /bin/kmod static-nodes --format=tmpfiles --output=/run/tmpfiles.d/kmod.conf | |
Aug 22 22:51:19 localhost systemd[1]: kmod-static-nodes.service: Forked /bin/kmod as 97 | |
Aug 22 22:51:19 localhost systemd[1]: kmod-static-nodes.service: Changed dead -> start | |
Aug 22 22:51:19 localhost systemd[1]: Starting Create list of required static device nodes for the current kernel... | |
Aug 22 22:51:19 localhost systemd[1]: sockets.target changed dead -> active | |
Aug 22 22:51:19 localhost systemd[1]: sockets.target: Job sockets.target/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Reached target Sockets. | |
Aug 22 22:51:19 localhost systemd[1]: dracut-cmdline-ask.service: ConditionKernelCommandLine=rd.cmdline=ask failed. | |
Aug 22 22:51:19 localhost systemd[1]: dracut-cmdline-ask.service: Starting requested but condition failed. Not starting unit. | |
Aug 22 22:51:19 localhost systemd[1]: dracut-cmdline-ask.service: Job dracut-cmdline-ask.service/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: multipathd.service: ConditionPathExists=/etc/multipath.conf failed. | |
Aug 22 22:51:19 localhost systemd[1]: multipathd.service: Starting requested but condition failed. Not starting unit. | |
Aug 22 22:51:19 localhost systemd[1]: multipathd.service: Job multipathd.service/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: systemd-sysctl.service: ConditionPathIsReadWrite=/proc/sys/ succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-sysctl.service: About to execute: /usr/lib/systemd/systemd-sysctl | |
Aug 22 22:51:19 localhost systemd[1]: systemd-sysctl.service: Forked /usr/lib/systemd/systemd-sysctl as 100 | |
Aug 22 22:51:19 localhost systemd[1]: systemd-sysctl.service: Changed dead -> start | |
Aug 22 22:51:19 localhost systemd[1]: Starting Apply Kernel Variables... | |
Aug 22 22:51:19 localhost systemd[1]: dracut-cmdline.service: ConditionKernelCommandLine=|noresume failed. | |
Aug 22 22:51:19 localhost systemd[1]: dracut-cmdline.service: ConditionKernelCommandLine=|resume failed. | |
Aug 22 22:51:19 localhost systemd[1]: dracut-cmdline.service: ConditionKernelCommandLine=|rd.break=cmdline failed. | |
Aug 22 22:51:19 localhost systemd[1]: dracut-cmdline.service: ConditionDirectoryNotEmpty=|/lib/dracut/hooks/cmdline succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: dracut-cmdline.service: ConditionPathExistsGlob=|/etc/cmdline.d/*.conf succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: dracut-cmdline.service: ConditionPathExists=/usr/lib/initrd-release succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: dracut-cmdline.service: About to execute: /bin/dracut-cmdline | |
Aug 22 22:51:19 localhost systemd[1]: dracut-cmdline.service: Forked /bin/dracut-cmdline as 102 | |
Aug 22 22:51:19 localhost systemd[1]: dracut-cmdline.service: Changed dead -> start | |
Aug 22 22:51:19 localhost systemd[1]: Starting dracut cmdline hook... | |
Aug 22 22:51:19 localhost systemd[1]: timers.target changed dead -> active | |
Aug 22 22:51:19 localhost systemd[1]: timers.target: Job timers.target/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Reached target Timers. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: About to execute: /usr/lib/systemd/systemd-journald | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Forked /usr/lib/systemd/systemd-journald as 107 | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Changed dead -> start | |
Aug 22 22:51:19 localhost systemd[1]: Starting Journal Service... | |
Aug 22 22:51:19 localhost systemd[1]: libmount event [rescan: no] | |
Aug 22 22:51:19 localhost systemd[1]: Received SIGCHLD from PID 97 (kmod). | |
Aug 22 22:51:19 localhost systemd[1]: Child 97 (kmod) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:19 localhost systemd[1]: kmod-static-nodes.service: Child 97 belongs to kmod-static-nodes.service | |
Aug 22 22:51:19 localhost systemd[1]: kmod-static-nodes.service: Main process exited, code=exited, status=0/SUCCESS | |
Aug 22 22:51:19 localhost systemd[1]: kmod-static-nodes.service: Changed start -> exited | |
Aug 22 22:51:19 localhost systemd[1]: kmod-static-nodes.service: Job kmod-static-nodes.service/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Started Create list of required static device nodes for the current kernel. | |
Aug 22 22:51:19 localhost kernel: audit: type=1130 audit(1471906279.682:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=kmod-static-nodes comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:19 localhost systemd[1]: kmod-static-nodes.service: cgroup is empty | |
Aug 22 22:51:19 localhost systemd[1]: Child 100 (systemd-sysctl) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:19 localhost systemd[1]: systemd-sysctl.service: Child 100 belongs to systemd-sysctl.service | |
Aug 22 22:51:19 localhost systemd[1]: systemd-sysctl.service: Main process exited, code=exited, status=0/SUCCESS | |
Aug 22 22:51:19 localhost systemd[1]: systemd-sysctl.service: Changed start -> exited | |
Aug 22 22:51:19 localhost systemd[1]: systemd-sysctl.service: Job systemd-sysctl.service/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Started Apply Kernel Variables. | |
Aug 22 22:51:19 localhost kernel: audit: type=1130 audit(1471906279.697:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:19 localhost systemd[1]: systemd-sysctl.service: cgroup is empty | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.socket: Incoming traffic | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.socket: Changed listening -> running | |
Aug 22 22:51:19 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald-audit.socket: Incoming traffic | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald-audit.socket: Changed listening -> running | |
Aug 22 22:51:19 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:19 localhost systemd-journald[107]: Journal started | |
Aug 22 22:51:19 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:19 localhost systemd[1]: Got message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:19 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:19 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=kmod-static-nodes comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:19 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:19 localhost systemd[97]: kmod-static-nodes.service: Executing: /bin/kmod static-nodes --format=tmpfiles --output=/run/tmpfiles.d/kmod.conf | |
Aug 22 22:51:19 localhost systemd[100]: systemd-sysctl.service: Executing: /usr/lib/systemd/systemd-sysctl | |
Aug 22 22:51:19 localhost systemd-sysctl[100]: Parsing /usr/lib64/sysctl.d/50-coredump.conf | |
Aug 22 22:51:19 localhost dracut-cmdline[102]: dracut-dracut-041-r2 | |
Aug 22 22:51:19 localhost dracut-cmdline[102]: Using kernel command line parameters: | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (READY=1, STATUS=Processing requests...) | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Changed start -> running | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Job systemd-journald.service/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Started Journal Service. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald-dev-log.socket: Changed listening -> running | |
Aug 22 22:51:19 localhost kernel: audit: type=1130 audit(1471906279.723:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:19 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:19 localhost systemd-sysctl[100]: Parsing /usr/lib64/sysctl.d/50-default.conf | |
Aug 22 22:51:19 localhost systemd-sysctl[100]: Parsing /usr/lib64/sysctl.d/baselayout.conf | |
Aug 22 22:51:19 localhost systemd-sysctl[100]: Setting 'net/ipv4/conf/all/accept_source_route' to '0' | |
Aug 22 22:51:19 localhost systemd-sysctl[100]: Setting 'kernel/kptr_restrict' to '1' | |
Aug 22 22:51:19 localhost systemd-sysctl[100]: Setting 'fs/protected_symlinks' to '1' | |
Aug 22 22:51:19 localhost systemd-sysctl[100]: Setting 'kernel/core_pattern' to '|/usr/lib/systemd/systemd-coredump %P %u %g %s %t %c %e' | |
Aug 22 22:51:19 localhost systemd-sysctl[100]: Setting 'net/ipv4/conf/all/promote_secondaries' to '1' | |
Aug 22 22:51:19 localhost systemd-sysctl[100]: Setting 'net/ipv4/conf/all/rp_filter' to '1' | |
Aug 22 22:51:19 localhost systemd-sysctl[100]: Setting 'net/ipv4/conf/default/rp_filter' to '1' | |
Aug 22 22:51:19 localhost systemd-sysctl[100]: Setting 'kernel/core_uses_pid' to '1' | |
Aug 22 22:51:19 localhost systemd-sysctl[100]: Setting 'net/ipv4/ip_forward' to '1' | |
Aug 22 22:51:19 localhost systemd-sysctl[100]: Setting 'net/ipv4/conf/default/promote_secondaries' to '1' | |
Aug 22 22:51:19 localhost systemd-sysctl[100]: Setting 'kernel/sysrq' to '16' | |
Aug 22 22:51:19 localhost systemd-sysctl[100]: Setting 'net/core/default_qdisc' to 'fq_codel' | |
Aug 22 22:51:19 localhost systemd-sysctl[100]: Couldn't write 'fq_codel' to 'net/core/default_qdisc', ignoring: No such file or directory | |
Aug 22 22:51:19 localhost systemd-sysctl[100]: Setting 'net/ipv4/conf/default/accept_source_route' to '0' | |
Aug 22 22:51:19 localhost systemd-sysctl[100]: Setting 'fs/protected_hardlinks' to '1' | |
Aug 22 22:51:19 localhost systemd[102]: dracut-cmdline.service: Executing: /bin/dracut-cmdline | |
Aug 22 22:51:19 localhost systemd[107]: systemd-journald.service: Executing: /usr/lib/systemd/systemd-journald | |
Aug 22 22:51:19 localhost systemd-cgroups-agent[98]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:19 localhost systemd-cgroups-agent[103]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (WATCHDOG=1) | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-tmpfiles-setup-dev.service: ConditionCapability=CAP_SYS_MODULE succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-tmpfiles-setup-dev.service: About to execute: /usr/bin/systemd-tmpfiles --prefix=/dev --create --boot | |
Aug 22 22:51:19 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:19 localhost systemd[1]: systemd-tmpfiles-setup-dev.service: Forked /usr/bin/systemd-tmpfiles as 127 | |
Aug 22 22:51:19 localhost kernel: audit: type=1130 audit(1471906279.752:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:19 localhost systemd[1]: systemd-tmpfiles-setup-dev.service: Changed dead -> start | |
Aug 22 22:51:19 localhost systemd[1]: Starting Create Static Device Nodes in /dev... | |
Aug 22 22:51:19 localhost systemd[127]: systemd-tmpfiles-setup-dev.service: Executing: /usr/bin/systemd-tmpfiles --prefix=/dev --create --boot | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Reading config file "/usr/lib64/tmpfiles.d/dracut-tmpfiles.conf". | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/run/initramfs" does not match any include prefix, skipping. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/run/initramfs/log" does not match any include prefix, skipping. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/var/log" does not match any include prefix, skipping. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Reading config file "/run/tmpfiles.d/kmod.conf". | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/dev/autofs" matches include prefix "/dev". | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/dev/fuse" matches include prefix "/dev". | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/dev/btrfs-control" matches include prefix "/dev". | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/dev/loop-control" matches include prefix "/dev". | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/dev/net" matches include prefix "/dev". | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/dev/net/tun" matches include prefix "/dev". | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/dev/mapper" matches include prefix "/dev". | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/dev/mapper/control" matches include prefix "/dev". | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Reading config file "/usr/lib64/tmpfiles.d/systemd.conf". | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/run/user" does not match any include prefix, skipping. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/run/utmp" does not match any include prefix, skipping. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/run/systemd/ask-password" does not match any include prefix, skipping. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/run/systemd/seats" does not match any include prefix, skipping. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/run/systemd/sessions" does not match any include prefix, skipping. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/run/systemd/users" does not match any include prefix, skipping. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/run/systemd/machines" does not match any include prefix, skipping. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/run/systemd/shutdown" does not match any include prefix, skipping. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/run/systemd/netif" does not match any include prefix, skipping. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/run/systemd/netif/links" does not match any include prefix, skipping. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/run/systemd/netif/leases" does not match any include prefix, skipping. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/run/log" does not match any include prefix, skipping. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/run/log/journal" does not match any include prefix, skipping. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/run/log/journal/73759e4fef1f4658901a45f6e20995af" does not match any include prefix, skipping. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/var/log/journal" does not match any include prefix, skipping. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/var/log/journal/73759e4fef1f4658901a45f6e20995af" does not match any include prefix, skipping. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/var/log/journal/73759e4fef1f4658901a45f6e20995af/system.journal" does not match any include prefix, skipping. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/var/lib/systemd" does not match any include prefix, skipping. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Entry "/var/lib/systemd/coredump" does not match any include prefix, skipping. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Running create action for entry c /dev/autofs | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Found existing char device node "/dev/autofs" 1:128. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: "/dev/autofs" has right mode 20600 | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Running create action for entry c /dev/fuse | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Created char device node "/dev/fuse" 1:128. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: "/dev/fuse" has right mode 20600 | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Running create action for entry c /dev/btrfs-control | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Created char device node "/dev/btrfs-control" 1:128. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: "/dev/btrfs-control" has right mode 20600 | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Running create action for entry c /dev/loop-control | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Created char device node "/dev/loop-control" 1:128. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: "/dev/loop-control" has right mode 20600 | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Running create action for entry d /dev/net | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Created directory "/dev/net". | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: "/dev/net" has right mode 40755 | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Running create action for entry c /dev/net/tun | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Created char device node "/dev/net/tun" 1:128. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: "/dev/net/tun" has right mode 20600 | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Running create action for entry d /dev/mapper | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Created directory "/dev/mapper". | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: "/dev/mapper" has right mode 40755 | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Running create action for entry c /dev/mapper/control | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: Created char device node "/dev/mapper/control" 1:128. | |
Aug 22 22:51:19 localhost systemd-tmpfiles[127]: "/dev/mapper/control" has right mode 20600 | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:19 localhost systemd[1]: Received SIGCHLD from PID 127 (systemd-tmpfile). | |
Aug 22 22:51:19 localhost systemd[1]: Child 127 (systemd-tmpfile) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:19 localhost systemd[1]: systemd-tmpfiles-setup-dev.service: Child 127 belongs to systemd-tmpfiles-setup-dev.service | |
Aug 22 22:51:19 localhost systemd[1]: systemd-tmpfiles-setup-dev.service: Main process exited, code=exited, status=0/SUCCESS | |
Aug 22 22:51:19 localhost systemd[1]: systemd-tmpfiles-setup-dev.service: Changed start -> exited | |
Aug 22 22:51:19 localhost systemd[1]: systemd-tmpfiles-setup-dev.service: Job systemd-tmpfiles-setup-dev.service/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Started Create Static Device Nodes in /dev. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-tmpfiles-setup-dev.service: cgroup is empty | |
Aug 22 22:51:19 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:19 localhost systemd-cgroups-agent[128]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:19 localhost systemd[1]: Got message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:19 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:19 localhost systemd[1]: Received SIGCHLD from PID 102 (dracut-cmdline). | |
Aug 22 22:51:19 localhost systemd[1]: Child 102 (dracut-cmdline) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:19 localhost systemd[1]: dracut-cmdline.service: Child 102 belongs to dracut-cmdline.service | |
Aug 22 22:51:19 localhost systemd[1]: dracut-cmdline.service: Main process exited, code=exited, status=0/SUCCESS | |
Aug 22 22:51:19 localhost systemd[1]: dracut-cmdline.service: Changed start -> exited | |
Aug 22 22:51:19 localhost systemd[1]: dracut-cmdline.service: Job dracut-cmdline.service/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Started dracut cmdline hook. | |
Aug 22 22:51:19 localhost kernel: audit: type=1130 audit(1471906279.800:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:19 localhost kernel: device-mapper: uevent: version 1.0.3 | |
Aug 22 22:51:19 localhost kernel: device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: [email protected] | |
Aug 22 22:51:19 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:19 localhost systemd[1]: dracut-cmdline.service: cgroup is empty | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-udev.service: ConditionKernelCommandLine=|rd.driver.post failed. | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-udev.service: ConditionKernelCommandLine=|rd.driver.pre failed. | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-udev.service: ConditionKernelCommandLine=|rd.driver.blacklist failed. | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-udev.service: ConditionKernelCommandLine=|rd.break=pre-udev failed. | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-udev.service: ConditionDirectoryNotEmpty=|/lib/dracut/hooks/pre-udev succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-udev.service: ConditionPathExists=/usr/lib/initrd-release succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-udev.service: About to execute: /bin/dracut-pre-udev | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-udev.service: Forked /bin/dracut-pre-udev as 162 | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-udev.service: Changed dead -> start | |
Aug 22 22:51:19 localhost systemd[1]: Starting dracut pre-udev hook... | |
Aug 22 22:51:19 localhost systemd[162]: dracut-pre-udev.service: Executing: /bin/dracut-pre-udev | |
Aug 22 22:51:19 localhost systemd[1]: libmount event [rescan: no] | |
Aug 22 22:51:19 localhost systemd[1]: systemd-udevd-kernel.socket: Incoming traffic | |
Aug 22 22:51:19 localhost systemd[1]: systemd-udevd-kernel.socket: Changed listening -> running | |
Aug 22 22:51:19 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:19 localhost systemd-cgroups-agent[161]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:19 localhost systemd[1]: Got message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:19 localhost systemd[1]: dracut-cmdline.service: cgroup is empty | |
Aug 22 22:51:19 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:19 localhost systemd[1]: Received SIGCHLD from PID 162 (dracut-pre-udev). | |
Aug 22 22:51:19 localhost systemd[1]: Child 162 (dracut-pre-udev) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-udev.service: Child 162 belongs to dracut-pre-udev.service | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-udev.service: Main process exited, code=exited, status=0/SUCCESS | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-udev.service: Changed start -> exited | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-udev.service: Job dracut-pre-udev.service/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Started dracut pre-udev hook. | |
Aug 22 22:51:19 localhost kernel: audit: type=1130 audit(1471906279.887:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:19 localhost kernel: audit: type=1130 audit(1471906279.901:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:19 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:19 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-udev.service: cgroup is empty | |
Aug 22 22:51:19 localhost systemd[1]: systemd-udevd.service: ConditionPathIsReadWrite=/sys succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-udevd.service: About to execute: /usr/lib/systemd/systemd-udevd | |
Aug 22 22:51:19 localhost systemd[1]: systemd-udevd.service: Forked /usr/lib/systemd/systemd-udevd as 194 | |
Aug 22 22:51:19 localhost systemd[1]: systemd-udevd.service: Changed dead -> start | |
Aug 22 22:51:19 localhost systemd[1]: Starting udev Kernel Device Manager... | |
Aug 22 22:51:19 localhost systemd[194]: systemd-udevd.service: Executing: /usr/lib/systemd/systemd-udevd | |
Aug 22 22:51:19 localhost systemd-udevd[194]: set children_max to 10 | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Failed to symlink /proc/kcore to /dev/core: File exists | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Failed to symlink /proc/self/fd to /dev/fd: File exists | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Failed to symlink /proc/self/fd/0 to /dev/stdin: File exists | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Failed to symlink /proc/self/fd/1 to /dev/stdout: File exists | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Failed to symlink /proc/self/fd/2 to /dev/stderr: File exists | |
Aug 22 22:51:19 localhost systemd-udevd[194]: hwdb.bin does not exist, please run udevadm hwdb --update | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Load module index | |
Aug 22 22:51:19 localhost systemd-udevd[194]: timestamp of '/etc/systemd/network' changed | |
Aug 22 22:51:19 localhost systemd-udevd[194]: timestamp of '/usr/lib/systemd/network' changed | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Parsed configuration file /usr/lib64/systemd/network/99-default.link | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Parsed configuration file /etc/systemd/network/98-disable-net-names.link | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Created link configuration context. | |
Aug 22 22:51:19 localhost systemd-udevd[194]: timestamp of '/etc/udev/rules.d' changed | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/10-dm.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /etc/udev/rules.d/11-dm.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/13-dm-disk.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/50-udev-default.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /etc/udev/rules.d/59-persistent-storage-dm.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /etc/udev/rules.d/59-persistent-storage-md.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /etc/udev/rules.d/59-persistent-storage.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/60-persistent-storage.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /etc/udev/rules.d/61-persistent-storage.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/63-md-raid-arrays.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/64-btrfs.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/64-md-raid-assembly.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /etc/udev/rules.d/65-md-incremental-imsm.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/66-kpartx.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /etc/udev/rules.d/70-luks.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/70-uaccess.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/71-seat.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/73-seat-late.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: RUN{builtin}: 'uaccess' unknown /usr/lib64/udev/rules.d/73-seat-late.rules:15 | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/75-net-description.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/80-drivers.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/80-net-setup-link.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /etc/udev/rules.d/90-disk-uuid.rules | |
Aug 22 22:51:19 localhost kernel: audit: type=1130 audit(1471906279.942:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-systemd-networkd comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:19 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-systemd-networkd comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/90-vconsole.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/95-dm-notify.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/99-systemd.rules | |
Aug 22 22:51:19 localhost systemd-udevd[194]: rules contain 24576 bytes tokens (2048 * 12 bytes), 8494 bytes strings | |
Aug 22 22:51:19 localhost systemd-udevd[194]: 1258 strings (15380 bytes), 816 de-duplicated (7329 bytes), 443 trie nodes used | |
Aug 22 22:51:19 localhost systemd-udevd[194]: chmod '/dev/loop-control' 0660 | |
Aug 22 22:51:19 localhost systemd-udevd[194]: chown '/dev/loop-control' 0 6 | |
Aug 22 22:51:19 localhost systemd-udevd[194]: chmod '/dev/net/tun' 0666 | |
Aug 22 22:51:19 localhost systemd-udevd[194]: chmod '/dev/fuse' 0666 | |
Aug 22 22:51:19 localhost systemd-udevd[194]: seq 506 queued, 'add' 'module' | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Validate module index | |
Aug 22 22:51:19 localhost systemd-udevd[194]: Check if link configuration needs reloading. | |
Aug 22 22:51:19 localhost systemd-udevd[194]: seq 506 forked new worker [195] | |
Aug 22 22:51:19 localhost systemd-udevd[194]: seq 507 queued, 'add' 'slab' | |
Aug 22 22:51:19 localhost systemd-udevd[194]: seq 507 forked new worker [196] | |
Aug 22 22:51:19 localhost systemd-udevd[194]: seq 508 queued, 'add' 'slab' | |
Aug 22 22:51:19 localhost systemd[1]: systemd-udevd.service: Got notification message from PID 194 (WATCHDOG=1) | |
Aug 22 22:51:19 localhost systemd[1]: systemd-udevd.service: Got notification message from PID 194 (READY=1, STATUS=Processing...) | |
Aug 22 22:51:19 localhost systemd[1]: systemd-udevd.service: Changed start -> running | |
Aug 22 22:51:19 localhost systemd[1]: systemd-udevd.service: Job systemd-udevd.service/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Started udev Kernel Device Manager. | |
Aug 22 22:51:19 localhost kernel: audit: type=1130 audit(1471906279.970:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-systemd-resolved comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:19 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-systemd-resolved comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:19 localhost systemd[1]: systemd-udevd-control.socket: Changed listening -> running | |
Aug 22 22:51:19 localhost systemd-udevd[194]: seq 508 forked new worker [197] | |
Aug 22 22:51:19 localhost systemd-udevd[194]: seq 509 queued, 'add' 'misc' | |
Aug 22 22:51:19 localhost systemd-udevd[194]: seq 509 forked new worker [198] | |
Aug 22 22:51:19 localhost systemd-udevd[194]: seq 510 queued, 'add' 'module' | |
Aug 22 22:51:19 localhost systemd-udevd[194]: seq 510 forked new worker [199] | |
Aug 22 22:51:19 localhost systemd-udevd[194]: seq 511 queued, 'add' 'module' | |
Aug 22 22:51:19 localhost systemd-udevd[196]: seq 507 running | |
Aug 22 22:51:19 localhost systemd-udevd[196]: passed device to netlink monitor 0x55a7deeff950 | |
Aug 22 22:51:19 localhost systemd-udevd[196]: seq 507 processed | |
Aug 22 22:51:19 localhost systemd-udevd[197]: seq 508 running | |
Aug 22 22:51:19 localhost systemd-udevd[197]: passed device to netlink monitor 0x55a7def0ccb0 | |
Aug 22 22:51:19 localhost systemd-udevd[197]: seq 508 processed | |
Aug 22 22:51:19 localhost systemd-udevd[195]: seq 506 running | |
Aug 22 22:51:19 localhost systemd-udevd[198]: seq 509 running | |
Aug 22 22:51:19 localhost systemd-udevd[198]: NAME 'mapper/control' /usr/lib64/udev/rules.d/10-dm.rules:17 | |
Aug 22 22:51:19 localhost systemd-udevd[198]: handling device node '/dev/mapper/control', devnum=c10:236, mode=0600, uid=0, gid=0 | |
Aug 22 22:51:19 localhost systemd-udevd[198]: preserve permissions /dev/mapper/control, 020600, uid=0, gid=0 | |
Aug 22 22:51:19 localhost systemd-udevd[198]: creating symlink '/dev/char/10:236' to '../mapper/control' | |
Aug 22 22:51:19 localhost systemd-udevd[198]: created empty file '/run/udev/data/c10:236' for '/devices/virtual/misc/device-mapper' | |
Aug 22 22:51:19 localhost systemd-udevd[198]: passed device to netlink monitor 0x55a7def0b4a0 | |
Aug 22 22:51:19 localhost systemd-udevd[198]: seq 509 processed | |
Aug 22 22:51:19 localhost systemd-udevd[199]: seq 510 running | |
Aug 22 22:51:19 localhost systemd-udevd[199]: passed device to netlink monitor 0x55a7def02950 | |
Aug 22 22:51:19 localhost systemd-udevd[199]: seq 510 processed | |
Aug 22 22:51:19 localhost systemd-udevd[195]: passed device to netlink monitor 0x55a7def0e230 | |
Aug 22 22:51:19 localhost systemd-udevd[195]: seq 506 processed | |
Aug 22 22:51:19 localhost systemd-udevd[194]: seq 511 forked new worker [200] | |
Aug 22 22:51:19 localhost systemd-udevd[194]: seq 512 queued, 'add' 'module' | |
Aug 22 22:51:19 localhost systemd-udevd[194]: passed 130 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:19 localhost systemd-udevd[200]: seq 511 running | |
Aug 22 22:51:19 localhost systemd-udevd[200]: passed device to netlink monitor 0x55a7def03b50 | |
Aug 22 22:51:19 localhost systemd-udevd[200]: seq 511 processed | |
Aug 22 22:51:19 localhost systemd-udevd[198]: seq 512 running | |
Aug 22 22:51:19 localhost systemd-udevd[198]: passed device to netlink monitor 0x55a7def0b4a0 | |
Aug 22 22:51:19 localhost systemd-udevd[198]: seq 512 processed | |
Aug 22 22:51:19 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:19 localhost systemd-udevd[196]: Unload module index | |
Aug 22 22:51:19 localhost ignition[209]: Ignition v0.8.0 | |
Aug 22 22:51:19 localhost systemd-udevd[196]: Unloaded link configuration context. | |
Aug 22 22:51:19 localhost ignition[209]: parsed url from cmdline: "http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa" | |
Aug 22 22:51:19 localhost systemd-udevd[197]: Unload module index | |
Aug 22 22:51:19 localhost ignition[209]: failed to fetch http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa: Get http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa: dial tcp: lookup bootcfg.mgt.tite.lan on [::1]:53: read udp [::1]:40184->[::1]:53: read: connection refused | |
Aug 22 22:51:19 localhost systemd-udevd[197]: Unloaded link configuration context. | |
Aug 22 22:51:20 localhost dracut-pre-trigger[201]: rd.md=0: removing MD RAID activation | |
Aug 22 22:51:20 localhost dracut-pre-trigger[201]: calling: control | |
Aug 22 22:51:19 localhost systemd-udevd[195]: Unload module index | |
Aug 22 22:51:19 localhost systemd-udevd[195]: Unloaded link configuration context. | |
Aug 22 22:51:19 localhost systemd-udevd[199]: Unload module index | |
Aug 22 22:51:19 localhost systemd-udevd[199]: Unloaded link configuration context. | |
Aug 22 22:51:19 localhost systemd-udevd[194]: worker [195] exited | |
Aug 22 22:51:19 localhost systemd-udevd[194]: worker [196] exited | |
Aug 22 22:51:19 localhost systemd-udevd[194]: worker [197] exited | |
Aug 22 22:51:19 localhost systemd-udevd[194]: worker [199] exited | |
Aug 22 22:51:19 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:19 localhost systemd-udevd[200]: Unload module index | |
Aug 22 22:51:19 localhost systemd-udevd[200]: Unloaded link configuration context. | |
Aug 22 22:51:19 localhost systemd-udevd[194]: worker [200] exited | |
Aug 22 22:51:19 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:19 localhost systemd-udevd[198]: Unload module index | |
Aug 22 22:51:19 localhost systemd-udevd[198]: Unloaded link configuration context. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:19 localhost systemd-udevd[194]: worker [198] exited | |
Aug 22 22:51:19 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:19 localhost systemd-cgroups-agent[193]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:19 localhost systemd[1]: Got message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-udev.service: cgroup is empty | |
Aug 22 22:51:19 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-trigger.service: ConditionKernelCommandLine=|rd.break=pre-trigger failed. | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-trigger.service: ConditionDirectoryNotEmpty=|/lib/dracut/hooks/pre-trigger succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-trigger.service: ConditionPathExists=/usr/lib/initrd-release succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-trigger.service: About to execute: /bin/dracut-pre-trigger | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-trigger.service: Forked /bin/dracut-pre-trigger as 201 | |
Aug 22 22:51:19 localhost systemd[1]: dracut-pre-trigger.service: Changed dead -> start | |
Aug 22 22:51:19 localhost systemd[1]: Starting dracut pre-trigger hook... | |
Aug 22 22:51:19 localhost systemd[1]: initrd-systemd-networkd.service: ConditionCapability=CAP_NET_ADMIN succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: initrd-systemd-networkd.service: ConditionPathExists=/etc/initrd-release succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: initrd-systemd-networkd.service: About to execute: /usr/lib/systemd/systemd-networkd | |
Aug 22 22:51:19 localhost systemd[1]: initrd-systemd-networkd.service: Forked /usr/lib/systemd/systemd-networkd as 202 | |
Aug 22 22:51:19 localhost systemd[1]: initrd-systemd-networkd.service: Changed dead -> start | |
Aug 22 22:51:19 localhost systemd[1]: Starting Network Service... | |
Aug 22 22:51:19 localhost systemd[201]: dracut-pre-trigger.service: Executing: /bin/dracut-pre-trigger | |
Aug 22 22:51:19 localhost systemd[202]: initrd-systemd-networkd.service: Executing: /usr/lib/systemd/systemd-networkd | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:19 localhost systemd[1]: initrd-systemd-networkd.service: Got notification message from PID 202 (WATCHDOG=1) | |
Aug 22 22:51:19 localhost systemd-networkd[202]: Failed to connect to bus, trying again in 5s: No such file or directory | |
Aug 22 22:51:19 localhost systemd-networkd[202]: timestamp of '/etc/systemd/network' changed | |
Aug 22 22:51:19 localhost systemd-networkd[202]: timestamp of '/usr/lib/systemd/network' changed | |
Aug 22 22:51:19 localhost systemd-networkd[202]: lo: Flags change: +LOOPBACK +UP +LOWER_UP +RUNNING | |
Aug 22 22:51:19 localhost systemd-networkd[202]: lo: Link 1 added | |
Aug 22 22:51:19 localhost systemd-networkd[202]: lo: link pending udev initialization... | |
Aug 22 22:51:19 localhost systemd-networkd[202]: lo: Saved original MTU: 0 | |
Aug 22 22:51:19 localhost systemd-networkd[202]: lo: Adding address: ::1/128 (valid forever) | |
Aug 22 22:51:19 localhost systemd-networkd[202]: lo: Adding address: 127.0.0.1/8 (valid forever) | |
Aug 22 22:51:19 localhost systemd-networkd[202]: Enumeration completed | |
Aug 22 22:51:19 localhost systemd[1]: initrd-systemd-networkd.service: Got notification message from PID 202 (READY=1, STATUS=Processing requests...) | |
Aug 22 22:51:19 localhost systemd[1]: initrd-systemd-networkd.service: Changed start -> running | |
Aug 22 22:51:19 localhost systemd[1]: initrd-systemd-networkd.service: Job initrd-systemd-networkd.service/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Started Network Service. | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:19 localhost systemd[1]: network.target changed dead -> active | |
Aug 22 22:51:19 localhost systemd[1]: network.target: Job network.target/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Reached target Network. | |
Aug 22 22:51:19 localhost systemd[1]: initrd-systemd-resolved.service: ConditionPathExists=/etc/initrd-release succeeded. | |
Aug 22 22:51:19 localhost systemd[1]: initrd-systemd-resolved.service: About to execute: /usr/lib/systemd/systemd-resolved | |
Aug 22 22:51:19 localhost systemd[1]: initrd-systemd-resolved.service: Forked /usr/lib/systemd/systemd-resolved as 203 | |
Aug 22 22:51:19 localhost systemd[1]: initrd-systemd-resolved.service: Changed dead -> start | |
Aug 22 22:51:19 localhost systemd[1]: Starting Network Name Resolution... | |
Aug 22 22:51:19 localhost systemd[203]: initrd-systemd-resolved.service: Executing: /usr/lib/systemd/systemd-resolved | |
Aug 22 22:51:19 localhost systemd-resolved[203]: Positive Trust Anchors: | |
Aug 22 22:51:19 localhost systemd-resolved[203]: . IN DS 19036 8 2 49aac11d7b6f6446702e54a1607371607a1a41855200fd2ce1cdde32f24e8fb5 | |
Aug 22 22:51:19 localhost systemd-resolved[203]: Negative trust anchors: 10.in-addr.arpa 16.172.in-addr.arpa 17.172.in-addr.arpa 18.172.in-addr.arpa 19.172.in-addr.arpa 20.172.in-addr.arpa 21.172.in-addr.arpa 22.172.in-addr.arpa 23.172.in-addr.arpa 24.172.in-addr.arpa 25.172.in-addr.arpa 26.172.in-addr.arpa 27.172.in-addr.arpa 28.172.in-addr.arpa 29.172.in-addr.arpa 30.172.in-addr.arpa 31.172.in-addr.arpa 168.192.in-addr.arpa corp home internal intranet lan local private test | |
Aug 22 22:51:19 localhost systemd-resolved[203]: System hostname is 'localhost', ignoring. | |
Aug 22 22:51:19 localhost systemd-resolved[203]: Defaulting to hostname 'linux'. | |
Aug 22 22:51:20 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-trigger comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:19 localhost systemd-resolved[203]: New scope on link *, protocol dns, family * | |
Aug 22 22:51:19 localhost systemd-resolved[203]: Found new link 1/lo | |
Aug 22 22:51:19 localhost systemd-resolved[203]: Failed to connect to bus, trying again in 5s: No such file or directory | |
Aug 22 22:51:19 localhost systemd[1]: initrd-systemd-resolved.service: Got notification message from PID 203 (WATCHDOG=1) | |
Aug 22 22:51:19 localhost systemd[1]: initrd-systemd-resolved.service: Got notification message from PID 203 (READY=1, STATUS=Processing requests...) | |
Aug 22 22:51:19 localhost systemd[1]: initrd-systemd-resolved.service: Changed start -> running | |
Aug 22 22:51:20 localhost udevadm[240]: calling: trigger | |
Aug 22 22:51:20 localhost udevadm[240]: device-enumerator: scanning /sys/bus | |
Aug 22 22:51:19 localhost systemd[1]: initrd-systemd-resolved.service: Job initrd-systemd-resolved.service/start finished, result=done | |
Aug 22 22:51:19 localhost systemd[1]: Started Network Name Resolution. | |
Aug 22 22:51:20 localhost udevadm[250]: calling: trigger | |
Aug 22 22:51:20 localhost udevadm[250]: device-enumerator: scan all dirs | |
Aug 22 22:51:20 localhost udevadm[250]: device-enumerator: scanning /sys/bus | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:19 localhost systemd[1]: ignition-disks.service: About to execute: /usr/bin/ignition --root=/sysroot --oem=${OEM_ID} --stage=disks | |
Aug 22 22:51:19 localhost systemd[1]: ignition-disks.service: Forked /usr/bin/ignition as 209 | |
Aug 22 22:51:19 localhost systemd[1]: ignition-disks.service: Changed dead -> start | |
Aug 22 22:51:19 localhost systemd[1]: Starting Ignition (disks)... | |
Aug 22 22:51:19 localhost systemd[209]: ignition-disks.service: Executing: /usr/bin/ignition --root=/sysroot --oem=pxe --stage=disks | |
Aug 22 22:51:20 localhost udevadm[250]: device-enumerator: scanning /sys/class | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:19 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:20 localhost systemd-udevd[194]: udevd message (ENV) received, set 'rd_NO_MD=1' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: udevd message (RELOAD) received | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Unload module index | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Unloaded link configuration context. | |
Aug 22 22:51:20 localhost systemd[1]: systemd-udevd.service: Got notification message from PID 194 (RELOADING=1, STATUS=Flushing configuration...) | |
Aug 22 22:51:20 localhost systemd[1]: systemd-udevd.service: Changed running -> reload | |
Aug 22 22:51:20 localhost systemd[1]: systemd-udevd.service: Got notification message from PID 194 (READY=1, STATUS=Processing...) | |
Aug 22 22:51:20 localhost systemd[1]: systemd-udevd.service: Changed reload -> running | |
Aug 22 22:51:20 localhost systemd[1]: Received SIGCHLD from PID 201 (dracut-pre-trig). | |
Aug 22 22:51:20 localhost systemd[1]: Child 201 (dracut-pre-trig) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:20 localhost systemd[1]: dracut-pre-trigger.service: Child 201 belongs to dracut-pre-trigger.service | |
Aug 22 22:51:20 localhost systemd[1]: dracut-pre-trigger.service: Main process exited, code=exited, status=0/SUCCESS | |
Aug 22 22:51:20 localhost systemd[1]: dracut-pre-trigger.service: Changed start -> exited | |
Aug 22 22:51:20 localhost systemd[1]: dracut-pre-trigger.service: Job dracut-pre-trigger.service/start finished, result=done | |
Aug 22 22:51:20 localhost systemd[1]: Started dracut pre-trigger hook. | |
Aug 22 22:51:20 localhost systemd[1]: dracut-pre-trigger.service: cgroup is empty | |
Aug 22 22:51:20 localhost systemd[1]: systemd-udev-trigger.service: ConditionPathIsReadWrite=/sys succeeded. | |
Aug 22 22:51:20 localhost systemd[1]: systemd-udev-trigger.service: About to execute: /usr/bin/udevadm trigger --type=subsystems --action=add | |
Aug 22 22:51:20 localhost systemd[1]: systemd-udev-trigger.service: Forked /usr/bin/udevadm as 240 | |
Aug 22 22:51:20 localhost systemd[1]: systemd-udev-trigger.service: Changed dead -> start | |
Aug 22 22:51:20 localhost systemd[1]: Starting udev Coldplug all Devices... | |
Aug 22 22:51:20 localhost systemd[240]: systemd-udev-trigger.service: Executing: /usr/bin/udevadm trigger --type=subsystems --action=add | |
Aug 22 22:51:20 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 513 queued, 'add' 'bus' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: hwdb.bin does not exist, please run udevadm hwdb --update | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Load module index | |
Aug 22 22:51:20 localhost systemd-udevd[194]: timestamp of '/etc/systemd/network' changed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: timestamp of '/usr/lib/systemd/network' changed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Parsed configuration file /usr/lib64/systemd/network/99-default.link | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Parsed configuration file /etc/systemd/network/98-disable-net-names.link | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Created link configuration context. | |
Aug 22 22:51:20 localhost systemd-udevd[194]: timestamp of '/etc/udev/rules.d' changed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/10-dm.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /etc/udev/rules.d/11-dm.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/13-dm-disk.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/50-udev-default.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /etc/udev/rules.d/59-persistent-storage-dm.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /etc/udev/rules.d/59-persistent-storage-md.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /etc/udev/rules.d/59-persistent-storage.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/60-persistent-storage.rules | |
Aug 22 22:51:20 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /etc/udev/rules.d/61-persistent-storage.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/63-md-raid-arrays.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/64-btrfs.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/64-md-raid-assembly.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /etc/udev/rules.d/65-md-incremental-imsm.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/66-kpartx.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /etc/udev/rules.d/70-luks.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/70-uaccess.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/71-seat.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/73-seat-late.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: RUN{builtin}: 'uaccess' unknown /usr/lib64/udev/rules.d/73-seat-late.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/75-net-description.rules | |
Aug 22 22:51:20 localhost ignition[209]: failed to fetch http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa: Get http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa: dial tcp: lookup bootcfg.mgt.tite.lan on [::1]:53: read udp [::1]:46185->[::1]:53: read: connection refused | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/80-drivers.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/80-net-setup-link.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /etc/udev/rules.d/90-disk-uuid.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/90-vconsole.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/95-dm-notify.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: Reading rules file: /usr/lib64/udev/rules.d/99-systemd.rules | |
Aug 22 22:51:20 localhost systemd-udevd[194]: rules contain 24576 bytes tokens (2048 * 12 bytes), 8494 bytes strings | |
Aug 22 22:51:20 localhost systemd-udevd[194]: 1258 strings (15380 bytes), 816 de-duplicated (7329 bytes), 443 trie nodes used | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 513 forked new worker [241] | |
Aug 22 22:51:20 localhost systemd-udevd[241]: seq 513 running | |
Aug 22 22:51:20 localhost systemd-udevd[241]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[241]: seq 513 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:20 localhost systemd-udevd[241]: Unload module index | |
Aug 22 22:51:20 localhost systemd-udevd[241]: Unloaded link configuration context. | |
Aug 22 22:51:20 localhost systemd-udevd[194]: worker [241] exited | |
Aug 22 22:51:20 localhost systemd-cgroups-agent[239]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:20 localhost systemd[1]: Got message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:20 localhost systemd[1]: dracut-pre-trigger.service: cgroup is empty | |
Aug 22 22:51:20 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 514 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 514 forked new worker [242] | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 515 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 515 forked new worker [243] | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 516 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 516 forked new worker [244] | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 517 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 517 forked new worker [245] | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 518 queued, 'add' 'bus' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 518 forked new worker [246] | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 519 queued, 'add' 'bus' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 519 forked new worker [247] | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 520 queued, 'add' 'bus' | |
Aug 22 22:51:20 localhost systemd[1]: Received SIGCHLD from PID 240 (udevadm). | |
Aug 22 22:51:20 localhost systemd[1]: Child 240 (udevadm) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:20 localhost systemd[1]: systemd-udev-trigger.service: Child 240 belongs to systemd-udev-trigger.service | |
Aug 22 22:51:20 localhost systemd[1]: systemd-udev-trigger.service: Main process exited, code=exited, status=0/SUCCESS | |
Aug 22 22:51:20 localhost systemd[1]: systemd-udev-trigger.service: Running next main command for state start. | |
Aug 22 22:51:20 localhost systemd[1]: systemd-udev-trigger.service: About to execute: /usr/bin/udevadm trigger --type=devices --action=add | |
Aug 22 22:51:20 localhost systemd[1]: systemd-udev-trigger.service: Forked /usr/bin/udevadm as 250 | |
Aug 22 22:51:20 localhost systemd[250]: systemd-udev-trigger.service: Executing: /usr/bin/udevadm trigger --type=devices --action=add | |
Aug 22 22:51:20 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:20 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 518 running | |
Aug 22 22:51:20 localhost systemd-udevd[246]: passed device to netlink monitor 0x55a7def169e0 | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 518 processed | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 517 running | |
Aug 22 22:51:20 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 517 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 520 forked new worker [248] | |
Aug 22 22:51:20 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 519 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 519 processed | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 516 running | |
Aug 22 22:51:20 localhost systemd-udevd[244]: passed device to netlink monitor 0x55a7def152c0 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 516 processed | |
Aug 22 22:51:20 localhost systemd-udevd[248]: seq 520 running | |
Aug 22 22:51:20 localhost systemd-udevd[248]: passed device to netlink monitor 0x55a7def18980 | |
Aug 22 22:51:20 localhost systemd-udevd[248]: seq 520 processed | |
Aug 22 22:51:20 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:20 localhost systemd-cgroups-agent[249]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:20 localhost systemd[1]: Got message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:20 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 521 queued, 'add' 'bus' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 118 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 522 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 523 queued, 'add' 'bus' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 127 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 524 queued, 'add' 'bus' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 127 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 525 queued, 'add' 'bus' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 121 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 526 queued, 'add' 'bus' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 119 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 527 queued, 'add' 'bus' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 527 forked new worker [251] | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 528 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 529 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 530 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 531 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 521 running | |
Aug 22 22:51:20 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 521 processed | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 524 running | |
Aug 22 22:51:20 localhost systemd-udevd[246]: passed device to netlink monitor 0x55a7def169e0 | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 524 processed | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 525 running | |
Aug 22 22:51:20 localhost systemd-udevd[244]: passed device to netlink monitor 0x55a7def152c0 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 525 processed | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 515 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 515 processed | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 526 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 526 processed | |
Aug 22 22:51:20 localhost systemd-udevd[248]: seq 523 running | |
Aug 22 22:51:20 localhost systemd-udevd[248]: passed device to netlink monitor 0x55a7def18980 | |
Aug 22 22:51:20 localhost systemd-udevd[248]: seq 523 processed | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 514 running | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 514 processed | |
Aug 22 22:51:20 localhost systemd-udevd[251]: seq 527 running | |
Aug 22 22:51:20 localhost systemd-udevd[251]: passed device to netlink monitor 0x55a7def1ad90 | |
Aug 22 22:51:20 localhost systemd-udevd[251]: seq 527 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 532 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 140 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 139 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 138 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 143 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 139 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 137 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 533 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 147 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 534 queued, 'add' 'bus' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 126 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 535 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 536 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 537 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 538 queued, 'add' 'bus' | |
Aug 22 22:51:20 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:20 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 529 running | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 532 running | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 533 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 522 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 534 running | |
Aug 22 22:51:20 localhost systemd-udevd[248]: seq 531 running | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 528 running | |
Aug 22 22:51:20 localhost systemd-udevd[251]: seq 530 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 538 forked new worker [252] | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 539 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 540 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 541 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 542 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 543 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 529 processed | |
Aug 22 22:51:20 localhost systemd-udevd[246]: passed device to netlink monitor 0x55a7def169e0 | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 532 processed | |
Aug 22 22:51:20 localhost systemd-udevd[244]: passed device to netlink monitor 0x55a7def152c0 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 533 processed | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 522 processed | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 534 processed | |
Aug 22 22:51:20 localhost systemd-udevd[248]: passed device to netlink monitor 0x55a7def18980 | |
Aug 22 22:51:20 localhost systemd-udevd[248]: seq 531 processed | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 528 processed | |
Aug 22 22:51:20 localhost systemd-udevd[251]: passed device to netlink monitor 0x55a7def1ad90 | |
Aug 22 22:51:20 localhost systemd-udevd[251]: seq 530 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 544 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 535 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 535 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 142 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 536 running | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 536 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 147 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 537 running | |
Aug 22 22:51:20 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 537 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 145 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 545 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 546 queued, 'add' 'bus' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 546 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 546 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 118 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 547 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 547 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 547 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 140 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 548 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 548 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 548 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 140 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 549 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 549 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 549 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 538 running | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 538 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 139 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 539 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 539 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 146 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 143 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 541 running | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 541 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 151 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 542 running | |
Aug 22 22:51:20 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 542 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 144 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[251]: seq 543 running | |
Aug 22 22:51:20 localhost systemd-udevd[251]: passed device to netlink monitor 0x55a7def1ad90 | |
Aug 22 22:51:20 localhost systemd-udevd[251]: seq 543 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 141 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[248]: seq 544 running | |
Aug 22 22:51:20 localhost systemd-udevd[248]: passed device to netlink monitor 0x55a7def18980 | |
Aug 22 22:51:20 localhost systemd-udevd[248]: seq 544 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 146 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 545 running | |
Aug 22 22:51:20 localhost systemd-udevd[246]: passed device to netlink monitor 0x55a7def169e0 | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 545 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 152 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 550 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 550 running | |
Aug 22 22:51:20 localhost systemd-udevd[244]: passed device to netlink monitor 0x55a7def152c0 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 550 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 137 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 551 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 551 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 551 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 540 running | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 540 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 137 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 552 queued, 'add' 'bus' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 552 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 552 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 120 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-mount comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 553 queued, 'add' 'drivers' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 553 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 553 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 138 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 554 queued, 'add' 'bus' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 554 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 554 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 124 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 555 queued, 'add' 'bus' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 555 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 555 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 118 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 556 queued, 'add' 'bus' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 556 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 556 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 126 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 557 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 557 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 557 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 125 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 558 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 558 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 558 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 130 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 559 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 559 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 559 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 125 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 560 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 560 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 560 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 128 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 561 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 561 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 561 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 128 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 562 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 562 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 562 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 126 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 563 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 563 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 563 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 128 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 564 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 564 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 564 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 130 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 565 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 565 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 565 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 124 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 566 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 566 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 566 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 127 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 567 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 567 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 567 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 130 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 568 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 568 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 568 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 127 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 569 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 569 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 569 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 135 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 570 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 570 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 570 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 134 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 571 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 571 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 571 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 123 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 572 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 572 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 572 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 135 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 573 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 573 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 573 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 126 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 574 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 574 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 574 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 131 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 575 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 575 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 575 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 128 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 576 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 576 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 576 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 125 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 577 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 577 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 577 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 127 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 578 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 578 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 578 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 129 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 579 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 579 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 579 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 127 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 580 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 580 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 580 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 128 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 581 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 581 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 581 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 132 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 582 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 582 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 582 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 129 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 583 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 583 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 583 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 130 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 584 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 584 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 584 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 127 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 585 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 585 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 585 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 127 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 586 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 586 running | |
Aug 22 22:51:20 localhost systemd[1]: Received SIGCHLD from PID 250 (udevadm). | |
Aug 22 22:51:20 localhost systemd[1]: Child 250 (udevadm) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:20 localhost systemd[1]: systemd-udev-trigger.service: Child 250 belongs to systemd-udev-trigger.service | |
Aug 22 22:51:20 localhost systemd[1]: systemd-udev-trigger.service: Main process exited, code=exited, status=0/SUCCESS | |
Aug 22 22:51:20 localhost systemd[1]: systemd-udev-trigger.service: Changed start -> exited | |
Aug 22 22:51:20 localhost systemd[1]: systemd-udev-trigger.service: Job systemd-udev-trigger.service/start finished, result=done | |
Aug 22 22:51:20 localhost systemd[1]: Started udev Coldplug all Devices. | |
Aug 22 22:51:20 localhost systemd[1]: systemd-udev-trigger.service: cgroup is empty | |
Aug 22 22:51:20 localhost systemd[1]: dracut-initqueue.service: ConditionKernelCommandLine=|rd.break=initqueue failed. | |
Aug 22 22:51:20 localhost systemd[1]: dracut-initqueue.service: ConditionPathExistsGlob=|/lib/dracut/hooks/initqueue/timeout/*.sh succeeded. | |
Aug 22 22:51:20 localhost systemd[1]: dracut-initqueue.service: ConditionPathExistsGlob=|/lib/dracut/hooks/initqueue/online/*.sh failed. | |
Aug 22 22:51:20 localhost systemd[1]: dracut-initqueue.service: ConditionPathExistsGlob=|/lib/dracut/hooks/initqueue/finished/*.sh failed. | |
Aug 22 22:51:20 localhost systemd[1]: dracut-initqueue.service: ConditionPathExistsGlob=|/lib/dracut/hooks/initqueue/settled/*.sh failed. | |
Aug 22 22:51:20 localhost systemd[1]: dracut-initqueue.service: ConditionPathExistsGlob=|/lib/dracut/hooks/initqueue/*.sh failed. | |
Aug 22 22:51:20 localhost systemd[1]: dracut-initqueue.service: ConditionPathExists=|/lib/dracut/need-initqueue succeeded. | |
Aug 22 22:51:20 localhost systemd[1]: dracut-initqueue.service: ConditionPathExists=/usr/lib/initrd-release succeeded. | |
Aug 22 22:51:20 localhost systemd[1]: dracut-initqueue.service: About to execute: /bin/dracut-initqueue | |
Aug 22 22:51:20 localhost systemd[1]: dracut-initqueue.service: Forked /bin/dracut-initqueue as 254 | |
Aug 22 22:51:20 localhost systemd[1]: dracut-initqueue.service: Changed dead -> start | |
Aug 22 22:51:20 localhost systemd[1]: Starting dracut initqueue hook... | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 586 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 130 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 587 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 127 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 588 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 588 running | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 588 processed | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 587 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 587 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 129 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd[254]: dracut-initqueue.service: Executing: /bin/dracut-initqueue | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 589 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 589 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 589 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 128 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 590 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 590 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 590 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 129 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 591 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 126 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:20 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:20 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:20 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 591 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 591 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 592 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 592 running | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 592 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 130 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 593 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 593 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 593 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 128 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 594 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 594 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 594 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 123 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 595 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 595 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 595 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 130 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 596 queued, 'add' 'module' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 127 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 597 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 597 running | |
Aug 22 22:51:20 localhost systemd-udevd[252]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[252]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost kernel: SCSI subsystem initialized | |
Aug 22 22:51:20 localhost systemd-udevd[252]: Execute 'load' 'acpi:LNXSYSTM:' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: No module matches 'acpi:LNXSYSTM:' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 597 processed | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 596 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 596 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 155 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 598 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 598 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[243]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: Execute 'load' 'acpi:LNXPWRBN:' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: No module matches 'acpi:LNXPWRBN:' | |
Aug 22 22:51:20 localhost systemd-cgroups-agent[253]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:20 localhost systemd[1]: Got message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:20 localhost systemd[1]: systemd-udev-trigger.service: cgroup is empty | |
Aug 22 22:51:20 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 598 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 167 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 599 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 167 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 600 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 601 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 602 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 603 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 604 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 605 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 606 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 607 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 599 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 608 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 609 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 610 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: Execute 'load' 'acpi:LNXSYBUS:' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 611 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: No module matches 'acpi:LNXSYBUS:' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 612 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 613 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost kernel: libata version 3.00 loaded. | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 599 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 614 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 600 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 175 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 601 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 177 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[252]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd[1]: Received SIGCHLD from PID 254 (dracut-initqueu). | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 602 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 177 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd[1]: Child 254 (dracut-initqueu) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:20 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 615 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: Execute 'load' 'acpi:LNXCPU:' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd[1]: dracut-initqueue.service: Child 254 belongs to dracut-initqueue.service | |
Aug 22 22:51:20 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 616 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: No module matches 'acpi:LNXCPU:' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: Execute 'load' 'acpi:PNP0103:' | |
Aug 22 22:51:20 localhost systemd[1]: dracut-initqueue.service: Main process exited, code=exited, status=0/SUCCESS | |
Aug 22 22:51:20 localhost systemd-udevd[242]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 617 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost kernel: tsc: Refined TSC clocksource calibration: 2533.391 MHz | |
Aug 22 22:51:20 localhost kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x24847100f1b, max_idle_ns: 440795316665 ns | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: No module matches 'acpi:PNP0103:' | |
Aug 22 22:51:20 localhost systemd[1]: dracut-initqueue.service: Changed start -> exited | |
Aug 22 22:51:20 localhost systemd-udevd[242]: Execute 'load' 'acpi:PNP0A03:' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 618 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 600 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd[1]: dracut-initqueue.service: Job dracut-initqueue.service/start finished, result=done | |
Aug 22 22:51:20 localhost systemd-udevd[242]: No module matches 'acpi:PNP0A03:' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 619 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 601 processed | |
Aug 22 22:51:20 localhost systemd[1]: Started dracut initqueue hook. | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 620 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd[1]: dracut-initqueue.service: cgroup is empty | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 602 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 621 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 603 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 188 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-cgroups-agent[260]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:20 localhost systemd[1]: Got message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:20 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 604 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 188 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:20 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[252]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 605 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 188 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd[1]: remote-fs-pre.target changed dead -> active | |
Aug 22 22:51:20 localhost systemd-udevd[243]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 606 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 188 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd[1]: remote-fs-pre.target: Job remote-fs-pre.target/start finished, result=done | |
Aug 22 22:51:20 localhost systemd-udevd[243]: Execute 'load' 'acpi:PNP0A06:' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[245]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[251]: seq 607 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd[1]: Reached target Remote File Systems (Pre). | |
Aug 22 22:51:20 localhost systemd-udevd[243]: No module matches 'acpi:PNP0A06:' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: Execute 'load' 'acpi:PNP0A06:' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[251]: passed device to netlink monitor 0x55a7def1ad90 | |
Aug 22 22:51:20 localhost systemd-udevd[248]: seq 608 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd[1]: remote-fs.target changed dead -> active | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: No module matches 'acpi:PNP0A06:' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: Execute 'load' 'acpi:PNP0A06:' | |
Aug 22 22:51:20 localhost systemd-udevd[245]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[251]: seq 607 processed | |
Aug 22 22:51:20 localhost systemd-udevd[248]: passed device to netlink monitor 0x55a7def18980 | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 616 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd[1]: remote-fs.target: Job remote-fs.target/start finished, result=done | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 603 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: No module matches 'acpi:PNP0A06:' | |
Aug 22 22:51:20 localhost systemd-udevd[245]: Execute 'load' 'acpi:PNP0A06:' | |
Aug 22 22:51:20 localhost systemd-udevd[248]: seq 608 processed | |
Aug 22 22:51:20 localhost systemd-udevd[246]: passed device to netlink monitor 0x55a7def169e0 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 617 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd[1]: Reached target Remote File Systems. | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 604 processed | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: No module matches 'acpi:PNP0A06:' | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 616 processed | |
Aug 22 22:51:20 localhost systemd-udevd[244]: passed device to netlink monitor 0x55a7def152c0 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 618 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd[1]: dracut-pre-mount.service: ConditionKernelCommandLine=|rd.break=pre-mount failed. | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 605 processed | |
Aug 22 22:51:20 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 617 processed | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 619 forked new worker [261] | |
Aug 22 22:51:20 localhost systemd-udevd[261]: seq 619 running | |
Aug 22 22:51:20 localhost systemd[1]: dracut-pre-mount.service: ConditionDirectoryNotEmpty=|/lib/dracut/hooks/pre-mount succeeded. | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 606 processed | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 618 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[261]: passed device to netlink monitor 0x55a7def1fd20 | |
Aug 22 22:51:20 localhost systemd[1]: dracut-pre-mount.service: ConditionPathExists=/usr/lib/initrd-release succeeded. | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[261]: seq 619 processed | |
Aug 22 22:51:20 localhost systemd[1]: dracut-pre-mount.service: About to execute: /bin/dracut-pre-mount | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 622 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd[1]: dracut-pre-mount.service: Forked /bin/dracut-pre-mount as 262 | |
Aug 22 22:51:20 localhost systemd[262]: dracut-pre-mount.service: Executing: /bin/dracut-pre-mount | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd[1]: dracut-pre-mount.service: Changed dead -> start | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost kernel: 8139cp: 8139cp: 10/100 PCI Ethernet driver v1.3 (Mar 22, 2004) | |
Aug 22 22:51:20 localhost systemd[1]: Starting dracut pre-mount hook... | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 609 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 198 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 610 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 198 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:20 localhost systemd-udevd[252]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 611 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 198 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: Execute 'load' 'acpi:PNP0303:' | |
Aug 22 22:51:20 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:20 localhost systemd-udevd[252]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 612 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 198 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: No module matches 'acpi:PNP0303:' | |
Aug 22 22:51:20 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:20 localhost systemd-udevd[252]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[245]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[251]: seq 613 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 198 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: Execute 'load' 'acpi:PNP0400:' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[251]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[248]: seq 614 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 198 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 609 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: No module matches 'acpi:PNP0400:' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: Execute 'load' 'acpi:PNP0501:' | |
Aug 22 22:51:20 localhost systemd-udevd[245]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[251]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[248]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 198 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[261]: seq 615 running | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: No module matches 'acpi:PNP0501:' | |
Aug 22 22:51:20 localhost systemd-udevd[245]: Execute 'load' 'acpi:PNP0501:' | |
Aug 22 22:51:20 localhost kernel: ACPI: bus type USB registered | |
Aug 22 22:51:20 localhost systemd-udevd[251]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[248]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 620 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[261]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 610 processed | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: No module matches 'acpi:PNP0501:' | |
Aug 22 22:51:20 localhost systemd-udevd[251]: Execute 'load' 'acpi:PNP0700:' | |
Aug 22 22:51:20 localhost systemd-udevd[248]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd[1]: Received SIGCHLD from PID 262 (dracut-pre-moun). | |
Aug 22 22:51:20 localhost systemd-udevd[246]: passed device to netlink monitor 0x55a7def169e0 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 621 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[261]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 611 processed | |
Aug 22 22:51:20 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:20 localhost systemd-udevd[251]: No module matches 'acpi:PNP0700:' | |
Aug 22 22:51:20 localhost systemd-udevd[248]: Execute 'load' 'acpi:PNP0B00:' | |
Aug 22 22:51:20 localhost systemd[1]: Child 262 (dracut-pre-moun) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 620 processed | |
Aug 22 22:51:20 localhost kernel: usbcore: registered new interface driver usbfs | |
Aug 22 22:51:20 localhost kernel: usbcore: registered new interface driver hub | |
Aug 22 22:51:20 localhost systemd-udevd[244]: passed device to netlink monitor 0x55a7def152c0 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 622 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[261]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 612 processed | |
Aug 22 22:51:20 localhost systemd-udevd[251]: passed device to netlink monitor 0x55a7def1ad90 | |
Aug 22 22:51:20 localhost systemd-udevd[248]: No module matches 'acpi:PNP0B00:' | |
Aug 22 22:51:20 localhost systemd[1]: dracut-pre-mount.service: Child 262 belongs to dracut-pre-mount.service | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 621 processed | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 623 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[261]: Execute 'load' 'acpi:PNP0F13:' | |
Aug 22 22:51:20 localhost systemd-udevd[251]: seq 613 processed | |
Aug 22 22:51:20 localhost systemd-udevd[248]: passed device to netlink monitor 0x55a7def18980 | |
Aug 22 22:51:20 localhost systemd[1]: dracut-pre-mount.service: Main process exited, code=exited, status=0/SUCCESS | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 622 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost kernel: usbcore: registered new device driver usb | |
Aug 22 22:51:20 localhost systemd-udevd[261]: No module matches 'acpi:PNP0F13:' | |
Aug 22 22:51:20 localhost systemd-udevd[248]: seq 614 processed | |
Aug 22 22:51:20 localhost systemd[1]: dracut-pre-mount.service: Changed start -> exited | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 623 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[261]: passed device to netlink monitor 0x55a7def1fd20 | |
Aug 22 22:51:20 localhost systemd[1]: dracut-pre-mount.service: Job dracut-pre-mount.service/start finished, result=done | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 624 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[261]: seq 615 processed | |
Aug 22 22:51:20 localhost systemd[1]: Started dracut pre-mount hook. | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 623 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 624 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd[1]: dracut-pre-mount.service: cgroup is empty | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 625 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 624 processed | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 625 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-cgroups-agent[267]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:20 localhost systemd[1]: Got message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 626 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 625 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 626 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 627 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 626 processed | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 627 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 628 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 627 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 628 running | |
Aug 22 22:51:20 localhost kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 629 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 628 processed | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 629 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 630 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 629 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 630 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 631 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 630 processed | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 631 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 632 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 631 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 632 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost kernel: ehci-pci: EHCI PCI platform driver | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 633 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 632 processed | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 633 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 634 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 633 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 634 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 635 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 634 processed | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 635 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 636 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 635 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 636 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 637 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 636 processed | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 637 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 638 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 637 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 638 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 639 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 638 processed | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 639 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 640 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 639 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 640 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 641 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 640 processed | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 641 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 642 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 641 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 642 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 643 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 642 processed | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 643 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 644 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 643 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 644 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 645 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 644 processed | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 645 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 646 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 645 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 646 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 647 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 646 processed | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 647 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 177 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 648 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 648 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 177 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 649 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: Execute 'load' 'acpi:PNP0C0F:' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 649 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 177 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: No module matches 'acpi:PNP0C0F:' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 650 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: Execute 'load' 'acpi:PNP0C0F:' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 650 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 177 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 647 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: No module matches 'acpi:PNP0C0F:' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 651 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: Execute 'load' 'acpi:PNP0C0F:' | |
Aug 22 22:51:20 localhost systemd-udevd[245]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[251]: seq 651 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 177 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 648 processed | |
Aug 22 22:51:20 localhost systemd-udevd[242]: No module matches 'acpi:PNP0C0F:' | |
Aug 22 22:51:20 localhost systemd-udevd[245]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[251]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 652 queued, 'add' 'acpi' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: Execute 'load' 'acpi:PNP0C0F:' | |
Aug 22 22:51:20 localhost systemd-udevd[251]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 652 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 167 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 649 processed | |
Aug 22 22:51:20 localhost systemd-udevd[245]: No module matches 'acpi:PNP0C0F:' | |
Aug 22 22:51:20 localhost systemd-udevd[251]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 653 queued, 'add' 'event_source' | |
Aug 22 22:51:20 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:20 localhost systemd-udevd[251]: Execute 'load' 'acpi:PNP0C0F:' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 653 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 138 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 650 processed | |
Aug 22 22:51:20 localhost systemd-udevd[251]: No module matches 'acpi:PNP0C0F:' | |
Aug 22 22:51:20 localhost kernel: 8139cp 0000:00:03.0 eth0: RTL-8139C+ at 0xffffc90000002000, 52:54:00:91:cc:aa, IRQ 11 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 654 queued, 'add' 'event_source' | |
Aug 22 22:51:20 localhost systemd-udevd[251]: passed device to netlink monitor 0x55a7def1ad90 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: Execute 'load' 'acpi:LNXSYBUS:' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 653 processed | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 654 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 131 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[251]: seq 651 processed | |
Aug 22 22:51:20 localhost systemd-udevd[243]: No module matches 'acpi:LNXSYBUS:' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 655 queued, 'add' 'pci' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 654 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 655 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 289 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 652 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 656 queued, 'add' 'pci' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 656 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 289 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 657 queued, 'add' 'pci' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: Execute 'load' 'pci:v00008086d00001237sv00001AF4sd00001100bc06sc00i00' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 657 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 289 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: No module matches 'pci:v00008086d00001237sv00001AF4sd00001100bc06sc00i00' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 658 queued, 'add' 'pci' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: Execute 'load' 'pci:v00008086d00007000sv00001AF4sd00001100bc06sc01i00' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 658 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 289 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 655 processed | |
Aug 22 22:51:20 localhost systemd-udevd[242]: No module matches 'pci:v00008086d00007000sv00001AF4sd00001100bc06sc01i00' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 659 queued, 'add' 'pci' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: Execute 'load' 'pci:v00008086d00007010sv00001AF4sd00001100bc01sc01i80' | |
Aug 22 22:51:20 localhost systemd-udevd[245]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[245]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: Execute 'load' 'pci:v00008086d00007113sv00001AF4sd00001100bc06sc80i00' | |
Aug 22 22:51:20 localhost systemd-udevd[245]: No module matches 'pci:v00008086d00007113sv00001AF4sd00001100bc06sc80i00' | |
Aug 22 22:51:20 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 658 processed | |
Aug 22 22:51:20 localhost systemd-udevd[251]: seq 659 running | |
Aug 22 22:51:20 localhost systemd-udevd[251]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[251]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[251]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[251]: Execute 'load' 'pci:v00001B36d00000100sv00001AF4sd00001100bc03sc00i00' | |
Aug 22 22:51:20 localhost systemd-udevd[251]: No module matches 'pci:v00001B36d00000100sv00001AF4sd00001100bc03sc00i00' | |
Aug 22 22:51:20 localhost systemd-udevd[251]: passed device to netlink monitor 0x55a7def1ad90 | |
Aug 22 22:51:20 localhost systemd-udevd[251]: seq 659 processed | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 656 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 289 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 660 queued, 'add' 'pci' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 289 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 661 queued, 'add' 'pci' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 289 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 662 queued, 'add' 'pci' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 289 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 663 queued, 'add' 'pci' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 289 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 664 queued, 'add' 'pci' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 289 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 665 queued, 'add' 'pci' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 289 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 666 queued, 'add' 'pci' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 289 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 667 queued, 'add' 'pci' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 288 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 668 queued, 'add' 'pci_bus' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 149 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 669 queued, 'add' 'platform' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 670 queued, 'add' 'platform' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 671 queued, 'add' 'serio' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 672 queued, 'add' 'input' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 673 queued, 'add' 'serio' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 674 queued, 'add' 'platform' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 675 queued, 'add' 'platform' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 668 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 668 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 676 queued, 'add' 'platform' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[248]: seq 664 running | |
Aug 22 22:51:20 localhost systemd-udevd[248]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 666 running | |
Aug 22 22:51:20 localhost systemd-udevd[246]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[246]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[246]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 661 running | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 662 running | |
Aug 22 22:51:20 localhost systemd-udevd[251]: seq 663 running | |
Aug 22 22:51:20 localhost systemd-udevd[248]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[248]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[248]: Execute 'load' 'pci:v00008086d00002935sv00001AF4sd00001100bc0Csc03i00' | |
Aug 22 22:51:20 localhost systemd-udevd[261]: seq 665 running | |
Aug 22 22:51:20 localhost systemd-udevd[261]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[261]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[261]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[261]: Execute 'load' 'pci:v00008086d00002936sv00001AF4sd00001100bc0Csc03i00' | |
Aug 22 22:51:20 localhost systemd-udevd[246]: Execute 'load' 'pci:v00008086d0000293Asv00001AF4sd00001100bc0Csc03i20' | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 667 running | |
Aug 22 22:51:20 localhost systemd-udevd[244]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[244]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: Execute 'load' 'pci:v00001AF4d00001002sv00001AF4sd00000005bc00scFFi00' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 190 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 677 queued, 'add' 'platform' | |
Aug 22 22:51:20 localhost kernel: virtio-pci 0000:00:05.0: virtio_pci: leaving for legacy driver | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost ignition[209]: failed to fetch http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa: Get http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa: dial tcp: lookup bootcfg.mgt.tite.lan on [::1]:53: read udp [::1]:34819->[::1]:53: read: connection refused | |
Aug 22 22:51:20 localhost kernel: ata_piix 0000:00:01.1: version 2.13 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[251]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[251]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost kernel: 8139too: 8139too Fast Ethernet driver 0.9.28 | |
Aug 22 22:51:20 localhost systemd-udevd[251]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[251]: Execute 'load' 'pci:v00008086d00002934sv00001AF4sd00001100bc0Csc03i00' | |
Aug 22 22:51:20 localhost systemd-udevd[245]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[245]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: Execute 'load' 'pci:v00001AF4d00001003sv00001AF4sd00000003bc07sc80i00' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[242]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: Execute 'load' 'pci:v00008086d00002668sv00001AF4sd00001100bc04sc03i00' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: No module matches 'pci:v00008086d00002668sv00001AF4sd00001100bc04sc03i00' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 661 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 660 running | |
Aug 22 22:51:20 localhost systemd-udevd[252]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost kernel: scsi host0: ata_piix | |
Aug 22 22:51:20 localhost systemd-udevd[252]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: Execute 'load' 'pci:v000010ECd00008139sv00001AF4sd00001100bc02sc00i00' | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 669 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[247]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: Execute 'load' 'platform:alarmtimer' | |
Aug 22 22:51:20 localhost systemd-udevd[247]: No module matches 'platform:alarmtimer' | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 669 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 175 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost kernel: scsi host1: ata_piix | |
Aug 22 22:51:20 localhost kernel: ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc1c0 irq 14 | |
Aug 22 22:51:20 localhost kernel: ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc1c8 irq 15 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 170 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 674 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[247]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: Execute 'load' 'platform:microcode' | |
Aug 22 22:51:20 localhost systemd-udevd[247]: No module matches 'platform:microcode' | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 670 running | |
Aug 22 22:51:20 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[242]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: Execute 'load' 'platform:i8042' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: No module matches 'platform:i8042' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 670 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 678 queued, 'add' 'tty' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 274 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 679 queued, 'add' 'tty' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 674 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 261 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 680 queued, 'add' 'tty' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 673 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[247]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: Execute 'load' 'serio:ty01pr00id00ex00' | |
Aug 22 22:51:20 localhost systemd-udevd[247]: No module matches 'serio:ty01pr00id00ex00' | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 673 processed | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 671 running | |
Aug 22 22:51:20 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 164 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[242]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: Execute 'load' 'serio:ty06pr00id00ex00' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: No module matches 'serio:ty06pr00id00ex00' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 671 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 681 queued, 'add' 'pnp' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 502 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 682 queued, 'add' 'rtc' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 672 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 675 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[247]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: Execute 'load' 'platform:pcspkr' | |
Aug 22 22:51:20 localhost systemd-udevd[247]: No module matches 'platform:pcspkr' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 683 queued, 'add' 'pnp' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 684 queued, 'add' 'pnp' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 685 queued, 'add' 'pnp' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 686 queued, 'add' 'pnp' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[242]: IMPORT builtin 'input_id' /usr/lib64/udev/rules.d/50-udev-default.rules:14 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: capabilities/ev raw kernel attribute: 120013 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: capabilities/abs raw kernel attribute: 0 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: capabilities/rel raw kernel attribute: 0 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: capabilities/key raw kernel attribute: 402000000 3803078f800d001 feffffdfffefffff fffffffffffffffe | |
Aug 22 22:51:20 localhost systemd-udevd[242]: properties raw kernel attribute: 0 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: test_key: checking bit block 0 for any keys; found=1 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: test_key: checking bit block 64 for any keys; found=1 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: test_key: checking bit block 128 for any keys; found=1 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: test_key: checking bit block 192 for any keys; found=1 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[242]: IMPORT builtin 'path_id' /usr/lib64/udev/rules.d/71-seat.rules:49 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 675 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 194 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 687 queued, 'add' 'tty' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 688 queued, 'add' 'event_source' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 676 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[247]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: Execute 'load' 'platform:platform-framebuffer' | |
Aug 22 22:51:20 localhost systemd-udevd[247]: No module matches 'platform:platform-framebuffer' | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 676 processed | |
Aug 22 22:51:20 localhost kernel: ehci-pci 0000:00:06.7: EHCI Host Controller | |
Aug 22 22:51:20 localhost kernel: ehci-pci 0000:00:06.7: new USB bus registered, assigned bus number 1 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: created db file '/run/udev/data/+input:input0' for '/devices/platform/i8042/serio0/input/input0' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: Execute 'load' 'input:b0011v0001p0001eAB41-e0,1,4,11,14,k71,72,73,74,75,76,77,79,7A,7B,7C,7D,7E,7F,80,8C,8E,8F,9B,9C,9D,9E,9F,A3,A4,A5,A6,AC,AD,B7,B8,B9,D9,E2,ram4,l0,1,2,sfw' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: No module matches 'input:b0011v0001p0001eAB41-e0,1,4,11,14,k71,72,73,74,75,76,77,79,7A,7B,7C,7D,7E,7F,80,8C,8E,8F,9B,9C,9D,9E,9F,A3,A4,A5,A6,AC,AD,B7,B8,B9,D9,E2,ram4,l0,1,2,sfw' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 672 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 689 queued, 'add' 'clockevents' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost kernel: ehci-pci 0000:00:06.7: irq 10, io mem 0xfc058000 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 190 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 145 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 681 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 681 processed | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 677 running | |
Aug 22 22:51:20 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 690 queued, 'add' 'clockevents' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[242]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost kernel: ehci-pci 0000:00:06.7: USB 2.0 started, EHCI 1.00 | |
Aug 22 22:51:20 localhost kernel: hub 1-0:1.0: USB hub found | |
Aug 22 22:51:20 localhost kernel: hub 1-0:1.0: 6 ports detected | |
Aug 22 22:51:20 localhost systemd-udevd[242]: Execute 'load' 'platform:serial8250' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: No module matches 'platform:serial8250' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 174 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 691 queued, 'add' 'clocksource' | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 682 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: LINK 'rtc' /usr/lib64/udev/rules.d/50-udev-default.rules:10 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: LINK 'rtc' /usr/lib64/udev/rules.d/50-udev-default.rules:11 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: handling device node '/dev/rtc0', devnum=c254:0, mode=0600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 677 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 184 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 678 running | |
Aug 22 22:51:20 localhost systemd-udevd[242]: GROUP 14 /usr/lib64/udev/rules.d/50-udev-default.rules:26 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: handling device node '/dev/ttyS1', devnum=c4:65, mode=0660, uid=0, gid=14 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: set permissions /dev/ttyS1, 020660, uid=0, gid=14 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: preserve permissions /dev/rtc0, 020600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: creating symlink '/dev/char/254:0' to '../rtc0' | |
Aug 22 22:51:20 localhost systemd-udevd[247]: creating link '/dev/rtc' to '/dev/rtc0' | |
Aug 22 22:51:20 localhost systemd-udevd[247]: creating symlink '/dev/rtc' to 'rtc0' | |
Aug 22 22:51:20 localhost systemd-udevd[247]: created db file '/run/udev/data/c254:0' for '/devices/pnp0/00:00/rtc/rtc0' | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 682 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost kernel: uhci_hcd: USB Universal Host Controller Interface driver | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 692 queued, 'add' 'container' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 184 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 693 queued, 'add' 'container' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 694 queued, 'add' 'container' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 695 queued, 'add' 'cpu' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 696 queued, 'add' 'machinecheck' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 697 queued, 'add' 'memory' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 698 queued, 'add' 'memory' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost kernel: ata1.01: NODEV after polling detection | |
Aug 22 22:51:20 localhost kernel: ata1.00: ATA-7: QEMU HARDDISK, 2.4.1, max UDMA/100 | |
Aug 22 22:51:20 localhost kernel: ata1.00: 20971520 sectors, multi 16: LBA48 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-resolved[203]: Found new link 2/eth0 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-networkd[202]: eth0: Flags change: +MULTICAST +BROADCAST | |
Aug 22 22:51:20 localhost systemd-networkd[202]: eth0: Link 2 added | |
Aug 22 22:51:20 localhost systemd-networkd[202]: eth0: link pending udev initialization... | |
Aug 22 22:51:20 localhost systemd-networkd[202]: eth0: Saved original MTU: 1500 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: creating symlink '/dev/char/4:65' to '../ttyS1' | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 679 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: GROUP 14 /usr/lib64/udev/rules.d/50-udev-default.rules:26 | |
Aug 22 22:51:20 localhost kernel: ata1.00: configured for MWDMA2 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: handling device node '/dev/ttyS2', devnum=c4:66, mode=0660, uid=0, gid=14 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: set permissions /dev/ttyS2, 020660, uid=0, gid=14 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: creating symlink '/dev/char/4:66' to '../ttyS2' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost kernel: scsi 0:0:0:0: Direct-Access ATA QEMU HARDDISK 1 PQ: 0 ANSI: 5 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 699 queued, 'add' 'memory' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 700 queued, 'add' 'memory' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost kernel: virtio-pci 0000:00:07.0: virtio_pci: leaving for legacy driver | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 701 queued, 'add' 'memory' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 702 queued, 'add' 'memory' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 703 queued, 'add' 'memory' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 704 queued, 'add' 'memory' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[242]: created db file '/run/udev/data/c4:65' for '/devices/platform/serial8250/tty/ttyS1' | |
Aug 22 22:51:20 localhost systemd[1]: dev-ttyS1.device: Changed dead -> plugged | |
Aug 22 22:51:20 localhost systemd[1]: sys-devices-platform-serial8250-tty-ttyS1.device: Changed dead -> plugged | |
Aug 22 22:51:20 localhost systemd-udevd[247]: created db file '/run/udev/data/c4:66' for '/devices/platform/serial8250/tty/ttyS2' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: Inserted '8139cp' | |
Aug 22 22:51:20 localhost systemd[1]: dev-ttyS2.device: Changed dead -> plugged | |
Aug 22 22:51:20 localhost systemd[1]: sys-devices-platform-serial8250-tty-ttyS2.device: Changed dead -> plugged | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 679 processed | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 678 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 680 running | |
Aug 22 22:51:20 localhost systemd-udevd[242]: GROUP 14 /usr/lib64/udev/rules.d/50-udev-default.rules:26 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: handling device node '/dev/ttyS3', devnum=c4:67, mode=0660, uid=0, gid=14 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: set permissions /dev/ttyS3, 020660, uid=0, gid=14 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: creating symlink '/dev/char/4:67' to '../ttyS3' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 184 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 146 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 683 running | |
Aug 22 22:51:20 localhost systemd-udevd[242]: created db file '/run/udev/data/c4:67' for '/devices/platform/serial8250/tty/ttyS3' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd[1]: dev-ttyS3.device: Changed dead -> plugged | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 683 processed | |
Aug 22 22:51:20 localhost systemd[1]: sys-devices-platform-serial8250-tty-ttyS3.device: Changed dead -> plugged | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 680 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 705 queued, 'add' 'memory' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 146 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 129 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost kernel: uhci_hcd 0000:00:06.0: UHCI Host Controller | |
Aug 22 22:51:20 localhost kernel: uhci_hcd 0000:00:06.0: new USB bus registered, assigned bus number 2 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 706 queued, 'add' 'memory' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost kernel: uhci_hcd 0000:00:06.0: detected 2 ports | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost kernel: uhci_hcd 0000:00:06.0: irq 10, io base 0x0000c140 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost kernel: hub 2-0:1.0: USB hub found | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 707 queued, 'add' 'memory' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost kernel: hub 2-0:1.0: 2 ports detected | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 708 queued, 'add' 'memory' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 709 queued, 'add' 'memory' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 710 queued, 'add' 'memory' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 684 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 685 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 685 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 684 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 143 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 686 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 136 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 688 running | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 686 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 688 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[252]: Inserted '8139too' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 660 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[246]: Inserted 'ehci_pci' | |
Aug 22 22:51:20 localhost systemd-udevd[246]: passed device to netlink monitor 0x55a7def169e0 | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 666 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 711 queued, 'add' 'memory' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 175 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 155 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 157 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 158 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 691 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 691 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost kernel: uhci_hcd 0000:00:06.1: UHCI Host Controller | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 712 queued, 'add' 'memory' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost kernel: uhci_hcd 0000:00:06.1: new USB bus registered, assigned bus number 3 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost kernel: uhci_hcd 0000:00:06.1: detected 2 ports | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost kernel: uhci_hcd 0000:00:06.1: irq 11, io base 0x0000c160 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 152 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost kernel: hub 3-0:1.0: USB hub found | |
Aug 22 22:51:20 localhost kernel: hub 3-0:1.0: 2 ports detected | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 692 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 692 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 713 queued, 'add' 'node' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 152 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 693 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 693 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 690 running | |
Aug 22 22:51:20 localhost systemd-udevd[246]: passed device to netlink monitor 0x55a7def169e0 | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 690 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[243]: Inserted 'ata_piix' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 657 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 714 queued, 'add' 'event_source' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 152 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 410 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 161 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 694 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 694 processed | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 695 running | |
Aug 22 22:51:20 localhost systemd-udevd[246]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 696 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 696 processed | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 689 running | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 689 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 687 running | |
Aug 22 22:51:20 localhost systemd-udevd[252]: GROUP 14 /usr/lib64/udev/rules.d/50-udev-default.rules:26 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 715 queued, 'add' 'dmi' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[245]: Inserted 'virtio_pci' | |
Aug 22 22:51:20 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 662 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 143 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 143 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 144 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 144 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 698 running | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 698 processed | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 699 running | |
Aug 22 22:51:20 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: handling device node '/dev/ttyS0', devnum=c4:64, mode=0660, uid=0, gid=14 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: set permissions /dev/ttyS0, 020660, uid=0, gid=14 | |
Aug 22 22:51:21 localhost kernel: uhci_hcd 0000:00:06.2: UHCI Host Controller | |
Aug 22 22:51:21 localhost kernel: uhci_hcd 0000:00:06.2: new USB bus registered, assigned bus number 4 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: creating symlink '/dev/char/4:64' to '../ttyS0' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: created db file '/run/udev/data/c4:64' for '/devices/pnp0/00:04/tty/ttyS0' | |
Aug 22 22:51:20 localhost systemd-udevd[244]: Inserted 'virtio_pci' | |
Aug 22 22:51:20 localhost systemd-udevd[244]: passed device to netlink monitor 0x55a7def152c0 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 667 processed | |
Aug 22 22:51:20 localhost systemd[1]: dev-ttyS0.device: Changed dead -> plugged | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 697 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 697 processed | |
Aug 22 22:51:20 localhost systemd[1]: sys-devices-pnp0-00:04-tty-ttyS0.device: Changed dead -> plugged | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost kernel: uhci_hcd 0000:00:06.2: detected 2 ports | |
Aug 22 22:51:21 localhost kernel: uhci_hcd 0000:00:06.2: irq 11, io base 0x0000c180 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 699 processed | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 700 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 700 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 687 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost kernel: hub 4-0:1.0: USB hub found | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 716 queued, 'add' 'graphics' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost kernel: hub 4-0:1.0: 2 ports detected | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 144 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 144 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 144 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 144 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 143 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 143 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 704 running | |
Aug 22 22:51:20 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 704 processed | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 705 running | |
Aug 22 22:51:20 localhost systemd-udevd[244]: passed device to netlink monitor 0x55a7def152c0 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 702 running | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 702 processed | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 703 running | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[246]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[246]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[246]: Execute 'load' 'cpu:type:x86,ven0000fam0006mod001A:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0017,0018,0019,001A,002B,0034,003D,0068,006F,0070,0072,0074,0075,007D,0080,0089,008D,0093,0094,0095,0097,009F,00C0 | |
Aug 22 22:51:20 localhost systemd-udevd[246]: ' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 701 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 701 processed | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 706 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 705 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 717 queued, 'add' 'mem' | |
Aug 22 22:51:20 localhost systemd-udevd[246]: Inserted 'crc32c_intel' | |
Aug 22 22:51:20 localhost systemd-udevd[246]: passed device to netlink monitor 0x55a7def169e0 | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 695 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 143 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 143 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 143 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 143 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 143 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 709 running | |
Aug 22 22:51:20 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 709 processed | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 710 running | |
Aug 22 22:51:20 localhost systemd-udevd[246]: passed device to netlink monitor 0x55a7def169e0 | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 710 processed | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 711 running | |
Aug 22 22:51:20 localhost systemd-udevd[244]: passed device to netlink monitor 0x55a7def152c0 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 711 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 718 queued, 'add' 'mem' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 143 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 708 running | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 708 processed | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 703 processed | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 707 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 707 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 137 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 138 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 719 queued, 'add' 'mem' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 713 running | |
Aug 22 22:51:20 localhost systemd-udevd[246]: passed device to netlink monitor 0x55a7def169e0 | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 713 processed | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 714 running | |
Aug 22 22:51:20 localhost systemd-udevd[244]: passed device to netlink monitor 0x55a7def152c0 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 714 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 282 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 146 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 182 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 183 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 167 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 720 queued, 'add' 'mem' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 721 queued, 'add' 'mem' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 717 running | |
Aug 22 22:51:20 localhost systemd-udevd[242]: handling device node '/dev/full', devnum=c1:7, mode=0666, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: preserve permissions /dev/full, 020666, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: creating symlink '/dev/char/1:7' to '../full' | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 706 processed | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 712 running | |
Aug 22 22:51:20 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 712 processed | |
Aug 22 22:51:20 localhost systemd-udevd[242]: created empty file '/run/udev/data/c1:7' for '/devices/virtual/mem/full' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 717 processed | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 718 running | |
Aug 22 22:51:20 localhost systemd-udevd[246]: handling device node '/dev/kmsg', devnum=c1:11, mode=0644, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 716 running | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 716 processed | |
Aug 22 22:51:20 localhost systemd-udevd[246]: preserve permissions /dev/kmsg, 020644, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 715 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[243]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: Execute 'load' 'dmi:bvnSeaBIOS:bvr1.8.2-20150714_191134-:bd04/01/2014:svnQEMU:pnStandardPC(i440FX+PIIX,1996):pvrpc-i440fx-2.4:cvnQEMU:ct1:cvrpc-i440fx-2.4:' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: No module matches 'dmi:bvnSeaBIOS:bvr1.8.2-20150714_191134-:bd04/01/2014:svnQEMU:pnStandardPC(i440FX+PIIX,1996):pvrpc-i440fx-2.4:cvnQEMU:ct1:cvrpc-i440fx-2.4:' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 715 processed | |
Aug 22 22:51:20 localhost systemd-udevd[246]: creating symlink '/dev/char/1:11' to '../kmsg' | |
Aug 22 22:51:20 localhost systemd-udevd[246]: created empty file '/run/udev/data/c1:11' for '/devices/virtual/mem/kmsg' | |
Aug 22 22:51:20 localhost systemd-udevd[246]: passed device to netlink monitor 0x55a7def169e0 | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 718 processed | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 719 running | |
Aug 22 22:51:20 localhost systemd-udevd[244]: GROUP 9 /usr/lib64/udev/rules.d/50-udev-default.rules:28 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: MODE 0640 /usr/lib64/udev/rules.d/50-udev-default.rules:28 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: handling device node '/dev/mem', devnum=c1:1, mode=0640, uid=0, gid=9 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: set permissions /dev/mem, 020640, uid=0, gid=9 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: creating symlink '/dev/char/1:1' to '../mem' | |
Aug 22 22:51:20 localhost systemd-udevd[244]: created empty file '/run/udev/data/c1:1' for '/devices/virtual/mem/mem' | |
Aug 22 22:51:20 localhost systemd-udevd[244]: passed device to netlink monitor 0x55a7def152c0 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 719 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 182 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 169 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 722 queued, 'add' 'mem' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 186 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 723 queued, 'add' 'mem' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 188 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 724 queued, 'add' 'mem' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 182 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 725 queued, 'add' 'misc' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 178 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 723 running | |
Aug 22 22:51:20 localhost systemd-udevd[245]: handling device node '/dev/urandom', devnum=c1:9, mode=0666, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: preserve permissions /dev/urandom, 020666, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: creating symlink '/dev/char/1:9' to '../urandom' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 722 running | |
Aug 22 22:51:20 localhost systemd-udevd[242]: handling device node '/dev/random', devnum=c1:8, mode=0666, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: preserve permissions /dev/random, 020666, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: creating symlink '/dev/char/1:8' to '../random' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: created empty file '/run/udev/data/c1:8' for '/devices/virtual/mem/random' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 720 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: handling device node '/dev/null', devnum=c1:3, mode=0666, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: preserve permissions /dev/null, 020666, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: creating symlink '/dev/char/1:3' to '../null' | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 725 running | |
Aug 22 22:51:20 localhost systemd-udevd[244]: handling device node '/dev/autofs', devnum=c10:235, mode=0600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: preserve permissions /dev/autofs, 020600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: creating symlink '/dev/char/10:235' to '../autofs' | |
Aug 22 22:51:20 localhost systemd-udevd[244]: created empty file '/run/udev/data/c10:235' for '/devices/virtual/misc/autofs' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 722 processed | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 724 running | |
Aug 22 22:51:20 localhost systemd-udevd[246]: handling device node '/dev/zero', devnum=c1:5, mode=0666, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 726 queued, 'add' 'misc' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 195 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 727 queued, 'add' 'misc' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 193 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 728 queued, 'add' 'misc' | |
Aug 22 22:51:20 localhost systemd-udevd[245]: created empty file '/run/udev/data/c1:9' for '/devices/virtual/mem/urandom' | |
Aug 22 22:51:20 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 723 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 174 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: passed device to netlink monitor 0x55a7def152c0 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 725 processed | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 726 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: handling device node '/dev/cpu_dma_latency', devnum=c10:62, mode=0600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: created empty file '/run/udev/data/c1:3' for '/devices/virtual/mem/null' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 720 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 721 running | |
Aug 22 22:51:20 localhost systemd-udevd[252]: GROUP 9 /usr/lib64/udev/rules.d/50-udev-default.rules:28 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 727 running | |
Aug 22 22:51:20 localhost systemd-udevd[242]: NAME 'mapper/control' /usr/lib64/udev/rules.d/10-dm.rules:17 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: handling device node '/dev/mapper/control', devnum=c10:236, mode=0600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: preserve permissions /dev/mapper/control, 020600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: preserve already existing symlink '/dev/char/10:236' to '../mapper/control' | |
Aug 22 22:51:20 localhost systemd-udevd[247]: preserve permissions /dev/cpu_dma_latency, 020600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: creating symlink '/dev/char/10:62' to '../cpu_dma_latency' | |
Aug 22 22:51:20 localhost systemd-udevd[247]: created empty file '/run/udev/data/c10:62' for '/devices/virtual/misc/cpu_dma_latency' | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[246]: preserve permissions /dev/zero, 020666, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[246]: creating symlink '/dev/char/1:5' to '../zero' | |
Aug 22 22:51:20 localhost systemd-udevd[246]: created empty file '/run/udev/data/c1:5' for '/devices/virtual/mem/zero' | |
Aug 22 22:51:20 localhost systemd-udevd[246]: passed device to netlink monitor 0x55a7def169e0 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 729 queued, 'add' 'misc' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 178 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 730 queued, 'add' 'misc' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 197 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: created empty file '/run/udev/data/c10:236' for '/devices/virtual/misc/device-mapper' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 727 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 731 queued, 'add' 'misc' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 726 processed | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 729 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: handling device node '/dev/mcelog', devnum=c10:227, mode=0600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: preserve permissions /dev/mcelog, 020600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: MODE 0640 /usr/lib64/udev/rules.d/50-udev-default.rules:28 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: handling device node '/dev/port', devnum=c1:4, mode=0640, uid=0, gid=9 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: set permissions /dev/port, 020640, uid=0, gid=9 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: creating symlink '/dev/char/1:4' to '../port' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: creating symlink '/dev/char/10:227' to '../mcelog' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: created empty file '/run/udev/data/c10:227' for '/devices/virtual/misc/mcelog' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 729 processed | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 730 running | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 728 running | |
Aug 22 22:51:20 localhost systemd-udevd[245]: handling device node '/dev/hpet', devnum=c10:228, mode=0600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: preserve permissions /dev/hpet, 020600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: creating symlink '/dev/char/10:228' to '../hpet' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: created empty file '/run/udev/data/c1:4' for '/devices/virtual/mem/port' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 721 processed | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 724 processed | |
Aug 22 22:51:20 localhost systemd-udevd[245]: created empty file '/run/udev/data/c10:228' for '/devices/virtual/misc/hpet' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 188 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 732 queued, 'add' 'misc' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 195 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 733 queued, 'add' 'misc' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 201 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 734 queued, 'add' 'misc' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 187 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 735 queued, 'add' 'net' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 156 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 736 queued, 'add' 'thermal' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 737 queued, 'add' 'tty' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 732 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: handling device node '/dev/network_latency', devnum=c10:61, mode=0600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: preserve permissions /dev/network_latency, 020600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: creating symlink '/dev/char/10:61' to '../network_latency' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: created empty file '/run/udev/data/c10:61' for '/devices/virtual/misc/network_latency' | |
Aug 22 22:51:20 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 728 processed | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 731 running | |
Aug 22 22:51:20 localhost systemd-udevd[242]: handling device node '/dev/cpu/microcode', devnum=c10:184, mode=0600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: preserve permissions /dev/cpu/microcode, 020600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: creating symlink '/dev/char/10:184' to '../cpu/microcode' | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 735 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: IMPORT builtin 'net_id' /usr/lib64/udev/rules.d/75-net-description.rules:6 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: IMPORT builtin 'path_id' /usr/lib64/udev/rules.d/80-net-setup-link.rules:5 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: IMPORT builtin 'path_id' returned non-zero | |
Aug 22 22:51:20 localhost systemd-udevd[247]: IMPORT builtin 'net_setup_link' /usr/lib64/udev/rules.d/80-net-setup-link.rules:9 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: Assertion 'udev_device' failed at ../systemd-229/src/libudev/libudev-device.c:128, function udev_device_get_driver(). Ignoring. | |
Aug 22 22:51:20 localhost systemd-udevd[247]: Config file /etc/systemd/network/98-disable-net-names.link applies to device lo | |
Aug 22 22:51:20 localhost systemd-udevd[247]: created db file '/run/udev/data/n1' for '/devices/virtual/net/lo' | |
Aug 22 22:51:20 localhost systemd-networkd[202]: lo: udev initialized link | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 154 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 738 queued, 'add' 'tty' | |
Aug 22 22:51:20 localhost systemd-networkd[202]: lo: Link state is up-to-date | |
Aug 22 22:51:20 localhost systemd-networkd[202]: lo: found matching network '/usr/lib64/systemd/network/yy-pxe.network' | |
Aug 22 22:51:20 localhost systemd-networkd[202]: lo: Ignoring link-local autoconfiguration for loopback link | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 734 running | |
Aug 22 22:51:20 localhost systemd-udevd[242]: created empty file '/run/udev/data/c10:184' for '/devices/virtual/misc/microcode' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 731 processed | |
Aug 22 22:51:20 localhost systemd-udevd[244]: handling device node '/dev/memory_bandwidth', devnum=c10:59, mode=0600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: preserve permissions /dev/memory_bandwidth, 020600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-networkd[202]: lo: Ignoring DHCP clients for loopback link | |
Aug 22 22:51:20 localhost systemd-udevd[246]: handling device node '/dev/vga_arbiter', devnum=c10:63, mode=0600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[246]: preserve permissions /dev/vga_arbiter, 020600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[246]: creating symlink '/dev/char/10:63' to '../vga_arbiter' | |
Aug 22 22:51:20 localhost systemd-udevd[246]: created empty file '/run/udev/data/c10:63' for '/devices/virtual/misc/vga_arbiter' | |
Aug 22 22:51:20 localhost systemd-networkd[202]: lo: Configured | |
Aug 22 22:51:20 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 732 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 733 running | |
Aug 22 22:51:20 localhost systemd-udevd[246]: passed device to netlink monitor 0x55a7def169e0 | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 734 processed | |
Aug 22 22:51:20 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 735 processed | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 175 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 182 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 739 queued, 'add' 'tty' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 180 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 740 queued, 'add' 'tty' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 169 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 741 queued, 'add' 'tty' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 742 queued, 'add' 'tty' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 738 running | |
Aug 22 22:51:20 localhost systemd-udevd[242]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:19 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: MODE 0666 /usr/lib64/udev/rules.d/50-udev-default.rules:19 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: handling device node '/dev/ptmx', devnum=c5:2, mode=0666, uid=0, gid=5 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: set permissions /dev/ptmx, 020666, uid=0, gid=5 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: creating symlink '/dev/char/5:2' to '../ptmx' | |
Aug 22 22:51:20 localhost systemd-udevd[242]: created empty file '/run/udev/data/c5:2' for '/devices/virtual/tty/ptmx' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: seq 737 running | |
Aug 22 22:51:20 localhost systemd-udevd[243]: handling device node '/dev/console', devnum=c5:1, mode=0600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: preserve permissions /dev/console, 020600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[243]: creating symlink '/dev/char/5:1' to '../console' | |
Aug 22 22:51:20 localhost systemd-udevd[243]: created empty file '/run/udev/data/c5:1' for '/devices/virtual/tty/console' | |
Aug 22 22:51:20 localhost systemd-udevd[244]: creating symlink '/dev/char/10:59' to '../memory_bandwidth' | |
Aug 22 22:51:20 localhost systemd-udevd[244]: created empty file '/run/udev/data/c10:59' for '/devices/virtual/misc/memory_bandwidth' | |
Aug 22 22:51:20 localhost systemd-udevd[244]: passed device to netlink monitor 0x55a7def152c0 | |
Aug 22 22:51:20 localhost systemd-udevd[244]: seq 730 processed | |
Aug 22 22:51:20 localhost systemd-udevd[252]: handling device node '/dev/network_throughput', devnum=c10:60, mode=0600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: preserve permissions /dev/network_throughput, 020600, uid=0, gid=0 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: seq 740 running | |
Aug 22 22:51:20 localhost systemd-udevd[247]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: handling device node '/dev/tty0', devnum=c4:0, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:20 localhost systemd-udevd[247]: set permissions /dev/tty0, 020620, uid=0, gid=5 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:20 localhost systemd-udevd[242]: seq 738 processed | |
Aug 22 22:51:20 localhost systemd-udevd[246]: seq 739 running | |
Aug 22 22:51:20 localhost systemd-udevd[246]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:20 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: creating symlink '/dev/char/10:60' to '../network_throughput' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: created empty file '/run/udev/data/c10:60' for '/devices/virtual/misc/network_throughput' | |
Aug 22 22:51:20 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:20 localhost systemd-udevd[252]: seq 733 processed | |
Aug 22 22:51:20 localhost systemd-udevd[245]: seq 736 running | |
Aug 22 22:51:20 localhost systemd-udevd[194]: seq 743 queued, 'add' 'tty' | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 169 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:20 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 744 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 745 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 742 running | |
Aug 22 22:51:21 localhost systemd-udevd[242]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: handling device node '/dev/tty10', devnum=c4:10, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: set permissions /dev/tty10, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: creating symlink '/dev/char/4:10' to '../tty10' | |
Aug 22 22:51:21 localhost systemd-udevd[247]: creating symlink '/dev/char/4:0' to '../tty0' | |
Aug 22 22:51:21 localhost systemd-udevd[247]: created empty file '/run/udev/data/c4:0' for '/devices/virtual/tty/tty0' | |
Aug 22 22:51:21 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:21 localhost systemd-udevd[247]: seq 740 processed | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 741 running | |
Aug 22 22:51:21 localhost systemd-udevd[252]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 737 processed | |
Aug 22 22:51:21 localhost systemd-udevd[246]: MODE 0666 /usr/lib64/udev/rules.d/50-udev-default.rules:20 | |
Aug 22 22:51:21 localhost systemd-udevd[246]: handling device node '/dev/tty', devnum=c5:0, mode=0666, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[246]: set permissions /dev/tty, 020666, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[246]: creating symlink '/dev/char/5:0' to '../tty' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 736 processed | |
Aug 22 22:51:21 localhost systemd-udevd[246]: created empty file '/run/udev/data/c5:0' for '/devices/virtual/tty/tty' | |
Aug 22 22:51:21 localhost systemd-udevd[246]: passed device to netlink monitor 0x55a7def169e0 | |
Aug 22 22:51:21 localhost systemd-udevd[246]: seq 739 processed | |
Aug 22 22:51:21 localhost systemd-udevd[252]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: handling device node '/dev/tty1', devnum=c4:1, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: set permissions /dev/tty1, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: creating symlink '/dev/char/4:1' to '../tty1' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: created empty file '/run/udev/data/c4:1' for '/devices/virtual/tty/tty1' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 741 processed | |
Aug 22 22:51:21 localhost systemd-udevd[242]: created empty file '/run/udev/data/c4:10' for '/devices/virtual/tty/tty10' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 742 processed | |
Aug 22 22:51:21 localhost systemd-udevd[244]: seq 743 running | |
Aug 22 22:51:21 localhost systemd-udevd[244]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[244]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[244]: handling device node '/dev/tty11', devnum=c4:11, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[244]: set permissions /dev/tty11, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[244]: creating symlink '/dev/char/4:11' to '../tty11' | |
Aug 22 22:51:21 localhost systemd-udevd[244]: created empty file '/run/udev/data/c4:11' for '/devices/virtual/tty/tty11' | |
Aug 22 22:51:21 localhost systemd-udevd[244]: passed device to netlink monitor 0x55a7def152c0 | |
Aug 22 22:51:21 localhost systemd-udevd[244]: seq 743 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 746 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 747 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 748 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 749 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 750 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 751 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 752 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[244]: seq 749 running | |
Aug 22 22:51:21 localhost systemd-udevd[244]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[244]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[244]: handling device node '/dev/tty17', devnum=c4:17, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[244]: set permissions /dev/tty17, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[244]: creating symlink '/dev/char/4:17' to '../tty17' | |
Aug 22 22:51:21 localhost systemd-udevd[246]: seq 748 running | |
Aug 22 22:51:21 localhost systemd-udevd[246]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[246]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[246]: handling device node '/dev/tty16', devnum=c4:16, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[246]: set permissions /dev/tty16, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[246]: creating symlink '/dev/char/4:16' to '../tty16' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 746 running | |
Aug 22 22:51:21 localhost systemd-udevd[242]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: handling device node '/dev/tty14', devnum=c4:14, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: set permissions /dev/tty14, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: creating symlink '/dev/char/4:14' to '../tty14' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 744 running | |
Aug 22 22:51:21 localhost systemd-udevd[243]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: handling device node '/dev/tty12', devnum=c4:12, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: set permissions /dev/tty12, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating symlink '/dev/char/4:12' to '../tty12' | |
Aug 22 22:51:21 localhost systemd-udevd[244]: created empty file '/run/udev/data/c4:17' for '/devices/virtual/tty/tty17' | |
Aug 22 22:51:21 localhost systemd-udevd[244]: passed device to netlink monitor 0x55a7def152c0 | |
Aug 22 22:51:21 localhost systemd-udevd[244]: seq 749 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[246]: created empty file '/run/udev/data/c4:16' for '/devices/virtual/tty/tty16' | |
Aug 22 22:51:21 localhost systemd-udevd[246]: passed device to netlink monitor 0x55a7def169e0 | |
Aug 22 22:51:21 localhost systemd-udevd[246]: seq 748 processed | |
Aug 22 22:51:21 localhost systemd-udevd[247]: seq 750 running | |
Aug 22 22:51:21 localhost systemd-udevd[247]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[247]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 747 running | |
Aug 22 22:51:21 localhost systemd-udevd[245]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: handling device node '/dev/tty15', devnum=c4:15, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: set permissions /dev/tty15, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: creating symlink '/dev/char/4:15' to '../tty15' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: created empty file '/run/udev/data/c4:15' for '/devices/virtual/tty/tty15' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 747 processed | |
Aug 22 22:51:21 localhost systemd-udevd[244]: seq 751 running | |
Aug 22 22:51:21 localhost systemd-udevd[244]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[244]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[244]: handling device node '/dev/tty19', devnum=c4:19, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[244]: set permissions /dev/tty19, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[244]: creating symlink '/dev/char/4:19' to '../tty19' | |
Aug 22 22:51:21 localhost systemd-udevd[244]: created empty file '/run/udev/data/c4:19' for '/devices/virtual/tty/tty19' | |
Aug 22 22:51:21 localhost systemd-udevd[244]: passed device to netlink monitor 0x55a7def152c0 | |
Aug 22 22:51:21 localhost systemd-udevd[244]: seq 751 processed | |
Aug 22 22:51:21 localhost systemd-udevd[247]: handling device node '/dev/tty18', devnum=c4:18, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[247]: set permissions /dev/tty18, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[247]: creating symlink '/dev/char/4:18' to '../tty18' | |
Aug 22 22:51:21 localhost systemd-udevd[247]: created empty file '/run/udev/data/c4:18' for '/devices/virtual/tty/tty18' | |
Aug 22 22:51:21 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:21 localhost systemd-udevd[247]: seq 750 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 753 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 169 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 754 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 755 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 756 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 757 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 758 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[246]: seq 753 running | |
Aug 22 22:51:21 localhost systemd-udevd[246]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[246]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: created empty file '/run/udev/data/c4:12' for '/devices/virtual/tty/tty12' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 745 running | |
Aug 22 22:51:21 localhost systemd-udevd[242]: created empty file '/run/udev/data/c4:14' for '/devices/virtual/tty/tty14' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 752 running | |
Aug 22 22:51:21 localhost systemd-udevd[251]: Inserted 'uhci_hcd' | |
Aug 22 22:51:21 localhost systemd-udevd[248]: Inserted 'uhci_hcd' | |
Aug 22 22:51:21 localhost systemd-udevd[261]: Inserted 'uhci_hcd' | |
Aug 22 22:51:21 localhost systemd-udevd[246]: handling device node '/dev/tty20', devnum=c4:20, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[244]: seq 754 running | |
Aug 22 22:51:21 localhost systemd-udevd[247]: seq 755 running | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 744 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[252]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: passed device to netlink monitor 0x55a7def1ad90 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: passed device to netlink monitor 0x55a7def18980 | |
Aug 22 22:51:21 localhost systemd-udevd[261]: passed device to netlink monitor 0x55a7def1fd20 | |
Aug 22 22:51:21 localhost systemd-udevd[246]: set permissions /dev/tty20, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[244]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[247]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[252]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 746 processed | |
Aug 22 22:51:21 localhost systemd-udevd[245]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 663 processed | |
Aug 22 22:51:21 localhost systemd-udevd[248]: seq 664 processed | |
Aug 22 22:51:21 localhost systemd-udevd[261]: seq 665 processed | |
Aug 22 22:51:21 localhost systemd-udevd[246]: creating symlink '/dev/char/4:20' to '../tty20' | |
Aug 22 22:51:21 localhost systemd-udevd[244]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[247]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 756 running | |
Aug 22 22:51:21 localhost systemd-udevd[252]: handling device node '/dev/tty13', devnum=c4:13, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: handling device node '/dev/tty2', devnum=c4:2, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[246]: created empty file '/run/udev/data/c4:20' for '/devices/virtual/tty/tty20' | |
Aug 22 22:51:21 localhost systemd-udevd[244]: handling device node '/dev/tty21', devnum=c4:21, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[247]: handling device node '/dev/tty22', devnum=c4:22, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[243]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: set permissions /dev/tty13, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: set permissions /dev/tty2, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[246]: passed device to netlink monitor 0x55a7def169e0 | |
Aug 22 22:51:21 localhost systemd-udevd[244]: set permissions /dev/tty21, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[247]: set permissions /dev/tty22, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[243]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: creating symlink '/dev/char/4:13' to '../tty13' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: creating symlink '/dev/char/4:2' to '../tty2' | |
Aug 22 22:51:21 localhost systemd-udevd[246]: seq 753 processed | |
Aug 22 22:51:21 localhost systemd-udevd[244]: creating symlink '/dev/char/4:21' to '../tty21' | |
Aug 22 22:51:21 localhost systemd-udevd[247]: creating symlink '/dev/char/4:22' to '../tty22' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 759 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: handling device node '/dev/tty23', devnum=c4:23, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: created empty file '/run/udev/data/c4:13' for '/devices/virtual/tty/tty13' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: created empty file '/run/udev/data/c4:2' for '/devices/virtual/tty/tty2' | |
Aug 22 22:51:21 localhost systemd-udevd[244]: created empty file '/run/udev/data/c4:21' for '/devices/virtual/tty/tty21' | |
Aug 22 22:51:21 localhost systemd-udevd[247]: created empty file '/run/udev/data/c4:22' for '/devices/virtual/tty/tty22' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[243]: set permissions /dev/tty23, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:21 localhost systemd-udevd[244]: passed device to netlink monitor 0x55a7def152c0 | |
Aug 22 22:51:21 localhost systemd-udevd[247]: passed device to netlink monitor 0x55a7def17810 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating symlink '/dev/char/4:23' to '../tty23' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 745 processed | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 752 processed | |
Aug 22 22:51:21 localhost systemd-udevd[244]: seq 754 processed | |
Aug 22 22:51:21 localhost systemd-udevd[247]: seq 755 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: maximum number (10) of children reached | |
Aug 22 22:51:21 localhost systemd-udevd[243]: created empty file '/run/udev/data/c4:23' for '/devices/virtual/tty/tty23' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 757 running | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 758 running | |
Aug 22 22:51:21 localhost systemd-udevd[252]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 756 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 759 running | |
Aug 22 22:51:21 localhost systemd-udevd[242]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 760 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: handling device node '/dev/tty24', devnum=c4:24, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 760 running | |
Aug 22 22:51:21 localhost systemd-udevd[245]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: handling device node '/dev/tty25', devnum=c4:25, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: set permissions /dev/tty24, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 761 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: handling device node '/dev/tty26', devnum=c4:26, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: set permissions /dev/tty25, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: creating symlink '/dev/char/4:24' to '../tty24' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 761 running | |
Aug 22 22:51:21 localhost systemd-udevd[251]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: set permissions /dev/tty26, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: creating symlink '/dev/char/4:25' to '../tty25' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: created empty file '/run/udev/data/c4:24' for '/devices/virtual/tty/tty24' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 762 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: handling device node '/dev/tty27', devnum=c4:27, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: creating symlink '/dev/char/4:26' to '../tty26' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: created empty file '/run/udev/data/c4:25' for '/devices/virtual/tty/tty25' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: seq 762 running | |
Aug 22 22:51:21 localhost systemd-udevd[243]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: set permissions /dev/tty27, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: created empty file '/run/udev/data/c4:26' for '/devices/virtual/tty/tty26' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 757 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 763 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[248]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: handling device node '/dev/tty28', devnum=c4:28, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: creating symlink '/dev/char/4:27' to '../tty27' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 758 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 169 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[261]: seq 763 running | |
Aug 22 22:51:21 localhost systemd-udevd[248]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: set permissions /dev/tty28, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: created empty file '/run/udev/data/c4:27' for '/devices/virtual/tty/tty27' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 759 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 764 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[261]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: handling device node '/dev/tty29', devnum=c4:29, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating symlink '/dev/char/4:28' to '../tty28' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: passed device to netlink monitor 0x55a7def1ad90 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 764 running | |
Aug 22 22:51:21 localhost systemd-udevd[261]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: set permissions /dev/tty29, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: created empty file '/run/udev/data/c4:28' for '/devices/virtual/tty/tty28' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 760 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 765 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[261]: handling device node '/dev/tty3', devnum=c4:3, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: creating symlink '/dev/char/4:29' to '../tty29' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 765 running | |
Aug 22 22:51:21 localhost systemd-udevd[252]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[261]: set permissions /dev/tty3, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: created empty file '/run/udev/data/c4:29' for '/devices/virtual/tty/tty29' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 761 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 766 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: handling device node '/dev/tty30', devnum=c4:30, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[261]: creating symlink '/dev/char/4:3' to '../tty3' | |
Aug 22 22:51:21 localhost systemd-udevd[248]: passed device to netlink monitor 0x55a7def18980 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 766 running | |
Aug 22 22:51:21 localhost systemd-udevd[242]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: set permissions /dev/tty30, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[261]: created empty file '/run/udev/data/c4:3' for '/devices/virtual/tty/tty3' | |
Aug 22 22:51:21 localhost systemd-udevd[248]: seq 762 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 767 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: handling device node '/dev/tty31', devnum=c4:31, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: creating symlink '/dev/char/4:30' to '../tty30' | |
Aug 22 22:51:21 localhost systemd-udevd[261]: passed device to netlink monitor 0x55a7def1fd20 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 767 running | |
Aug 22 22:51:21 localhost systemd-udevd[245]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: set permissions /dev/tty31, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: created empty file '/run/udev/data/c4:30' for '/devices/virtual/tty/tty30' | |
Aug 22 22:51:21 localhost systemd-udevd[261]: seq 763 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 768 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: handling device node '/dev/tty32', devnum=c4:32, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: creating symlink '/dev/char/4:31' to '../tty31' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 768 running | |
Aug 22 22:51:21 localhost systemd-udevd[243]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: set permissions /dev/tty32, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: created empty file '/run/udev/data/c4:31' for '/devices/virtual/tty/tty31' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 764 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 769 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: handling device node '/dev/tty33', devnum=c4:33, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: creating symlink '/dev/char/4:32' to '../tty32' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: seq 769 running | |
Aug 22 22:51:21 localhost systemd-udevd[251]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: set permissions /dev/tty33, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: created empty file '/run/udev/data/c4:32' for '/devices/virtual/tty/tty32' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 765 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 770 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[248]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: handling device node '/dev/tty34', devnum=c4:34, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating symlink '/dev/char/4:33' to '../tty33' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 770 running | |
Aug 22 22:51:21 localhost systemd-udevd[248]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: set permissions /dev/tty34, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: created empty file '/run/udev/data/c4:33' for '/devices/virtual/tty/tty33' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 766 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 771 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: handling device node '/dev/tty35', devnum=c4:35, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: creating symlink '/dev/char/4:34' to '../tty34' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 771 running | |
Aug 22 22:51:21 localhost systemd-udevd[252]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: set permissions /dev/tty35, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: created empty file '/run/udev/data/c4:34' for '/devices/virtual/tty/tty34' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 767 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 772 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: handling device node '/dev/tty36', devnum=c4:36, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: creating symlink '/dev/char/4:35' to '../tty35' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: passed device to netlink monitor 0x55a7def1ad90 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 772 running | |
Aug 22 22:51:21 localhost systemd-udevd[242]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: set permissions /dev/tty36, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: created empty file '/run/udev/data/c4:35' for '/devices/virtual/tty/tty35' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 768 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 773 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: handling device node '/dev/tty37', devnum=c4:37, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: creating symlink '/dev/char/4:36' to '../tty36' | |
Aug 22 22:51:21 localhost systemd-udevd[248]: passed device to netlink monitor 0x55a7def18980 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 773 running | |
Aug 22 22:51:21 localhost systemd-udevd[245]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: set permissions /dev/tty37, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: created empty file '/run/udev/data/c4:36' for '/devices/virtual/tty/tty36' | |
Aug 22 22:51:21 localhost systemd-udevd[248]: seq 769 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 774 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: handling device node '/dev/tty38', devnum=c4:38, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: creating symlink '/dev/char/4:37' to '../tty37' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 774 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 169 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: set permissions /dev/tty38, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: created empty file '/run/udev/data/c4:37' for '/devices/virtual/tty/tty37' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 770 processed | |
Aug 22 22:51:21 localhost systemd-udevd[251]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 775 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: handling device node '/dev/tty39', devnum=c4:39, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: creating symlink '/dev/char/4:38' to '../tty38' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: seq 775 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: set permissions /dev/tty39, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: created empty file '/run/udev/data/c4:38' for '/devices/virtual/tty/tty38' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 771 processed | |
Aug 22 22:51:21 localhost systemd-udevd[251]: handling device node '/dev/tty4', devnum=c4:4, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 776 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating symlink '/dev/char/4:39' to '../tty39' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: set permissions /dev/tty4, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 776 running | |
Aug 22 22:51:21 localhost systemd-udevd[243]: created empty file '/run/udev/data/c4:39' for '/devices/virtual/tty/tty39' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 772 processed | |
Aug 22 22:51:21 localhost systemd-udevd[251]: creating symlink '/dev/char/4:4' to '../tty4' | |
Aug 22 22:51:21 localhost systemd-udevd[248]: handling device node '/dev/tty40', devnum=c4:40, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 777 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: created empty file '/run/udev/data/c4:4' for '/devices/virtual/tty/tty4' | |
Aug 22 22:51:21 localhost systemd-udevd[248]: set permissions /dev/tty40, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 777 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 773 processed | |
Aug 22 22:51:21 localhost systemd-udevd[251]: passed device to netlink monitor 0x55a7def1ad90 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: creating symlink '/dev/char/4:40' to '../tty40' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 778 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: handling device node '/dev/tty41', devnum=c4:41, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 774 processed | |
Aug 22 22:51:21 localhost systemd-udevd[248]: created empty file '/run/udev/data/c4:40' for '/devices/virtual/tty/tty40' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 778 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: set permissions /dev/tty41, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: passed device to netlink monitor 0x55a7def18980 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: handling device node '/dev/tty42', devnum=c4:42, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 779 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: creating symlink '/dev/char/4:41' to '../tty41' | |
Aug 22 22:51:21 localhost systemd-udevd[248]: seq 775 processed | |
Aug 22 22:51:21 localhost systemd-udevd[242]: set permissions /dev/tty42, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 779 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: created empty file '/run/udev/data/c4:41' for '/devices/virtual/tty/tty41' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: creating symlink '/dev/char/4:42' to '../tty42' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: handling device node '/dev/tty43', devnum=c4:43, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 780 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: created empty file '/run/udev/data/c4:42' for '/devices/virtual/tty/tty42' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: set permissions /dev/tty43, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 780 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 776 processed | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: creating symlink '/dev/char/4:43' to '../tty43' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: handling device node '/dev/tty44', devnum=c4:44, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost kernel: 8139cp 0000:00:03.0 eth0: link up, 100Mbps, full-duplex, lpa 0x05E1 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 781 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 777 processed | |
Aug 22 22:51:21 localhost systemd-udevd[245]: created empty file '/run/udev/data/c4:43' for '/devices/virtual/tty/tty43' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: set permissions /dev/tty44, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: seq 781 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating symlink '/dev/char/4:44' to '../tty44' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: handling device node '/dev/tty45', devnum=c4:45, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 782 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 778 processed | |
Aug 22 22:51:21 localhost systemd-udevd[243]: created empty file '/run/udev/data/c4:44' for '/devices/virtual/tty/tty44' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: set permissions /dev/tty45, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 782 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: creating symlink '/dev/char/4:45' to '../tty45' | |
Aug 22 22:51:21 localhost systemd-udevd[248]: handling device node '/dev/tty46', devnum=c4:46, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 783 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 779 processed | |
Aug 22 22:51:21 localhost systemd-udevd[251]: created empty file '/run/udev/data/c4:45' for '/devices/virtual/tty/tty45' | |
Aug 22 22:51:21 localhost systemd-udevd[248]: set permissions /dev/tty46, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 783 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: passed device to netlink monitor 0x55a7def1ad90 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: creating symlink '/dev/char/4:46' to '../tty46' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: handling device node '/dev/tty47', devnum=c4:47, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 784 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 780 processed | |
Aug 22 22:51:21 localhost systemd-udevd[248]: created empty file '/run/udev/data/c4:46' for '/devices/virtual/tty/tty46' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: set permissions /dev/tty47, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 784 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: passed device to netlink monitor 0x55a7def18980 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: creating symlink '/dev/char/4:47' to '../tty47' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: handling device node '/dev/tty48', devnum=c4:48, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 785 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[248]: seq 781 processed | |
Aug 22 22:51:21 localhost systemd-udevd[252]: created empty file '/run/udev/data/c4:47' for '/devices/virtual/tty/tty47' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: set permissions /dev/tty48, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 785 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 169 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: creating symlink '/dev/char/4:48' to '../tty48' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: handling device node '/dev/tty49', devnum=c4:49, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 786 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 782 processed | |
Aug 22 22:51:21 localhost systemd-udevd[242]: created empty file '/run/udev/data/c4:48' for '/devices/virtual/tty/tty48' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: set permissions /dev/tty49, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 786 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating symlink '/dev/char/4:49' to '../tty49' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: handling device node '/dev/tty5', devnum=c4:5, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 787 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 783 processed | |
Aug 22 22:51:21 localhost systemd-udevd[243]: created empty file '/run/udev/data/c4:49' for '/devices/virtual/tty/tty49' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: set permissions /dev/tty5, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 787 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: creating symlink '/dev/char/4:5' to '../tty5' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: handling device node '/dev/tty50', devnum=c4:50, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 788 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 784 processed | |
Aug 22 22:51:21 localhost systemd-udevd[245]: created empty file '/run/udev/data/c4:5' for '/devices/virtual/tty/tty5' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: set permissions /dev/tty50, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 788 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: creating symlink '/dev/char/4:50' to '../tty50' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: handling device node '/dev/tty51', devnum=c4:51, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 789 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 785 processed | |
Aug 22 22:51:21 localhost systemd-udevd[251]: created empty file '/run/udev/data/c4:50' for '/devices/virtual/tty/tty50' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: set permissions /dev/tty51, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 789 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: passed device to netlink monitor 0x55a7def1ad90 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: creating symlink '/dev/char/4:51' to '../tty51' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: handling device node '/dev/tty52', devnum=c4:52, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 790 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 786 processed | |
Aug 22 22:51:21 localhost systemd-udevd[252]: created empty file '/run/udev/data/c4:51' for '/devices/virtual/tty/tty51' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: set permissions /dev/tty52, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 790 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: creating symlink '/dev/char/4:52' to '../tty52' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: handling device node '/dev/tty53', devnum=c4:53, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 791 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 787 processed | |
Aug 22 22:51:21 localhost systemd-udevd[242]: created empty file '/run/udev/data/c4:52' for '/devices/virtual/tty/tty52' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: set permissions /dev/tty53, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 791 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating symlink '/dev/char/4:53' to '../tty53' | |
Aug 22 22:51:21 localhost kernel: sd 0:0:0:0: [sda] 20971520 512-byte logical blocks: (10.7 GB/10.0 GiB) | |
Aug 22 22:51:21 localhost kernel: sd 0:0:0:0: [sda] Write Protect is off | |
Aug 22 22:51:21 localhost kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 | |
Aug 22 22:51:21 localhost kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA | |
Aug 22 22:51:21 localhost systemd-udevd[245]: handling device node '/dev/tty54', devnum=c4:54, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 792 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 788 processed | |
Aug 22 22:51:21 localhost systemd-udevd[243]: created empty file '/run/udev/data/c4:53' for '/devices/virtual/tty/tty53' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: set permissions /dev/tty54, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 792 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: creating symlink '/dev/char/4:54' to '../tty54' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: handling device node '/dev/tty55', devnum=c4:55, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 793 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 789 processed | |
Aug 22 22:51:21 localhost systemd-udevd[245]: created empty file '/run/udev/data/c4:54' for '/devices/virtual/tty/tty54' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: set permissions /dev/tty55, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 793 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: creating symlink '/dev/char/4:55' to '../tty55' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: handling device node '/dev/tty56', devnum=c4:56, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 794 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 790 processed | |
Aug 22 22:51:21 localhost systemd-udevd[251]: created empty file '/run/udev/data/c4:55' for '/devices/virtual/tty/tty55' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: set permissions /dev/tty56, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 794 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: passed device to netlink monitor 0x55a7def1ad90 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: creating symlink '/dev/char/4:56' to '../tty56' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: handling device node '/dev/tty57', devnum=c4:57, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 795 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 791 processed | |
Aug 22 22:51:21 localhost systemd-udevd[252]: created empty file '/run/udev/data/c4:56' for '/devices/virtual/tty/tty56' | |
Aug 22 22:51:21 localhost kernel: sda: sda1 | |
Aug 22 22:51:21 localhost kernel: sd 0:0:0:0: [sda] Attached SCSI disk | |
Aug 22 22:51:21 localhost systemd-udevd[242]: set permissions /dev/tty57, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 795 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: creating symlink '/dev/char/4:57' to '../tty57' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: handling device node '/dev/tty58', devnum=c4:58, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 796 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 792 processed | |
Aug 22 22:51:21 localhost systemd-udevd[242]: created empty file '/run/udev/data/c4:57' for '/devices/virtual/tty/tty57' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: set permissions /dev/tty58, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 796 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 169 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating symlink '/dev/char/4:58' to '../tty58' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: handling device node '/dev/tty59', devnum=c4:59, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 797 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 793 processed | |
Aug 22 22:51:21 localhost systemd-udevd[243]: created empty file '/run/udev/data/c4:58' for '/devices/virtual/tty/tty58' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: set permissions /dev/tty59, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 797 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: creating symlink '/dev/char/4:59' to '../tty59' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: handling device node '/dev/tty6', devnum=c4:6, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 798 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 794 processed | |
Aug 22 22:51:21 localhost systemd-udevd[245]: created empty file '/run/udev/data/c4:59' for '/devices/virtual/tty/tty59' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: set permissions /dev/tty6, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 798 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: creating symlink '/dev/char/4:6' to '../tty6' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: handling device node '/dev/tty60', devnum=c4:60, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 799 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 795 processed | |
Aug 22 22:51:21 localhost systemd-udevd[251]: created empty file '/run/udev/data/c4:6' for '/devices/virtual/tty/tty6' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: set permissions /dev/tty60, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 799 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: passed device to netlink monitor 0x55a7def1ad90 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: creating symlink '/dev/char/4:60' to '../tty60' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: handling device node '/dev/tty61', devnum=c4:61, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 800 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 796 processed | |
Aug 22 22:51:21 localhost systemd-udevd[252]: created empty file '/run/udev/data/c4:60' for '/devices/virtual/tty/tty60' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: set permissions /dev/tty61, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 800 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: creating symlink '/dev/char/4:61' to '../tty61' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: handling device node '/dev/tty62', devnum=c4:62, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 801 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 797 processed | |
Aug 22 22:51:21 localhost systemd-udevd[242]: created empty file '/run/udev/data/c4:61' for '/devices/virtual/tty/tty61' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: set permissions /dev/tty62, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 801 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 169 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating symlink '/dev/char/4:62' to '../tty62' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: handling device node '/dev/tty63', devnum=c4:63, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 802 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 798 processed | |
Aug 22 22:51:21 localhost systemd-udevd[243]: created empty file '/run/udev/data/c4:62' for '/devices/virtual/tty/tty62' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: set permissions /dev/tty63, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 802 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 169 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: creating symlink '/dev/char/4:63' to '../tty63' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: handling device node '/dev/tty7', devnum=c4:7, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 803 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 799 processed | |
Aug 22 22:51:21 localhost systemd-udevd[245]: created empty file '/run/udev/data/c4:63' for '/devices/virtual/tty/tty63' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: set permissions /dev/tty7, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 803 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 169 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: creating symlink '/dev/char/4:7' to '../tty7' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: handling device node '/dev/tty8', devnum=c4:8, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 804 queued, 'add' 'tty' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 800 processed | |
Aug 22 22:51:21 localhost systemd-udevd[251]: created empty file '/run/udev/data/c4:7' for '/devices/virtual/tty/tty7' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: set permissions /dev/tty8, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: MODE 0620 /usr/lib64/udev/rules.d/50-udev-default.rules:21 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 804 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 179 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: passed device to netlink monitor 0x55a7def1ad90 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: creating symlink '/dev/char/4:8' to '../tty8' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: handling device node '/dev/tty9', devnum=c4:9, mode=0620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: handling device node '/dev/ttyprintk', devnum=c5:3, mode=0600, uid=0, gid=0 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 805 queued, 'add' 'vc' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 801 processed | |
Aug 22 22:51:21 localhost systemd-udevd[252]: created empty file '/run/udev/data/c4:8' for '/devices/virtual/tty/tty8' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: set permissions /dev/tty9, 020620, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: preserve permissions /dev/ttyprintk, 020600, uid=0, gid=0 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 805 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 165 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: creating symlink '/dev/char/4:9' to '../tty9' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating symlink '/dev/char/5:3' to '../ttyprintk' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:25 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 806 queued, 'add' 'vc' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 802 processed | |
Aug 22 22:51:21 localhost systemd-udevd[242]: created empty file '/run/udev/data/c4:9' for '/devices/virtual/tty/tty9' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: created db file '/run/udev/data/c5:3' for '/devices/virtual/tty/ttyprintk' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: handling device node '/dev/vcs', devnum=c7:0, mode=0660, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 806 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 167 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd[1]: dev-ttyprintk.device: Changed dead -> plugged | |
Aug 22 22:51:21 localhost systemd-udevd[245]: set permissions /dev/vcs, 020660, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:25 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 807 queued, 'add' 'vc' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 803 processed | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 804 processed | |
Aug 22 22:51:21 localhost systemd[1]: sys-devices-virtual-tty-ttyprintk.device: Changed dead -> plugged | |
Aug 22 22:51:21 localhost systemd-udevd[245]: creating symlink '/dev/char/7:0' to '../vcs' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: handling device node '/dev/vcs1', devnum=c7:1, mode=0660, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 807 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 169 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: created empty file '/run/udev/data/c7:0' for '/devices/virtual/vc/vcs' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: set permissions /dev/vcs1, 020660, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:25 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 808 queued, 'add' 'vc' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: creating symlink '/dev/char/7:1' to '../vcs1' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: handling device node '/dev/vcsa', devnum=c7:128, mode=0660, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 808 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 171 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 805 processed | |
Aug 22 22:51:21 localhost systemd-udevd[251]: created empty file '/run/udev/data/c7:1' for '/devices/virtual/vc/vcs1' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: set permissions /dev/vcsa, 020660, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: GROUP 5 /usr/lib64/udev/rules.d/50-udev-default.rules:25 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 809 queued, 'add' 'vtconsole' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: passed device to netlink monitor 0x55a7def1ad90 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: creating symlink '/dev/char/7:128' to '../vcsa' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: handling device node '/dev/vcsa1', devnum=c7:129, mode=0660, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 809 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 149 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 806 processed | |
Aug 22 22:51:21 localhost systemd-udevd[252]: created empty file '/run/udev/data/c7:128' for '/devices/virtual/vc/vcsa' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: set permissions /dev/vcsa1, 020660, uid=0, gid=5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: RUN '/usr/lib/systemd/systemd-vconsole-setup' /usr/lib64/udev/rules.d/90-vconsole.rules:10 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 810 queued, 'add' 'workqueue' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating symlink '/dev/char/7:129' to '../vcsa1' | |
Aug 22 22:51:21 localhost systemd-udevd[277]: starting '/usr/lib/systemd/systemd-vconsole-setup' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 810 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 152 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 807 processed | |
Aug 22 22:51:21 localhost systemd-udevd[243]: created empty file '/run/udev/data/c7:129' for '/devices/virtual/vc/vcsa1' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: Process '/usr/lib/systemd/systemd-vconsole-setup' succeeded. | |
Aug 22 22:51:21 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 811 queued, 'add' 'module' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 810 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 129 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 811 running | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 808 processed | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 809 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 812 queued, 'add' 'class' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: passed device to netlink monitor 0x55a7def1ad90 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 128 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 812 running | |
Aug 22 22:51:21 localhost ignition[209]: failed to fetch http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa: Get http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa: dial tcp: lookup bootcfg.mgt.tite.lan on [::1]:53: read udp [::1]:46367->[::1]:53: read: connection refused | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 811 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 813 queued, 'add' 'bus' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 119 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 813 running | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 812 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 814 queued, 'add' 'class' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 130 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 814 running | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 813 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 815 queued, 'add' 'module' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 127 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 815 running | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 814 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 816 queued, 'add' 'class' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 127 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 816 running | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 815 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 817 queued, 'add' 'class' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 127 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 817 running | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 816 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 818 queued, 'add' 'class' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 129 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 818 running | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 817 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 819 queued, 'add' 'module' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 131 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 819 running | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 818 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 820 queued, 'add' 'module' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 124 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 820 running | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 819 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 821 queued, 'add' 'module' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 127 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 821 running | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 820 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 822 queued, 'add' 'bus' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 121 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 822 running | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 821 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 823 queued, 'add' 'module' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 132 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 823 running | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 822 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 824 queued, 'add' 'module' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 127 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 824 running | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 823 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 825 queued, 'add' 'module' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 825 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 131 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 824 processed | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 826 queued, 'add' 'module' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 825 processed | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 826 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 129 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 827 queued, 'add' 'module' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 826 processed | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 827 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 128 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 828 queued, 'add' 'bus' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 827 processed | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 828 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 118 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 829 queued, 'add' 'drivers' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 828 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 830 queued, 'add' 'drivers' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 829 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 136 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 830 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 134 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 829 processed | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 831 queued, 'add' 'drivers' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 830 processed | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 831 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 134 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 832 queued, 'add' 'module' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 831 processed | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 832 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 129 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 833 queued, 'add' 'module' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 832 processed | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 833 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 129 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 834 queued, 'add' 'net' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 833 processed | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 834 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 176 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: IMPORT builtin 'net_id' /usr/lib64/udev/rules.d/75-net-description.rules:6 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 835 queued, 'add' 'queues' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/75-net-description.rules:12 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 836 queued, 'add' 'queues' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 837 queued, 'add' 'drivers' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: IMPORT builtin 'path_id' /usr/lib64/udev/rules.d/80-net-setup-link.rules:5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 837 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 137 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: IMPORT builtin 'net_setup_link' /usr/lib64/udev/rules.d/80-net-setup-link.rules:9 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 838 queued, 'add' 'virtio' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: Config file /etc/systemd/network/98-disable-net-names.link applies to device eth0 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 837 processed | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 838 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 188 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: RUN '/usr/lib/systemd/systemd-sysctl --prefix=/net/ipv4/conf/$name --prefix=/net/ipv4/neigh/$name --prefix=/net/ipv6/conf/$name --prefix=/net/ipv6/neigh/$name' /usr/lib64/udev/rules.d/99-systemd.rules:51 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 839 queued, 'add' 'ata_port' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: created db file '/run/udev/data/n2' for '/devices/pci0000:00/0000:00:03.0/net/eth0' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 839 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 166 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[278]: starting '/usr/lib/systemd/systemd-sysctl --prefix=/net/ipv4/conf/eth0 --prefix=/net/ipv4/neigh/eth0 --prefix=/net/ipv6/conf/eth0 --prefix=/net/ipv6/neigh/eth0' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 840 queued, 'add' 'ata_link' | |
Aug 22 22:51:21 localhost systemd-sysctl[278]: Parsing /usr/lib64/sysctl.d/50-coredump.conf | |
Aug 22 22:51:21 localhost systemd-udevd[242]: Execute 'load' 'virtio:d00000003v00001AF4' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 839 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 173 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 840 running | |
Aug 22 22:51:21 localhost systemd-sysctl[278]: Parsing /usr/lib64/sysctl.d/50-default.conf | |
Aug 22 22:51:21 localhost systemd-udevd[242]: No module matches 'virtio:d00000003v00001AF4' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 841 queued, 'add' 'ata_device' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:21 localhost systemd-sysctl[278]: Parsing /usr/lib64/sysctl.d/baselayout.conf | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 185 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 841 running | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 840 processed | |
Aug 22 22:51:21 localhost systemd-udevd[243]: Process '/usr/lib/systemd/systemd-sysctl --prefix=/net/ipv4/conf/eth0 --prefix=/net/ipv4/neigh/eth0 --prefix=/net/ipv6/conf/eth0 --prefix=/net/ipv6/neigh/eth0' succeeded. | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 838 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 842 queued, 'add' 'ata_device' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-networkd[202]: eth0: udev initialized link | |
Aug 22 22:51:21 localhost systemd[1]: sys-subsystem-net-devices-eth0.device: Changed dead -> plugged | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 185 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 842 running | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 841 processed | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 834 processed | |
Aug 22 22:51:21 localhost systemd-networkd[202]: eth0: Link state is up-to-date | |
Aug 22 22:51:21 localhost systemd[1]: sys-devices-pci0000:00-0000:00:03.0-net-eth0.device: Changed dead -> plugged | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 843 queued, 'add' 'ata_port' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: passed device to netlink monitor 0x55a7def1ad90 | |
Aug 22 22:51:21 localhost systemd-networkd[202]: eth0: found matching network '/usr/lib64/systemd/network/yy-pxe.network' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 166 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 843 running | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 842 processed | |
Aug 22 22:51:21 localhost systemd-networkd[202]: eth0: Bringing link up | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 166 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 835 running | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-networkd[202]: eth0: Flags change: +UP +LOWER_UP +RUNNING | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 166 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 836 running | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 843 processed | |
Aug 22 22:51:21 localhost systemd-networkd[202]: eth0: Gained carrier | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 844 queued, 'add' 'ata_link' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 835 processed | |
Aug 22 22:51:21 localhost systemd-networkd[202]: eth0: Acquiring DHCPv4 lease | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 173 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 844 running | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 836 processed | |
Aug 22 22:51:21 localhost systemd-networkd[202]: DHCP CLIENT (0x5467af7b): STARTED on ifindex 2 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 845 queued, 'add' 'ata_device' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:21 localhost systemd-networkd[202]: DHCP CLIENT (0x5467af7b): DISCOVER | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 185 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 845 running | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 844 processed | |
Aug 22 22:51:21 localhost systemd-networkd[202]: DHCP CLIENT (0x5467af7b): OFFER | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 846 queued, 'add' 'ata_device' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-networkd[202]: DHCP CLIENT (0x5467af7b): REQUEST (requesting) | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 185 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 846 running | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 845 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 847 queued, 'add' 'module' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 128 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 847 running | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 846 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 848 queued, 'add' 'scsi' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 848 running | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 847 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 849 queued, 'add' 'scsi_host' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 850 queued, 'add' 'scsi' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 848 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 172 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 850 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 175 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 849 running | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 851 queued, 'add' 'scsi_host' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 850 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 852 queued, 'add' 'drivers' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 849 processed | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 852 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 139 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 175 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 851 running | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 852 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 853 queued, 'add' 'usb' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 265 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 853 running | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 851 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 854 queued, 'add' 'usb' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: IMPORT builtin 'usb_id' /usr/lib64/udev/rules.d/50-udev-default.rules:13 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 855 queued, 'add' 'drivers' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:13 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 138 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 855 running | |
Aug 22 22:51:21 localhost systemd-udevd[252]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 856 queued, 'add' 'drivers' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: MODE 0664 /usr/lib64/udev/rules.d/50-udev-default.rules:41 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 856 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 139 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 855 processed | |
Aug 22 22:51:21 localhost systemd-udevd[252]: IMPORT builtin 'path_id' /usr/lib64/udev/rules.d/71-seat.rules:49 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 857 queued, 'add' 'module' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: handling device node '/dev/bus/usb/001/001', devnum=c189:0, mode=0664, uid=0, gid=0 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 856 processed | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 857 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 129 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: set permissions /dev/bus/usb/001/001, 020664, uid=0, gid=0 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 858 queued, 'add' 'scsi' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: creating symlink '/dev/char/189:0' to '../bus/usb/001/001' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 857 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 186 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 858 running | |
Aug 22 22:51:21 localhost systemd-udevd[252]: created db file '/run/udev/data/c189:0' for '/devices/pci0000:00/0000:00:06.7/usb1' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 859 queued, 'add' 'scsi' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 860 queued, 'add' 'scsi_device' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 858 processed | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 853 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 861 queued, 'add' 'bsg' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 282 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 854 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 215 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 859 running | |
Aug 22 22:51:21 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 862 queued, 'add' 'virtio' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 862 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 188 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:21 localhost systemd-udevd[243]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 863 queued, 'add' 'drivers' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: Execute 'load' 'usb:v1D6Bp0002d0407dc09dsc00dp00ic09isc00ip00in00' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 863 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 141 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: Execute 'load' 'scsi:t-0x00' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: Inserted 'usbcore' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 864 queued, 'add' 'module' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: Inserted 'usbcore' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: Execute 'load' 'virtio:d00000005v00001AF4' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 863 processed | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 864 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 133 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: No module matches 'virtio:d00000005v00001AF4' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: passed device to netlink monitor 0x55a7def1ad90 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 865 queued, 'add' 'usb' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 854 processed | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 864 processed | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 865 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 267 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 862 processed | |
Aug 22 22:51:21 localhost systemd-udevd[245]: IMPORT builtin 'usb_id' /usr/lib64/udev/rules.d/50-udev-default.rules:13 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 866 queued, 'add' 'usb' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:13 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 867 queued, 'add' 'usb' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 267 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 867 running | |
Aug 22 22:51:21 localhost systemd-udevd[245]: MODE 0664 /usr/lib64/udev/rules.d/50-udev-default.rules:41 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 868 queued, 'add' 'usb' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: IMPORT builtin 'usb_id' /usr/lib64/udev/rules.d/50-udev-default.rules:13 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: IMPORT builtin 'path_id' /usr/lib64/udev/rules.d/71-seat.rules:49 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 869 queued, 'add' 'usb' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:13 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: handling device node '/dev/bus/usb/002/001', devnum=c189:128, mode=0664, uid=0, gid=0 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 869 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 267 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:21 localhost systemd-udevd[245]: set permissions /dev/bus/usb/002/001, 020664, uid=0, gid=0 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: IMPORT builtin 'usb_id' /usr/lib64/udev/rules.d/50-udev-default.rules:13 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 870 queued, 'add' 'usb' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: MODE 0664 /usr/lib64/udev/rules.d/50-udev-default.rules:41 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: creating symlink '/dev/char/189:128' to '../bus/usb/002/001' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:13 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: Inserted 'sd_mod' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 871 queued, 'add' 'drivers' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: IMPORT builtin 'path_id' /usr/lib64/udev/rules.d/71-seat.rules:49 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: created db file '/run/udev/data/c189:128' for '/devices/pci0000:00/0000:00:06.0/usb2' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 871 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 139 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: handling device node '/dev/bus/usb/003/001', devnum=c189:256, mode=0664, uid=0, gid=0 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: MODE 0664 /usr/lib64/udev/rules.d/50-udev-default.rules:41 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 859 processed | |
Aug 22 22:51:21 localhost systemd-udevd[251]: passed device to netlink monitor 0x55a7def1ad90 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 872 queued, 'add' 'module' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: set permissions /dev/bus/usb/003/001, 020664, uid=0, gid=0 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 865 processed | |
Aug 22 22:51:21 localhost systemd-udevd[242]: IMPORT builtin 'path_id' /usr/lib64/udev/rules.d/71-seat.rules:49 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 871 processed | |
Aug 22 22:51:21 localhost systemd-udevd[248]: seq 872 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 127 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating symlink '/dev/char/189:256' to '../bus/usb/003/001' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: handling device node '/dev/bus/usb/004/001', devnum=c189:384, mode=0664, uid=0, gid=0 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: passed device to netlink monitor 0x55a7def18980 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 201 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 860 running | |
Aug 22 22:51:21 localhost systemd-udevd[243]: created db file '/run/udev/data/c189:256' for '/devices/pci0000:00/0000:00:06.1/usb3' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: set permissions /dev/bus/usb/004/001, 020664, uid=0, gid=0 | |
Aug 22 22:51:21 localhost systemd-udevd[248]: seq 872 processed | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 861 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 228 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: creating symlink '/dev/char/189:384' to '../bus/usb/004/001' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: handling device node '/dev/bsg/0:0:0:0', devnum=c252:0, mode=0600, uid=0, gid=0 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 866 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 282 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 860 processed | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 867 processed | |
Aug 22 22:51:21 localhost systemd-udevd[242]: created db file '/run/udev/data/c189:384' for '/devices/pci0000:00/0000:00:06.2/usb4' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: preserve permissions /dev/bsg/0:0:0:0, 020600, uid=0, gid=0 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 873 queued, 'add' 'class' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: creating symlink '/dev/char/252:0' to '../bsg/0:0:0:0' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:21 localhost systemd-udevd[261]: seq 873 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 128 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 869 processed | |
Aug 22 22:51:21 localhost systemd-udevd[245]: created empty file '/run/udev/data/c252:0' for '/devices/pci0000:00/0000:00:01.1/ata1/host0/target0:0:0/0:0:0:0/bsg/0:0:0:0' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:21 localhost systemd-udevd[261]: passed device to netlink monitor 0x55a7def1fd20 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 282 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 868 running | |
Aug 22 22:51:21 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: Execute 'load' 'usb:v1D6Bp0001d0407dc09dsc00dp00ic09isc00ip00in00' | |
Aug 22 22:51:21 localhost systemd-udevd[261]: seq 873 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 874 queued, 'add' 'scsi_disk' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 861 processed | |
Aug 22 22:51:21 localhost systemd-udevd[251]: Inserted 'usbcore' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 197 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 874 running | |
Aug 22 22:51:21 localhost systemd-udevd[243]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:21 localhost systemd-udevd[251]: Inserted 'usbcore' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 870 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 282 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:21 localhost systemd-udevd[251]: passed device to netlink monitor 0x55a7def1ad90 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' /usr/lib64/udev/rules.d/50-udev-default.rules:15 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 875 queued, 'add' 'bdi' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 874 processed | |
Aug 22 22:51:21 localhost systemd-udevd[243]: Execute 'load' 'usb:v1D6Bp0001d0407dc09dsc00dp00ic09isc00ip00in00' | |
Aug 22 22:51:21 localhost systemd-udevd[251]: seq 866 processed | |
Aug 22 22:51:21 localhost systemd-udevd[242]: IMPORT builtin 'hwdb' returned non-zero | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 875 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 134 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: Inserted 'usbcore' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: RUN 'kmod load $env{MODALIAS}' /usr/lib64/udev/rules.d/80-drivers.rules:5 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 876 queued, 'add' 'drivers' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: Inserted 'usbcore' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: Execute 'load' 'usb:v1D6Bp0001d0407dc09dsc00dp00ic09isc00ip00in00' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 875 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 134 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 876 running | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[242]: Inserted 'usbcore' | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 877 queued, 'add' 'block' | |
Aug 22 22:51:21 localhost systemd-udevd[252]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 868 processed | |
Aug 22 22:51:21 localhost systemd-udevd[242]: Inserted 'usbcore' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 877 running | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 231 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[252]: seq 876 processed | |
Aug 22 22:51:21 localhost systemd-udevd[242]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: GROUP 6 /usr/lib64/udev/rules.d/50-udev-default.rules:55 | |
Aug 22 22:51:21 localhost systemd-udevd[194]: seq 878 queued, 'add' 'block' | |
Aug 22 22:51:21 localhost systemd-udevd[242]: seq 870 processed | |
Aug 22 22:51:21 localhost systemd-udevd[245]: IMPORT 'ata_id --export /dev/sda' /usr/lib64/udev/rules.d/60-persistent-storage.rules:22 | |
Aug 22 22:51:21 localhost systemd-udevd[279]: starting 'ata_id --export /dev/sda' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: 'ata_id --export /dev/sda'(out) 'ID_ATA=1' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: 'ata_id --export /dev/sda'(out) 'ID_TYPE=disk' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: 'ata_id --export /dev/sda'(out) 'ID_BUS=ata' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: 'ata_id --export /dev/sda'(out) 'ID_MODEL=QEMU_HARDDISK' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: 'ata_id --export /dev/sda'(out) 'ID_MODEL_ENC=QEMU\x20HARDDISK\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: 'ata_id --export /dev/sda'(out) 'ID_REVISION=2.4.1' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: 'ata_id --export /dev/sda'(out) 'ID_SERIAL=QEMU_HARDDISK_QM00001' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: 'ata_id --export /dev/sda'(out) 'ID_SERIAL_SHORT=QM00001' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: 'ata_id --export /dev/sda'(out) 'ID_ATA_WRITE_CACHE=1' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: 'ata_id --export /dev/sda'(out) 'ID_ATA_WRITE_CACHE_ENABLED=1' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: 'ata_id --export /dev/sda'(out) 'ID_ATA_FEATURE_SET_SMART=1' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: 'ata_id --export /dev/sda'(out) 'ID_ATA_FEATURE_SET_SMART_ENABLED=1' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: Process 'ata_id --export /dev/sda' succeeded. | |
Aug 22 22:51:21 localhost systemd-udevd[245]: LINK 'disk/by-id/ata-QEMU_HARDDISK_QM00001' /usr/lib64/udev/rules.d/60-persistent-storage.rules:36 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: IMPORT builtin 'path_id' /usr/lib64/udev/rules.d/60-persistent-storage.rules:54 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: LINK 'disk/by-path/pci-0000:00:01.1-ata-1' /usr/lib64/udev/rules.d/60-persistent-storage.rules:55 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: IMPORT builtin 'blkid' /usr/lib64/udev/rules.d/60-persistent-storage.rules:66 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: probe /dev/sda raid offset=0 | |
Aug 22 22:51:21 localhost systemd-networkd[202]: DHCP CLIENT (0x5467af7b): ACK | |
Aug 22 22:51:21 localhost systemd-networkd[202]: DHCP CLIENT (0x5467af7b): lease expires in 9min 58s | |
Aug 22 22:51:21 localhost systemd-networkd[202]: DHCP CLIENT (0x5467af7b): T2 expires in 8min 43s | |
Aug 22 22:51:21 localhost systemd-networkd[202]: DHCP CLIENT (0x5467af7b): T1 expires in 4min 59s | |
Aug 22 22:51:21 localhost systemd-networkd[202]: eth0: DHCPv4 address 172.16.1.12/28 via 172.16.1.2 | |
Aug 22 22:51:21 localhost systemd-networkd[202]: eth0: Setting transient hostname: 'kube-master.lab1.tite.lan' | |
Aug 22 22:51:21 localhost systemd-networkd[202]: eth0: Not connected to system bus, ignoring transient hostname. | |
Aug 22 22:51:21 localhost systemd-networkd[202]: eth0: Updating address: 172.16.1.12/28 (valid for 10min) | |
Aug 22 22:51:21 localhost systemd-resolved[203]: New scope on link eth0, protocol llmnr, family AF_INET | |
Aug 22 22:51:21 localhost systemd-resolved[203]: Excercising transaction 33125 for <linux. IN ANY> on scope llmnr on eth0/AF_INET. | |
Aug 22 22:51:21 localhost systemd-resolved[203]: Delaying llmnr transaction for 72038us. | |
Aug 22 22:51:21 localhost systemd-resolved[203]: New scope on link eth0, protocol dns, family * | |
Aug 22 22:51:21 localhost systemd-resolved[203]: Timeout reached on transaction 33125. | |
Aug 22 22:51:21 localhost systemd-resolved[203]: Retrying transaction 33125. | |
Aug 22 22:51:21 localhost systemd-resolved[203]: Excercising transaction 33125 for <linux. IN ANY> on scope llmnr on eth0/AF_INET. | |
Aug 22 22:51:21 localhost systemd-resolved[203]: Sending query packet with id 33125 on interface 2/AF_INET. | |
Aug 22 22:51:21 localhost systemd-resolved[203]: Got LLMNR query packet for id 33125 | |
Aug 22 22:51:21 localhost systemd-resolved[203]: Sending response packet with id 33125 on interface 2/AF_INET. | |
Aug 22 22:51:21 localhost systemd-resolved[203]: Got LLMNR reply packet for id 33125 | |
Aug 22 22:51:21 localhost systemd-resolved[203]: Processing incoming packet on transaction 33125. | |
Aug 22 22:51:21 localhost systemd-udevd[245]: LINK 'disk/by-diskuuid/e42fccb6-2a4e-4b61-b82d-f548ffd7755b' /etc/udev/rules.d/90-disk-uuid.rules:11 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: handling device node '/dev/sda', devnum=b8:0, mode=0660, uid=0, gid=6 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: set permissions /dev/sda, 060660, uid=0, gid=6 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: creating symlink '/dev/block/8:0' to '../sda' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: creating link '/dev/disk/by-diskuuid/e42fccb6-2a4e-4b61-b82d-f548ffd7755b' to '/dev/sda' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: creating symlink '/dev/disk/by-diskuuid/e42fccb6-2a4e-4b61-b82d-f548ffd7755b' to '../../sda' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: creating link '/dev/disk/by-id/ata-QEMU_HARDDISK_QM00001' to '/dev/sda' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: creating symlink '/dev/disk/by-id/ata-QEMU_HARDDISK_QM00001' to '../../sda' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: creating link '/dev/disk/by-path/pci-0000:00:01.1-ata-1' to '/dev/sda' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: creating symlink '/dev/disk/by-path/pci-0000:00:01.1-ata-1' to '../../sda' | |
Aug 22 22:51:21 localhost systemd-udevd[245]: created db file '/run/udev/data/b8:0' for '/devices/pci0000:00/0000:00:01.1/ata1/host0/target0:0:0/0:0:0:0/block/sda' | |
Aug 22 22:51:21 localhost systemd[1]: dev-disk-by\x2dpath-pci\x2d0000:00:01.1\x2data\x2d1.device: Changed dead -> plugged | |
Aug 22 22:51:21 localhost systemd[1]: dev-disk-by\x2did-ata\x2dQEMU_HARDDISK_QM00001.device: Changed dead -> plugged | |
Aug 22 22:51:21 localhost systemd[1]: dev-disk-by\x2ddiskuuid-e42fccb6\x2d2a4e\x2d4b61\x2db82d\x2df548ffd7755b.device: Changed dead -> plugged | |
Aug 22 22:51:21 localhost systemd[1]: dev-sda.device: Changed dead -> plugged | |
Aug 22 22:51:21 localhost systemd[1]: sys-devices-pci0000:00-0000:00:01.1-ata1-host0-target0:0:0-0:0:0:0-block-sda.device: Changed dead -> plugged | |
Aug 22 22:51:21 localhost systemd-udevd[245]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:21 localhost systemd-udevd[245]: seq 877 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: passed 264 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 878 running | |
Aug 22 22:51:21 localhost systemd-udevd[243]: GROUP 6 /usr/lib64/udev/rules.d/50-udev-default.rules:55 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: LINK 'disk/by-id/ata-QEMU_HARDDISK_QM00001-part1' /usr/lib64/udev/rules.d/60-persistent-storage.rules:37 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: LINK 'disk/by-path/pci-0000:00:01.1-ata-1-part1' /usr/lib64/udev/rules.d/60-persistent-storage.rules:56 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: IMPORT builtin 'blkid' /usr/lib64/udev/rules.d/60-persistent-storage.rules:66 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: probe /dev/sda1 raid offset=0 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: LINK 'disk/by-uuid/75ddf25e-0454-4683-9143-24fcf613ee6b' /usr/lib64/udev/rules.d/60-persistent-storage.rules:69 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: LINK 'disk/by-label/ROOT' /usr/lib64/udev/rules.d/60-persistent-storage.rules:70 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: LINK 'disk/by-partuuid/a3603705-2277-465a-bcbb-543539d9c2cf' /usr/lib64/udev/rules.d/60-persistent-storage.rules:77 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: LINK 'disk/by-partlabel/ROOT' /usr/lib64/udev/rules.d/60-persistent-storage.rules:78 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: handling device node '/dev/sda1', devnum=b8:1, mode=0660, uid=0, gid=6 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: set permissions /dev/sda1, 060660, uid=0, gid=6 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating symlink '/dev/block/8:1' to '../sda1' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating link '/dev/disk/by-id/ata-QEMU_HARDDISK_QM00001-part1' to '/dev/sda1' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating symlink '/dev/disk/by-id/ata-QEMU_HARDDISK_QM00001-part1' to '../../sda1' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating link '/dev/disk/by-label/ROOT' to '/dev/sda1' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating symlink '/dev/disk/by-label/ROOT' to '../../sda1' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating link '/dev/disk/by-partlabel/ROOT' to '/dev/sda1' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating symlink '/dev/disk/by-partlabel/ROOT' to '../../sda1' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating link '/dev/disk/by-partuuid/a3603705-2277-465a-bcbb-543539d9c2cf' to '/dev/sda1' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating symlink '/dev/disk/by-partuuid/a3603705-2277-465a-bcbb-543539d9c2cf' to '../../sda1' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating link '/dev/disk/by-path/pci-0000:00:01.1-ata-1-part1' to '/dev/sda1' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating symlink '/dev/disk/by-path/pci-0000:00:01.1-ata-1-part1' to '../../sda1' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating link '/dev/disk/by-uuid/75ddf25e-0454-4683-9143-24fcf613ee6b' to '/dev/sda1' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: creating symlink '/dev/disk/by-uuid/75ddf25e-0454-4683-9143-24fcf613ee6b' to '../../sda1' | |
Aug 22 22:51:21 localhost systemd-udevd[243]: created db file '/run/udev/data/b8:1' for '/devices/pci0000:00/0000:00:01.1/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1' | |
Aug 22 22:51:21 localhost systemd[1]: dev-disk-by\x2duuid-75ddf25e\x2d0454\x2d4683\x2d9143\x2d24fcf613ee6b.device: Changed dead -> plugged | |
Aug 22 22:51:21 localhost systemd[1]: dev-disk-by\x2dpath-pci\x2d0000:00:01.1\x2data\x2d1\x2dpart1.device: Changed dead -> plugged | |
Aug 22 22:51:21 localhost systemd[1]: dev-disk-by\x2dpartuuid-a3603705\x2d2277\x2d465a\x2dbcbb\x2d543539d9c2cf.device: Changed dead -> plugged | |
Aug 22 22:51:21 localhost systemd[1]: dev-disk-by\x2dpartlabel-ROOT.device: Changed dead -> plugged | |
Aug 22 22:51:21 localhost systemd[1]: dev-disk-by\x2dlabel-ROOT.device: Changed dead -> plugged | |
Aug 22 22:51:21 localhost systemd[1]: dev-disk-by\x2did-ata\x2dQEMU_HARDDISK_QM00001\x2dpart1.device: Changed dead -> plugged | |
Aug 22 22:51:21 localhost systemd[1]: dev-sda1.device: Changed dead -> plugged | |
Aug 22 22:51:21 localhost systemd[1]: sys-devices-pci0000:00-0000:00:01.1-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device: Changed dead -> plugged | |
Aug 22 22:51:21 localhost systemd-udevd[243]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:21 localhost systemd-udevd[243]: seq 878 processed | |
Aug 22 22:51:21 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:21 localhost systemd-udevd[252]: Unload module index | |
Aug 22 22:51:21 localhost systemd-udevd[252]: Unloaded link configuration context. | |
Aug 22 22:51:21 localhost systemd-udevd[242]: Unload module index | |
Aug 22 22:51:21 localhost systemd-udevd[242]: Unloaded link configuration context. | |
Aug 22 22:51:21 localhost systemd-udevd[251]: Unload module index | |
Aug 22 22:51:21 localhost systemd-udevd[251]: Unloaded link configuration context. | |
Aug 22 22:51:21 localhost systemd-udevd[248]: Unload module index | |
Aug 22 22:51:21 localhost systemd-udevd[248]: Unloaded link configuration context. | |
Aug 22 22:51:21 localhost systemd-udevd[261]: Unload module index | |
Aug 22 22:51:21 localhost systemd-udevd[261]: Unloaded link configuration context. | |
Aug 22 22:51:21 localhost systemd-udevd[246]: Unload module index | |
Aug 22 22:51:21 localhost systemd-udevd[246]: Unloaded link configuration context. | |
Aug 22 22:51:21 localhost systemd-udevd[244]: Unload module index | |
Aug 22 22:51:21 localhost systemd-udevd[244]: Unloaded link configuration context. | |
Aug 22 22:51:21 localhost systemd-udevd[247]: Unload module index | |
Aug 22 22:51:21 localhost systemd-udevd[247]: Unloaded link configuration context. | |
Aug 22 22:51:21 localhost systemd-udevd[194]: worker [242] exited | |
Aug 22 22:51:21 localhost systemd-udevd[194]: worker [246] exited | |
Aug 22 22:51:21 localhost systemd-udevd[194]: worker [247] exited | |
Aug 22 22:51:21 localhost systemd-udevd[194]: worker [248] exited | |
Aug 22 22:51:21 localhost systemd-udevd[194]: worker [251] exited | |
Aug 22 22:51:21 localhost systemd-udevd[194]: worker [252] exited | |
Aug 22 22:51:21 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:21 localhost systemd-udevd[194]: worker [244] exited | |
Aug 22 22:51:21 localhost systemd-udevd[194]: worker [261] exited | |
Aug 22 22:51:21 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:21 localhost systemd-udevd[245]: Unload module index | |
Aug 22 22:51:21 localhost systemd-udevd[245]: Unloaded link configuration context. | |
Aug 22 22:51:21 localhost systemd-udevd[194]: worker [245] exited | |
Aug 22 22:51:21 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:21 localhost systemd-udevd[243]: Unload module index | |
Aug 22 22:51:21 localhost systemd-udevd[243]: Unloaded link configuration context. | |
Aug 22 22:51:21 localhost systemd-udevd[194]: worker [243] exited | |
Aug 22 22:51:21 localhost systemd-resolved[203]: Timeout reached on transaction 33125. | |
Aug 22 22:51:21 localhost systemd-resolved[203]: Retrying transaction 33125. | |
Aug 22 22:51:21 localhost systemd-resolved[203]: Excercising transaction 33125 for <linux. IN ANY> on scope llmnr on eth0/AF_INET. | |
Aug 22 22:51:21 localhost systemd-resolved[203]: Sending query packet with id 33125 on interface 2/AF_INET. | |
Aug 22 22:51:21 localhost systemd-resolved[203]: Got LLMNR query packet for id 33125 | |
Aug 22 22:51:21 localhost systemd-resolved[203]: Sending response packet with id 33125 on interface 2/AF_INET. | |
Aug 22 22:51:21 localhost systemd-resolved[203]: Got LLMNR reply packet for id 33125 | |
Aug 22 22:51:21 localhost systemd-resolved[203]: Processing incoming packet on transaction 33125. | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Timeout reached on transaction 33125. | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Retrying transaction 33125. | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Excercising transaction 33125 for <linux. IN ANY> on scope llmnr on eth0/AF_INET. | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Sending query packet with id 33125 on interface 2/AF_INET. | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Got LLMNR query packet for id 33125 | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Sending response packet with id 33125 on interface 2/AF_INET. | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Got LLMNR reply packet for id 33125 | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Processing incoming packet on transaction 33125. | |
Aug 22 22:51:22 localhost systemd-resolved[203]: New scope on link eth0, protocol llmnr, family AF_INET6 | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Excercising transaction 65076 for <linux. IN ANY> on scope llmnr on eth0/AF_INET6. | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Delaying llmnr transaction for 11846us. | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Timeout reached on transaction 33125. | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Retrying transaction 33125. | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Transaction 33125 for <linux. IN ANY> on scope llmnr on eth0/AF_INET now complete with <attempts-max-reached> from none (unsigned). | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Record linux. IN A 172.16.1.12 successfully probed. | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Freeing transaction 33125. | |
Aug 22 22:51:22 localhost systemd-networkd[202]: eth0: Adding address: fe80::5054:ff:fe91:ccaa/64 (valid forever) | |
Aug 22 22:51:22 localhost systemd-networkd[202]: eth0: Gained IPv6LL | |
Aug 22 22:51:22 localhost systemd-networkd[202]: eth0: Acquiring DHCPv6 lease | |
Aug 22 22:51:22 localhost systemd-networkd[202]: DHCPv6 CLIENT: Started in Information request mode | |
Aug 22 22:51:22 localhost systemd-networkd[202]: eth0: Discovering IPv6 routers | |
Aug 22 22:51:22 localhost systemd-networkd[202]: NDisc CLIENT: Start Router Solicitation | |
Aug 22 22:51:22 localhost systemd-networkd[202]: NDisc CLIENT: Sent Router Solicitation | |
Aug 22 22:51:22 localhost systemd-networkd[202]: DHCPv6 CLIENT: Sent INFORMATION-REQUEST | |
Aug 22 22:51:22 localhost systemd-networkd[202]: DHCPv6 CLIENT: Next retransmission in 903ms | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Timeout reached on transaction 65076. | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Retrying transaction 65076. | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Excercising transaction 65076 for <linux. IN ANY> on scope llmnr on eth0/AF_INET6. | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Sending query packet with id 65076 on interface 2/AF_INET6. | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Got LLMNR query packet for id 65076 | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Sending response packet with id 65076 on interface 2/AF_INET6. | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Got LLMNR reply packet for id 65076 | |
Aug 22 22:51:22 localhost systemd-resolved[203]: Processing incoming packet on transaction 65076. | |
Aug 22 22:51:22 localhost ignition[209]: failed to fetch http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa: Get http://bootcfg.mgt.tite.lan:8080/ignition?uuid=bb264947-1e45-4f14-a027-b13918bdbce3&mac=52-54-00-91-cc-aa: dial tcp: lookup bootcfg.mgt.tite.lan on [::1]:53: read udp [::1]:40721->[::1]:53: read: connection refused | |
Aug 22 22:51:23 localhost systemd-resolved[203]: Timeout reached on transaction 65076. | |
Aug 22 22:51:23 localhost systemd-resolved[203]: Retrying transaction 65076. | |
Aug 22 22:51:23 localhost systemd-resolved[203]: Excercising transaction 65076 for <linux. IN ANY> on scope llmnr on eth0/AF_INET6. | |
Aug 22 22:51:23 localhost systemd-resolved[203]: Sending query packet with id 65076 on interface 2/AF_INET6. | |
Aug 22 22:51:23 localhost systemd-resolved[203]: Got LLMNR query packet for id 65076 | |
Aug 22 22:51:23 localhost systemd-resolved[203]: Sending response packet with id 65076 on interface 2/AF_INET6. | |
Aug 22 22:51:23 localhost systemd-resolved[203]: Got LLMNR reply packet for id 65076 | |
Aug 22 22:51:23 localhost systemd-resolved[203]: Processing incoming packet on transaction 65076. | |
Aug 22 22:51:23 localhost systemd-resolved[203]: Timeout reached on transaction 65076. | |
Aug 22 22:51:23 localhost systemd-resolved[203]: Retrying transaction 65076. | |
Aug 22 22:51:23 localhost systemd-resolved[203]: Excercising transaction 65076 for <linux. IN ANY> on scope llmnr on eth0/AF_INET6. | |
Aug 22 22:51:23 localhost systemd-resolved[203]: Sending query packet with id 65076 on interface 2/AF_INET6. | |
Aug 22 22:51:23 localhost systemd-resolved[203]: Got LLMNR query packet for id 65076 | |
Aug 22 22:51:23 localhost systemd-resolved[203]: Sending response packet with id 65076 on interface 2/AF_INET6. | |
Aug 22 22:51:23 localhost systemd-resolved[203]: Got LLMNR reply packet for id 65076 | |
Aug 22 22:51:23 localhost systemd-resolved[203]: Processing incoming packet on transaction 65076. | |
Aug 22 22:51:23 localhost systemd-networkd[202]: DHCPv6 CLIENT: Sent INFORMATION-REQUEST | |
Aug 22 22:51:23 localhost systemd-networkd[202]: DHCPv6 CLIENT: Next retransmission in 1s | |
Aug 22 22:51:23 localhost systemd-resolved[203]: Timeout reached on transaction 65076. | |
Aug 22 22:51:23 localhost systemd-resolved[203]: Retrying transaction 65076. | |
Aug 22 22:51:23 localhost systemd-resolved[203]: Transaction 65076 for <linux. IN ANY> on scope llmnr on eth0/AF_INET6 now complete with <attempts-max-reached> from none (unsigned). | |
Aug 22 22:51:23 localhost systemd-resolved[203]: Record linux. IN AAAA fe80::5054:ff:fe91:ccaa successfully probed. | |
Aug 22 22:51:23 localhost systemd-resolved[203]: Freeing transaction 65076. | |
Aug 22 22:51:25 localhost systemd-networkd[202]: Failed to connect to bus, trying again in 5s: No such file or directory | |
Aug 22 22:51:25 localhost systemd-resolved[203]: Failed to connect to bus, trying again in 5s: No such file or directory | |
Aug 22 22:51:25 localhost systemd-networkd[202]: DHCPv6 CLIENT: Sent INFORMATION-REQUEST | |
Aug 22 22:51:25 localhost systemd-networkd[202]: DHCPv6 CLIENT: Next retransmission in 3s | |
Aug 22 22:51:26 localhost ignition[209]: GET result: OK | |
Aug 22 22:51:26 localhost systemd[1]: libmount event [rescan: no] | |
Aug 22 22:51:26 localhost ignition[209]: GET result: OK | |
Aug 22 22:51:26 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:26 localhost ignition[209]: fetched config: {Ignition:{Version:{Major:2 Minor:0 Patch:0 PreRelease: Metadata:} Config:{Append:[] Replace:<nil>}} Storage:{Disks:[] Arrays:[] Filesystems:[{Name:rootfs Mount:0xc8200d5b00 Path:<nil>}] Files:[{Filesystem:rootfs Path:/etc/flannel/options.env Contents:{Compression: Source:data:,FLANNELD_ETCD_ENDPOINTS%3Dhttp%3A%2F%2Fkube-master.lab1.tite.lan%3A2379%0A Verification:{Hash:<nil>}} Mode:0 User:{Id:0} Group:{Id:0}}]} Systemd:{Units:[{Name:etcd2.service Enable:true Mask:false Contents: DropIns:[{Name:40-etcd-cluster.conf Contents:[Service] | |
Environment="ETCD_NAME=node1" | |
Environment="ETCD_ADVERTISE_CLIENT_URLS=http://kube-master.lab1.tite.lan:2379" | |
Environment="ETCD_INITIAL_ADVERTISE_PEER_URLS=http://kube-master.lab1.tite.lan:2380" | |
Environment="ETCD_LISTEN_CLIENT_URLS=http://0.0.0.0:2379" | |
Environment="ETCD_LISTEN_PEER_URLS=http://kube-master.lab1.tite.lan:2380" | |
Environment="ETCD_INITIAL_CLUSTER=node1=http://kube-master.lab1.tite.lan:2380" | |
Environment="ETCD_STRICT_RECONFIG_CHECK=true" | |
}]}]} Networkd:{Units:[]} Passwd:{Users:[{Name:core PasswordHash: SSHAuthorizedKeys:[ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDRk6/xTRumdiCTCukoKuZEfYuh7+I6yDUtBTIRX8ES5OrgRADCImfRBoBKbQW9O75k1j5loHW9BExLkM8RThJ1tu0LbeCepPYkmy+pgD7pbrAL8DAMSUTNbQAnNxCuKc+EmryyQMKDHB/HI4dsHfcx+HgQ3cjUyRu/MMM2FVV/izB6knFVwMITxAlFhscdrrw7qRdC1HL0Ax/a7VhF/OGOaIX7QYsjeI0Q1E1yS4kQA4SMwm5cggcPgRDuI2qbOLs3KY1E9AzJ+gVZR0krFFe5cfaKLdM/Ap1kevlXNchLWs4S+qRbT1osi4zvyZwuIq0R1efawpmhjgRugphbh26B [email protected]] Create:<nil>}] Groups:[]}} | |
Aug 22 22:51:26 localhost ignition[209]: disks: createFilesystems: op(1): [started] waiting for devices [/dev/disk/by-label/ROOT] | |
Aug 22 22:51:26 localhost kernel: audit_printk_skb: 12 callbacks suppressed | |
Aug 22 22:51:26 localhost kernel: audit: type=1130 audit(1471906286.213:15): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=ignition-disks comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:26 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=ignition-disks comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:26 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:26 localhost ignition[209]: disks: createFilesystems: op(1): [finished] waiting for devices [/dev/disk/by-label/ROOT] | |
Aug 22 22:51:26 localhost systemd[1]: Got message type=method_call sender=n/a destination=org.freedesktop.DBus object=/org/freedesktop/DBus interface=org.freedesktop.DBus member=AddMatch cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Unprocessed message call sender=n/a object=/org/freedesktop/DBus interface=org.freedesktop.DBus member=AddMatch | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=error sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=1 reply_cookie=1 error=Unknown object '/org/freedesktop/DBus'. | |
Aug 22 22:51:26 localhost systemd[1]: Got message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=StartUnit cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: dev-disk-by\x2dlabel-ROOT.device: Trying to enqueue job dev-disk-by\x2dlabel-ROOT.device/start/replace | |
Aug 22 22:51:26 localhost systemd[1]: dev-disk-by\x2dlabel-ROOT.device: Installed new job dev-disk-by\x2dlabel-ROOT.device/start as 56 | |
Aug 22 22:51:26 localhost systemd[1]: dev-disk-by\x2dlabel-ROOT.device: Enqueued job dev-disk-by\x2dlabel-ROOT.device/start as 56 | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=method_return sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=1 reply_cookie=1 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=2 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=2 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: dev-disk-by\x2dlabel-ROOT.device: Job dev-disk-by\x2dlabel-ROOT.device/start finished, result=done | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobRemoved cookie=3 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobRemoved cookie=3 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Received SIGCHLD from PID 209 (ignition). | |
Aug 22 22:51:26 localhost systemd[1]: Child 209 (ignition) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:26 localhost systemd[1]: ignition-disks.service: Child 209 belongs to ignition-disks.service | |
Aug 22 22:51:26 localhost systemd[1]: ignition-disks.service: Main process exited, code=exited, status=0/SUCCESS | |
Aug 22 22:51:26 localhost systemd[1]: ignition-disks.service: Changed start -> dead | |
Aug 22 22:51:26 localhost systemd[1]: ignition-disks.service: Job ignition-disks.service/start finished, result=done | |
Aug 22 22:51:26 localhost systemd[1]: Started Ignition (disks). | |
Aug 22 22:51:26 localhost systemd[1]: Failed to send job remove signal for 32: Connection reset by peer | |
Aug 22 22:51:26 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=ignition-disks comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:26 localhost systemd[1]: ignition-disks.service: cgroup is empty | |
Aug 22 22:51:26 localhost systemd[1]: ignition-disks.service: Failed to send unit change signal for ignition-disks.service: Transport endpoint is not connected | |
Aug 22 22:51:26 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:26 localhost kernel: audit: type=1131 audit(1471906286.238:16): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=ignition-disks comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:26 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:26 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:26 localhost systemd-cgroups-agent[284]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Got message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:26 localhost systemd[1]: local-fs-pre.target changed dead -> active | |
Aug 22 22:51:26 localhost systemd[1]: local-fs-pre.target: Job local-fs-pre.target/start finished, result=done | |
Aug 22 22:51:26 localhost systemd[1]: Reached target Local File Systems (Pre). | |
Aug 22 22:51:26 localhost systemd[1]: sysroot.mount: About to execute: /bin/mount tmpfs /sysroot -t tmpfs -o rw | |
Aug 22 22:51:26 localhost systemd[1]: sysroot.mount: Forked /bin/mount as 285 | |
Aug 22 22:51:26 localhost systemd[1]: sysroot.mount: Changed dead -> mounting | |
Aug 22 22:51:26 localhost systemd[1]: Mounting /sysroot... | |
Aug 22 22:51:26 localhost systemd[1]: local-fs.target changed dead -> active | |
Aug 22 22:51:26 localhost systemd[1]: local-fs.target: Job local-fs.target/start finished, result=done | |
Aug 22 22:51:26 localhost systemd[1]: Reached target Local File Systems. | |
Aug 22 22:51:26 localhost systemd[1]: sysinit.target changed dead -> active | |
Aug 22 22:51:26 localhost systemd[1]: sysinit.target: Job sysinit.target/start finished, result=done | |
Aug 22 22:51:26 localhost systemd[1]: Reached target System Initialization. | |
Aug 22 22:51:26 localhost systemd[285]: sysroot.mount: Executing: /bin/mount tmpfs /sysroot -t tmpfs -o rw | |
Aug 22 22:51:26 localhost systemd[1]: basic.target changed dead -> active | |
Aug 22 22:51:26 localhost systemd[1]: basic.target: Job basic.target/start finished, result=done | |
Aug 22 22:51:26 localhost systemd[1]: Reached target Basic System. | |
Aug 22 22:51:26 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:26 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:26 localhost systemd[1]: libmount event [rescan: yes] | |
Aug 22 22:51:26 localhost systemd[1]: sysroot.mount: Changed mounting -> mounting-done | |
Aug 22 22:51:26 localhost systemd[1]: sysroot.mount: Job sysroot.mount/start finished, result=done | |
Aug 22 22:51:26 localhost systemd[1]: Mounted /sysroot. | |
Aug 22 22:51:26 localhost systemd[1]: Received SIGCHLD from PID 285 (mount). | |
Aug 22 22:51:26 localhost systemd[1]: Child 285 (mount) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:26 localhost systemd[1]: sysroot.mount: Child 285 belongs to sysroot.mount | |
Aug 22 22:51:26 localhost systemd[1]: sysroot.mount: Mount process exited, code=exited status=0 | |
Aug 22 22:51:26 localhost systemd[1]: sysroot.mount: Changed mounting-done -> mounted | |
Aug 22 22:51:26 localhost systemd[1]: remount-sysroot.service: ConditionPathIsReadWrite=!/sysroot failed. | |
Aug 22 22:51:26 localhost systemd[1]: remount-sysroot.service: Starting requested but condition failed. Not starting unit. | |
Aug 22 22:51:26 localhost systemd[1]: remount-sysroot.service: Job remount-sysroot.service/start finished, result=done | |
Aug 22 22:51:26 localhost systemd[1]: sysroot-usr.mount: Failed to check symlink /sysroot/usr, ignoring: No such file or directory | |
Aug 22 22:51:26 localhost systemd[1]: sysroot-usr.mount: About to execute: /bin/mount /usr.squashfs /sysroot/usr -t squashfs | |
Aug 22 22:51:26 localhost systemd[1]: sysroot-usr.mount: Forked /bin/mount as 287 | |
Aug 22 22:51:26 localhost systemd[287]: sysroot-usr.mount: Executing: /bin/mount /usr.squashfs /sysroot/usr -t squashfs | |
Aug 22 22:51:26 localhost systemd[1]: sysroot-usr.mount: Changed dead -> mounting | |
Aug 22 22:51:26 localhost systemd[1]: Mounting /sysroot/usr... | |
Aug 22 22:51:26 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:26 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:26 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:26 localhost systemd-cgroups-agent[286]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Got message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 879 queued, 'add' 'module' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: Validate module index | |
Aug 22 22:51:26 localhost systemd-udevd[194]: Check if link configuration needs reloading. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 879 forked new worker [289] | |
Aug 22 22:51:26 localhost systemd-udevd[289]: seq 879 running | |
Aug 22 22:51:26 localhost systemd-udevd[289]: passed device to netlink monitor 0x55a7def15ab0 | |
Aug 22 22:51:26 localhost systemd-udevd[289]: seq 879 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[289]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[289]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [289] exited | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 880 queued, 'add' 'misc' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 880 forked new worker [290] | |
Aug 22 22:51:26 localhost systemd-udevd[290]: seq 880 running | |
Aug 22 22:51:26 localhost systemd-udevd[290]: GROUP 6 /usr/lib64/udev/rules.d/50-udev-default.rules:65 | |
Aug 22 22:51:26 localhost systemd-udevd[290]: handling device node '/dev/loop-control', devnum=c10:237, mode=0660, uid=0, gid=6 | |
Aug 22 22:51:26 localhost systemd-udevd[290]: preserve permissions /dev/loop-control, 020660, uid=0, gid=6 | |
Aug 22 22:51:26 localhost systemd-udevd[290]: creating symlink '/dev/char/10:237' to '../loop-control' | |
Aug 22 22:51:26 localhost systemd-udevd[290]: created empty file '/run/udev/data/c10:237' for '/devices/virtual/misc/loop-control' | |
Aug 22 22:51:26 localhost systemd-udevd[290]: passed device to netlink monitor 0x55a7def025d0 | |
Aug 22 22:51:26 localhost systemd-udevd[290]: seq 880 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[290]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[290]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [290] exited | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 881 queued, 'add' 'bdi' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 881 forked new worker [292] | |
Aug 22 22:51:26 localhost systemd-udevd[292]: seq 881 running | |
Aug 22 22:51:26 localhost systemd-udevd[292]: passed device to netlink monitor 0x55a7def1eb60 | |
Aug 22 22:51:26 localhost systemd-udevd[292]: seq 881 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[292]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[292]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [292] exited | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 882 queued, 'add' 'block' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 882 forked new worker [293] | |
Aug 22 22:51:26 localhost systemd-udevd[293]: seq 882 running | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 883 queued, 'add' 'bdi' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 883 forked new worker [295] | |
Aug 22 22:51:26 localhost systemd-udevd[295]: seq 883 running | |
Aug 22 22:51:26 localhost systemd-udevd[295]: passed device to netlink monitor 0x55a7def15ab0 | |
Aug 22 22:51:26 localhost systemd-udevd[295]: seq 883 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 884 queued, 'add' 'block' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: passed 188 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:26 localhost systemd-udevd[295]: seq 884 running | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 885 queued, 'add' 'bdi' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 885 forked new worker [297] | |
Aug 22 22:51:26 localhost systemd-udevd[297]: seq 885 running | |
Aug 22 22:51:26 localhost systemd-udevd[297]: passed device to netlink monitor 0x55a7def18ca0 | |
Aug 22 22:51:26 localhost systemd-udevd[297]: seq 885 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 886 queued, 'add' 'block' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: passed 188 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:26 localhost systemd-udevd[297]: seq 886 running | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 887 queued, 'add' 'bdi' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 887 forked new worker [299] | |
Aug 22 22:51:26 localhost systemd-udevd[299]: seq 887 running | |
Aug 22 22:51:26 localhost systemd-udevd[299]: passed device to netlink monitor 0x55a7def1d130 | |
Aug 22 22:51:26 localhost systemd-udevd[299]: seq 887 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 888 queued, 'add' 'block' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: passed 188 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:26 localhost systemd-udevd[299]: seq 888 running | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 889 queued, 'add' 'bdi' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 889 forked new worker [301] | |
Aug 22 22:51:26 localhost systemd-udevd[301]: seq 889 running | |
Aug 22 22:51:26 localhost systemd-udevd[301]: passed device to netlink monitor 0x55a7def22570 | |
Aug 22 22:51:26 localhost systemd-udevd[301]: seq 889 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 890 queued, 'add' 'block' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: passed 188 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:26 localhost systemd-udevd[301]: seq 890 running | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 891 queued, 'add' 'bdi' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 891 forked new worker [303] | |
Aug 22 22:51:26 localhost systemd-udevd[303]: seq 891 running | |
Aug 22 22:51:26 localhost systemd-udevd[303]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:26 localhost systemd-udevd[303]: seq 891 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 892 queued, 'add' 'block' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: passed 188 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:26 localhost systemd-udevd[303]: seq 892 running | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 893 queued, 'add' 'bdi' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 893 forked new worker [305] | |
Aug 22 22:51:26 localhost systemd-udevd[305]: seq 893 running | |
Aug 22 22:51:26 localhost systemd-udevd[305]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:26 localhost systemd-udevd[305]: seq 893 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 894 queued, 'add' 'block' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: passed 188 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:26 localhost systemd-udevd[305]: seq 894 running | |
Aug 22 22:51:26 localhost kernel: loop: module loaded | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 895 queued, 'add' 'bdi' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 895 forked new worker [307] | |
Aug 22 22:51:26 localhost systemd-udevd[307]: seq 895 running | |
Aug 22 22:51:26 localhost systemd-udevd[307]: passed device to netlink monitor 0x55a7def30170 | |
Aug 22 22:51:26 localhost systemd-udevd[307]: seq 895 processed | |
Aug 22 22:51:26 localhost systemd-udevd[293]: GROUP 6 /usr/lib64/udev/rules.d/50-udev-default.rules:55 | |
Aug 22 22:51:26 localhost systemd-udevd[293]: IMPORT builtin 'blkid' /usr/lib64/udev/rules.d/60-persistent-storage.rules:66 | |
Aug 22 22:51:26 localhost systemd-udevd[293]: probe /dev/loop0 raid offset=0 | |
Aug 22 22:51:26 localhost systemd-udevd[293]: handling device node '/dev/loop0', devnum=b7:0, mode=0660, uid=0, gid=6 | |
Aug 22 22:51:26 localhost systemd-udevd[293]: set permissions /dev/loop0, 060660, uid=0, gid=6 | |
Aug 22 22:51:26 localhost systemd-udevd[293]: creating symlink '/dev/block/7:0' to '../loop0' | |
Aug 22 22:51:26 localhost systemd-udevd[293]: created db file '/run/udev/data/b7:0' for '/devices/virtual/block/loop0' | |
Aug 22 22:51:26 localhost systemd-udevd[295]: GROUP 6 /usr/lib64/udev/rules.d/50-udev-default.rules:55 | |
Aug 22 22:51:26 localhost systemd-udevd[295]: IMPORT builtin 'blkid' /usr/lib64/udev/rules.d/60-persistent-storage.rules:66 | |
Aug 22 22:51:26 localhost systemd-udevd[295]: probe /dev/loop1 raid offset=0 | |
Aug 22 22:51:26 localhost systemd-udevd[295]: handling device node '/dev/loop1', devnum=b7:1, mode=0660, uid=0, gid=6 | |
Aug 22 22:51:26 localhost systemd-udevd[295]: set permissions /dev/loop1, 060660, uid=0, gid=6 | |
Aug 22 22:51:26 localhost systemd-udevd[295]: creating symlink '/dev/block/7:1' to '../loop1' | |
Aug 22 22:51:26 localhost systemd-udevd[295]: created db file '/run/udev/data/b7:1' for '/devices/virtual/block/loop1' | |
Aug 22 22:51:26 localhost systemd-udevd[297]: GROUP 6 /usr/lib64/udev/rules.d/50-udev-default.rules:55 | |
Aug 22 22:51:26 localhost systemd-udevd[297]: IMPORT builtin 'blkid' /usr/lib64/udev/rules.d/60-persistent-storage.rules:66 | |
Aug 22 22:51:26 localhost systemd-udevd[297]: probe /dev/loop2 raid offset=0 | |
Aug 22 22:51:26 localhost systemd-udevd[297]: handling device node '/dev/loop2', devnum=b7:2, mode=0660, uid=0, gid=6 | |
Aug 22 22:51:26 localhost systemd-udevd[297]: set permissions /dev/loop2, 060660, uid=0, gid=6 | |
Aug 22 22:51:26 localhost systemd-udevd[297]: creating symlink '/dev/block/7:2' to '../loop2' | |
Aug 22 22:51:26 localhost systemd-udevd[297]: created db file '/run/udev/data/b7:2' for '/devices/virtual/block/loop2' | |
Aug 22 22:51:26 localhost systemd-udevd[301]: GROUP 6 /usr/lib64/udev/rules.d/50-udev-default.rules:55 | |
Aug 22 22:51:26 localhost systemd-udevd[301]: IMPORT builtin 'blkid' /usr/lib64/udev/rules.d/60-persistent-storage.rules:66 | |
Aug 22 22:51:26 localhost systemd-udevd[301]: probe /dev/loop4 raid offset=0 | |
Aug 22 22:51:26 localhost systemd-udevd[301]: handling device node '/dev/loop4', devnum=b7:4, mode=0660, uid=0, gid=6 | |
Aug 22 22:51:26 localhost systemd-udevd[301]: set permissions /dev/loop4, 060660, uid=0, gid=6 | |
Aug 22 22:51:26 localhost systemd-udevd[301]: creating symlink '/dev/block/7:4' to '../loop4' | |
Aug 22 22:51:26 localhost systemd-udevd[301]: created db file '/run/udev/data/b7:4' for '/devices/virtual/block/loop4' | |
Aug 22 22:51:26 localhost systemd-udevd[299]: GROUP 6 /usr/lib64/udev/rules.d/50-udev-default.rules:55 | |
Aug 22 22:51:26 localhost systemd-udevd[299]: IMPORT builtin 'blkid' /usr/lib64/udev/rules.d/60-persistent-storage.rules:66 | |
Aug 22 22:51:26 localhost systemd-udevd[299]: probe /dev/loop3 raid offset=0 | |
Aug 22 22:51:26 localhost systemd-udevd[299]: handling device node '/dev/loop3', devnum=b7:3, mode=0660, uid=0, gid=6 | |
Aug 22 22:51:26 localhost systemd-udevd[299]: set permissions /dev/loop3, 060660, uid=0, gid=6 | |
Aug 22 22:51:26 localhost systemd-udevd[299]: creating symlink '/dev/block/7:3' to '../loop3' | |
Aug 22 22:51:26 localhost systemd-udevd[299]: created db file '/run/udev/data/b7:3' for '/devices/virtual/block/loop3' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 896 queued, 'add' 'block' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: passed 188 byte device to netlink monitor 0x55a7deefe510 | |
Aug 22 22:51:26 localhost kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher | |
Aug 22 22:51:26 localhost systemd-udevd[301]: passed device to netlink monitor 0x55a7def22570 | |
Aug 22 22:51:26 localhost systemd-udevd[301]: seq 890 processed | |
Aug 22 22:51:26 localhost systemd-udevd[295]: passed device to netlink monitor 0x55a7def15ab0 | |
Aug 22 22:51:26 localhost systemd-udevd[295]: seq 884 processed | |
Aug 22 22:51:26 localhost systemd-udevd[299]: passed device to netlink monitor 0x55a7def1d130 | |
Aug 22 22:51:26 localhost systemd-udevd[299]: seq 888 processed | |
Aug 22 22:51:26 localhost systemd-udevd[297]: passed device to netlink monitor 0x55a7def18ca0 | |
Aug 22 22:51:26 localhost systemd-udevd[297]: seq 886 processed | |
Aug 22 22:51:26 localhost systemd-udevd[293]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:26 localhost systemd-udevd[293]: seq 882 processed | |
Aug 22 22:51:26 localhost systemd-udevd[303]: GROUP 6 /usr/lib64/udev/rules.d/50-udev-default.rules:55 | |
Aug 22 22:51:26 localhost systemd-udevd[303]: IMPORT builtin 'blkid' /usr/lib64/udev/rules.d/60-persistent-storage.rules:66 | |
Aug 22 22:51:26 localhost systemd-udevd[303]: probe /dev/loop5 raid offset=0 | |
Aug 22 22:51:26 localhost systemd-udevd[303]: handling device node '/dev/loop5', devnum=b7:5, mode=0660, uid=0, gid=6 | |
Aug 22 22:51:26 localhost systemd-udevd[303]: set permissions /dev/loop5, 060660, uid=0, gid=6 | |
Aug 22 22:51:26 localhost systemd-udevd[303]: creating symlink '/dev/block/7:5' to '../loop5' | |
Aug 22 22:51:26 localhost systemd-udevd[303]: created db file '/run/udev/data/b7:5' for '/devices/virtual/block/loop5' | |
Aug 22 22:51:26 localhost systemd-udevd[305]: GROUP 6 /usr/lib64/udev/rules.d/50-udev-default.rules:55 | |
Aug 22 22:51:26 localhost systemd-udevd[305]: IMPORT builtin 'blkid' /usr/lib64/udev/rules.d/60-persistent-storage.rules:66 | |
Aug 22 22:51:26 localhost systemd-udevd[305]: probe /dev/loop6 raid offset=0 | |
Aug 22 22:51:26 localhost systemd-udevd[305]: handling device node '/dev/loop6', devnum=b7:6, mode=0660, uid=0, gid=6 | |
Aug 22 22:51:26 localhost systemd-udevd[305]: set permissions /dev/loop6, 060660, uid=0, gid=6 | |
Aug 22 22:51:26 localhost systemd-udevd[305]: creating symlink '/dev/block/7:6' to '../loop6' | |
Aug 22 22:51:26 localhost systemd-udevd[305]: created db file '/run/udev/data/b7:6' for '/devices/virtual/block/loop6' | |
Aug 22 22:51:26 localhost systemd-udevd[307]: seq 896 running | |
Aug 22 22:51:26 localhost systemd-udevd[307]: GROUP 6 /usr/lib64/udev/rules.d/50-udev-default.rules:55 | |
Aug 22 22:51:26 localhost systemd-udevd[307]: IMPORT builtin 'blkid' /usr/lib64/udev/rules.d/60-persistent-storage.rules:66 | |
Aug 22 22:51:26 localhost systemd-udevd[307]: probe /dev/loop7 raid offset=0 | |
Aug 22 22:51:26 localhost systemd-udevd[307]: handling device node '/dev/loop7', devnum=b7:7, mode=0660, uid=0, gid=6 | |
Aug 22 22:51:26 localhost systemd-udevd[307]: set permissions /dev/loop7, 060660, uid=0, gid=6 | |
Aug 22 22:51:26 localhost systemd-udevd[307]: creating symlink '/dev/block/7:7' to '../loop7' | |
Aug 22 22:51:26 localhost systemd-udevd[307]: created db file '/run/udev/data/b7:7' for '/devices/virtual/block/loop7' | |
Aug 22 22:51:26 localhost systemd-udevd[303]: passed device to netlink monitor 0x55a7def0cd50 | |
Aug 22 22:51:26 localhost systemd-udevd[303]: seq 892 processed | |
Aug 22 22:51:26 localhost systemd-udevd[305]: passed device to netlink monitor 0x55a7def19f10 | |
Aug 22 22:51:26 localhost systemd-udevd[305]: seq 894 processed | |
Aug 22 22:51:26 localhost systemd-udevd[307]: passed device to netlink monitor 0x55a7def30170 | |
Aug 22 22:51:26 localhost systemd-udevd[307]: seq 896 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[295]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[295]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[299]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[299]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[301]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[301]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[297]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[297]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [295] exited | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [297] exited | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [299] exited | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [301] exited | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[293]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[293]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [293] exited | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 897 queued, 'change' 'block' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 897 forked new worker [310] | |
Aug 22 22:51:26 localhost systemd-udevd[303]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[303]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [303] exited | |
Aug 22 22:51:26 localhost systemd-udevd[305]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[305]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [305] exited | |
Aug 22 22:51:26 localhost systemd-udevd[307]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[307]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [307] exited | |
Aug 22 22:51:26 localhost systemd-udevd[310]: seq 897 running | |
Aug 22 22:51:26 localhost systemd-udevd[310]: IMPORT builtin 'blkid' /usr/lib64/udev/rules.d/60-persistent-storage.rules:66 | |
Aug 22 22:51:26 localhost systemd-udevd[310]: probe /dev/loop0 raid offset=0 | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 898 queued, 'add' 'module' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 898 forked new worker [311] | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 899 queued, 'add' 'slab' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 899 forked new worker [312] | |
Aug 22 22:51:26 localhost systemd-udevd[312]: seq 899 running | |
Aug 22 22:51:26 localhost systemd-udevd[312]: passed device to netlink monitor 0x55a7def15ab0 | |
Aug 22 22:51:26 localhost systemd-udevd[312]: seq 899 processed | |
Aug 22 22:51:26 localhost systemd-udevd[310]: handling device node '/dev/loop0', devnum=b7:0, mode=0600, uid=0, gid=0 | |
Aug 22 22:51:26 localhost systemd[1]: libmount event [rescan: yes] | |
Aug 22 22:51:26 localhost systemd[1]: dev-loop0.device: Changed dead -> tentative | |
Aug 22 22:51:26 localhost systemd[1]: sysroot-usr.mount: Changed mounting -> mounting-done | |
Aug 22 22:51:26 localhost systemd[1]: sysroot-usr.mount: Job sysroot-usr.mount/start finished, result=done | |
Aug 22 22:51:26 localhost systemd[1]: Mounted /sysroot/usr. | |
Aug 22 22:51:26 localhost systemd[1]: Received SIGCHLD from PID 287 (mount). | |
Aug 22 22:51:26 localhost systemd[1]: Child 287 (mount) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:26 localhost systemd[1]: sysroot-usr.mount: Child 287 belongs to sysroot-usr.mount | |
Aug 22 22:51:26 localhost systemd[1]: sysroot-usr.mount: Mount process exited, code=exited status=0 | |
Aug 22 22:51:26 localhost systemd[1]: sysroot-usr.mount: Changed mounting-done -> mounted | |
Aug 22 22:51:26 localhost systemd[1]: initrd-root-fs.target: ConditionPathExists=/etc/initrd-release succeeded. | |
Aug 22 22:51:26 localhost systemd[1]: initrd-root-fs.target changed dead -> active | |
Aug 22 22:51:26 localhost systemd[1]: initrd-root-fs.target: Job initrd-root-fs.target/start finished, result=done | |
Aug 22 22:51:26 localhost systemd[1]: Reached target Initrd Root File System. | |
Aug 22 22:51:26 localhost systemd-udevd[311]: seq 898 running | |
Aug 22 22:51:26 localhost systemd-udevd[311]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:26 localhost systemd-udevd[311]: seq 898 processed | |
Aug 22 22:51:26 localhost systemd-udevd[310]: preserve already existing symlink '/dev/block/7:0' to '../loop0' | |
Aug 22 22:51:26 localhost systemd-udevd[310]: created db file '/run/udev/data/b7:0' for '/devices/virtual/block/loop0' | |
Aug 22 22:51:26 localhost systemd-udevd[310]: passed device to netlink monitor 0x55a7def18980 | |
Aug 22 22:51:26 localhost systemd-udevd[310]: seq 897 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[312]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[312]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [312] exited | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[310]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[310]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [310] exited | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[311]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[311]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [311] exited | |
Aug 22 22:51:26 localhost systemd[1]: initrd-setup-root.service: About to execute: /sbin/initrd-setup-root | |
Aug 22 22:51:26 localhost systemd[1]: initrd-setup-root.service: Forked /sbin/initrd-setup-root as 314 | |
Aug 22 22:51:26 localhost systemd[1]: initrd-setup-root.service: Changed dead -> start | |
Aug 22 22:51:26 localhost systemd[1]: Starting Root filesystem setup... | |
Aug 22 22:51:26 localhost systemd[1]: sys-devices-virtual-block-loop0.device: Changed dead -> plugged | |
Aug 22 22:51:26 localhost systemd[1]: dev-loop0.device: Changed tentative -> plugged | |
Aug 22 22:51:26 localhost systemd[314]: initrd-setup-root.service: Executing: /sbin/initrd-setup-root | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Reading config file "baselayout.conf". | |
Aug 22 22:51:26 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:26 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:26 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:26 localhost systemd-cgroups-agent[313]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Reading config file "baselayout-etc.conf". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Reading config file "baselayout-usr.conf". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Reading config file "baselayout-home.conf". | |
Aug 22 22:51:26 localhost systemd[1]: Got message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Reading config file "etc.conf". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Ignoring entry L! "/etc/resolv.conf" because --boot is not specified. | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Reading config file "etc-shadow.conf". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry d /sysroot/boot | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created directory "/sysroot/boot". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry d /sysroot/dev | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created directory "/sysroot/dev". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry d /sysroot/media | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created directory "/sysroot/media". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry d /sysroot/mnt | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created directory "/sysroot/mnt". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry d /sysroot/proc | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created directory "/sysroot/proc". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry d /sysroot/root | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created directory "/sysroot/root". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: "/sysroot/root" has right mode 40700 | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry d /sysroot/run | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created directory "/sysroot/run". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry d /sysroot/run/lock | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created directory "/sysroot/run/lock". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry d /sysroot/sys | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created directory "/sysroot/sys". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry d /sysroot/var | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created directory "/sysroot/var". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: "/sysroot/var" has right mode 40755 | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry d /sysroot/var/empty | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created directory "/sysroot/var/empty". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/var/lock | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/var/lock". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/var/run | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/var/run". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry d /sysroot/etc | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created directory "/sysroot/etc". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/etc/inputrc | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/etc/inputrc". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/etc/motd | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/etc/motd". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/etc/nsswitch.conf | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/etc/nsswitch.conf". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/etc/lsb-release | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/etc/lsb-release". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/etc/profile | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/etc/profile". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry d /sysroot/etc/profile.d | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created directory "/sysroot/etc/profile.d". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: "/sysroot/etc/profile.d" has right mode 40755 | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/etc/profile.d/coreos-profile.sh | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/etc/profile.d/coreos-profile.sh". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/etc/shells | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/etc/shells". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/etc/sudo.conf | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/etc/sudo.conf". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry d /sysroot/etc/vim | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created directory "/sysroot/etc/vim". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/etc/vim/vimrc | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/etc/vim/vimrc". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry d /sysroot/etc/sudoers.d | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created directory "/sysroot/etc/sudoers.d". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: "/sysroot/etc/sudoers.d" has right mode 40750 | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/bin | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/bin". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/lib64 | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/lib64". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/sbin | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/sbin". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/lib | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/lib". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry d /sysroot/home/core | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created directory "/sysroot/home/core". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: "/sysroot/home/core" has right mode 40755 | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: chown "/sysroot/home/core" to 500.500 | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry d /sysroot/home/core/.ssh | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created directory "/sysroot/home/core/.ssh". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: "/sysroot/home/core/.ssh" has right mode 40700 | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: chown "/sysroot/home/core/.ssh" to 500.500 | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/home/core/.bash_logout | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/home/core/.bash_logout". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/home/core/.bash_profile | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/home/core/.bash_profile". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/home/core/.bashrc | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/home/core/.bashrc". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/etc/os-release | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/etc/os-release". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/etc/localtime | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/etc/localtime". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/etc/mtab | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/etc/mtab". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/etc/limits | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/etc/limits". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/etc/login.access | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/etc/login.access". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/etc/login.defs | |
Aug 22 22:51:26 localhost kernel: audit: type=1130 audit(1471906286.366:17): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-setup-root comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:26 localhost kernel: audit: type=1131 audit(1471906286.368:18): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-setup-root comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:26 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-setup-root comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:26 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-setup-root comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/etc/login.defs". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/etc/securetty | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/etc/securetty". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry d /sysroot/etc/default | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created directory "/sysroot/etc/default". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Running create action for entry L /sysroot/etc/default/useradd | |
Aug 22 22:51:26 localhost systemd-tmpfiles[315]: Created symlink "/sysroot/etc/default/useradd". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[316]: Reading config file "baselayout-ldso.conf". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[316]: Running create action for entry L /sysroot/etc/ld.so.conf | |
Aug 22 22:51:26 localhost systemd-tmpfiles[316]: Created symlink "/sysroot/etc/ld.so.conf". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[317]: Reading config file "selinux-base.conf". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[317]: Running create action for entry d /sysroot/etc/selinux | |
Aug 22 22:51:26 localhost systemd-tmpfiles[317]: Created directory "/sysroot/etc/selinux". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[317]: Running create action for entry L /sysroot/etc/selinux/config | |
Aug 22 22:51:26 localhost systemd-tmpfiles[317]: Created symlink "/sysroot/etc/selinux/config". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[317]: Running create action for entry L /sysroot/etc/selinux/mcs | |
Aug 22 22:51:26 localhost systemd-tmpfiles[317]: Created symlink "/sysroot/etc/selinux/mcs". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[318]: Reading config file "libsemanage.conf". | |
Aug 22 22:51:26 localhost systemd-tmpfiles[318]: Running create action for entry L /sysroot/etc/selinux/semanage.conf | |
Aug 22 22:51:26 localhost systemd-tmpfiles[318]: Created symlink "/sysroot/etc/selinux/semanage.conf". | |
Aug 22 22:51:26 localhost systemd[1]: Received SIGCHLD from PID 314 (initrd-setup-ro). | |
Aug 22 22:51:26 localhost systemd[1]: Child 314 (initrd-setup-ro) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:26 localhost systemd[1]: initrd-setup-root.service: Child 314 belongs to initrd-setup-root.service | |
Aug 22 22:51:26 localhost systemd[1]: initrd-setup-root.service: Main process exited, code=exited, status=0/SUCCESS | |
Aug 22 22:51:26 localhost systemd[1]: initrd-setup-root.service: Changed start -> dead | |
Aug 22 22:51:26 localhost systemd[1]: initrd-setup-root.service: Job initrd-setup-root.service/start finished, result=done | |
Aug 22 22:51:26 localhost systemd[1]: Started Root filesystem setup. | |
Aug 22 22:51:26 localhost systemd[1]: initrd-setup-root.service: cgroup is empty | |
Aug 22 22:51:26 localhost ignition[326]: Ignition v0.8.0 | |
Aug 22 22:51:26 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:26 localhost ignition[326]: files: createUsers: op(1): [started] adding ssh keys to user "core" | |
Aug 22 22:51:26 localhost systemd-cgroups-agent[325]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost ignition[326]: files: createUsers: op(1): [finished] adding ssh keys to user "core" | |
Aug 22 22:51:26 localhost systemd[1]: Got message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost ignition[326]: files: createFilesystemsFiles: createFiles: op(2): [started] mounting "/dev/disk/by-label/ROOT" at "/tmp/ignition-files126103584" | |
Aug 22 22:51:26 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:26 localhost systemd[1]: ignition-files.service: About to execute: /usr/bin/ignition --root=/sysroot --oem=${OEM_ID} --stage=files | |
Aug 22 22:51:26 localhost systemd[1]: ignition-files.service: Forked /usr/bin/ignition as 326 | |
Aug 22 22:51:26 localhost systemd[1]: ignition-files.service: Changed dead -> start | |
Aug 22 22:51:26 localhost systemd[1]: Starting Ignition (files)... | |
Aug 22 22:51:26 localhost systemd[326]: ignition-files.service: Executing: /usr/bin/ignition --root=/sysroot --oem=pxe --stage=files | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 900 queued, 'add' 'module' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 900 forked new worker [339] | |
Aug 22 22:51:26 localhost systemd-udevd[339]: seq 900 running | |
Aug 22 22:51:26 localhost systemd-udevd[339]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:26 localhost systemd-udevd[339]: seq 900 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[339]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[339]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [339] exited | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 901 queued, 'add' 'slab' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 901 forked new worker [340] | |
Aug 22 22:51:26 localhost systemd-udevd[340]: seq 901 running | |
Aug 22 22:51:26 localhost systemd-udevd[340]: passed device to netlink monitor 0x55a7def025d0 | |
Aug 22 22:51:26 localhost systemd-udevd[340]: seq 901 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[340]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[340]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [340] exited | |
Aug 22 22:51:26 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:26 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 902 queued, 'add' 'module' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 902 forked new worker [341] | |
Aug 22 22:51:26 localhost systemd-udevd[341]: seq 902 running | |
Aug 22 22:51:26 localhost systemd-udevd[341]: passed device to netlink monitor 0x55a7def1eb60 | |
Aug 22 22:51:26 localhost systemd-udevd[341]: seq 902 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[341]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[341]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [341] exited | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 903 queued, 'add' 'slab' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 903 forked new worker [342] | |
Aug 22 22:51:26 localhost systemd-udevd[342]: seq 903 running | |
Aug 22 22:51:26 localhost systemd-udevd[342]: passed device to netlink monitor 0x55a7def169e0 | |
Aug 22 22:51:26 localhost systemd-udevd[342]: seq 903 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[342]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[342]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [342] exited | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 904 queued, 'add' 'slab' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 904 forked new worker [343] | |
Aug 22 22:51:26 localhost systemd-udevd[343]: seq 904 running | |
Aug 22 22:51:26 localhost systemd-udevd[343]: passed device to netlink monitor 0x55a7def15ab0 | |
Aug 22 22:51:26 localhost systemd-udevd[343]: seq 904 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[343]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[343]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [343] exited | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 905 queued, 'add' 'slab' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 905 forked new worker [344] | |
Aug 22 22:51:26 localhost systemd-udevd[344]: seq 905 running | |
Aug 22 22:51:26 localhost systemd-udevd[344]: passed device to netlink monitor 0x55a7def18980 | |
Aug 22 22:51:26 localhost systemd-udevd[344]: seq 905 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[344]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[344]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [344] exited | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 906 queued, 'add' 'slab' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 906 forked new worker [345] | |
Aug 22 22:51:26 localhost systemd-udevd[345]: seq 906 running | |
Aug 22 22:51:26 localhost systemd-udevd[345]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:26 localhost systemd-udevd[345]: seq 906 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[345]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[345]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [345] exited | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 907 queued, 'add' 'module' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 907 forked new worker [346] | |
Aug 22 22:51:26 localhost systemd-udevd[346]: seq 907 running | |
Aug 22 22:51:26 localhost systemd-udevd[346]: passed device to netlink monitor 0x55a7def12230 | |
Aug 22 22:51:26 localhost systemd-udevd[346]: seq 907 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[346]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[346]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [346] exited | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 908 queued, 'add' 'module' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 908 forked new worker [347] | |
Aug 22 22:51:26 localhost systemd-udevd[347]: seq 908 running | |
Aug 22 22:51:26 localhost systemd-udevd[347]: passed device to netlink monitor 0x55a7def025d0 | |
Aug 22 22:51:26 localhost systemd-udevd[347]: seq 908 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[347]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[347]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [347] exited | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 909 queued, 'add' 'slab' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 909 forked new worker [348] | |
Aug 22 22:51:26 localhost systemd-udevd[348]: seq 909 running | |
Aug 22 22:51:26 localhost systemd-udevd[348]: passed device to netlink monitor 0x55a7def1eb60 | |
Aug 22 22:51:26 localhost systemd-udevd[348]: seq 909 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[348]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[348]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [348] exited | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 910 queued, 'add' 'slab' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 910 forked new worker [349] | |
Aug 22 22:51:26 localhost systemd-udevd[349]: seq 910 running | |
Aug 22 22:51:26 localhost systemd-udevd[349]: passed device to netlink monitor 0x55a7def169e0 | |
Aug 22 22:51:26 localhost systemd-udevd[349]: seq 910 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[349]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[349]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [349] exited | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 911 queued, 'add' 'slab' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 911 forked new worker [350] | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 912 queued, 'add' 'slab' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 912 forked new worker [351] | |
Aug 22 22:51:26 localhost systemd-udevd[351]: seq 912 running | |
Aug 22 22:51:26 localhost systemd-udevd[351]: passed device to netlink monitor 0x55a7def18980 | |
Aug 22 22:51:26 localhost systemd-udevd[351]: seq 912 processed | |
Aug 22 22:51:26 localhost systemd-udevd[350]: seq 911 running | |
Aug 22 22:51:26 localhost systemd-udevd[350]: passed device to netlink monitor 0x55a7def15ab0 | |
Aug 22 22:51:26 localhost systemd-udevd[350]: seq 911 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[351]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[351]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [351] exited | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[350]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[350]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [350] exited | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 913 queued, 'add' 'slab' | |
Aug 22 22:51:26 localhost systemd-udevd[194]: seq 913 forked new worker [354] | |
Aug 22 22:51:26 localhost systemd-udevd[354]: seq 913 running | |
Aug 22 22:51:26 localhost systemd-udevd[354]: passed device to netlink monitor 0x55a7def15d60 | |
Aug 22 22:51:26 localhost systemd-udevd[354]: seq 913 processed | |
Aug 22 22:51:26 localhost systemd-udevd[194]: cleanup idle workers | |
Aug 22 22:51:26 localhost systemd-udevd[354]: Unload module index | |
Aug 22 22:51:26 localhost systemd-udevd[354]: Unloaded link configuration context. | |
Aug 22 22:51:26 localhost systemd-udevd[194]: worker [354] exited | |
Aug 22 22:51:26 localhost kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) | |
Aug 22 22:51:26 localhost systemd[1]: libmount event [rescan: yes] | |
Aug 22 22:51:26 localhost systemd[1]: tmp-ignition\x2dfiles126103584.mount: Changed dead -> mounted | |
Aug 22 22:51:26 localhost ignition[326]: files: createFilesystemsFiles: createFiles: op(2): [finished] mounting "/dev/disk/by-label/ROOT" at "/tmp/ignition-files126103584" | |
Aug 22 22:51:26 localhost ignition[326]: files: createFilesystemsFiles: createFiles: op(3): [started] writing file "/etc/flannel/options.env" | |
Aug 22 22:51:26 localhost ignition[326]: files: createFilesystemsFiles: createFiles: op(3): [finished] writing file "/etc/flannel/options.env" | |
Aug 22 22:51:26 localhost systemd[1]: libmount event [rescan: yes] | |
Aug 22 22:51:26 localhost ignition[326]: files: createFilesystemsFiles: createFiles: op(4): [started] unmounting "/dev/disk/by-label/ROOT" at "/tmp/ignition-files126103584" | |
Aug 22 22:51:26 localhost systemd[1]: tmp-ignition\x2dfiles126103584.mount: Changed mounted -> dead | |
Aug 22 22:51:26 localhost systemd[1]: tmp-ignition\x2dfiles126103584.mount: Collecting. | |
Aug 22 22:51:26 localhost systemd-networkd[202]: NDisc CLIENT: Sent Router Solicitation | |
Aug 22 22:51:26 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=ignition-files comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:26 localhost systemd[1]: Received SIGCHLD from PID 326 (ignition). | |
Aug 22 22:51:26 localhost ignition[326]: files: createFilesystemsFiles: createFiles: op(4): [finished] unmounting "/dev/disk/by-label/ROOT" at "/tmp/ignition-files126103584" | |
Aug 22 22:51:26 localhost kernel: audit: type=1130 audit(1471906286.947:19): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=ignition-files comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:26 localhost kernel: audit: type=1131 audit(1471906286.956:20): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=ignition-files comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:26 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=ignition-files comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:26 localhost systemd[1]: Child 326 (ignition) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:26 localhost ignition[326]: files: op(5): [started] writing unit "etcd2.service" | |
Aug 22 22:51:26 localhost systemd[1]: ignition-files.service: Child 326 belongs to ignition-files.service | |
Aug 22 22:51:26 localhost ignition[326]: files: op(5): op(6): [started] writing dropin "40-etcd-cluster.conf" at "etc/systemd/system/etcd2.service.d/40-etcd-cluster.conf" | |
Aug 22 22:51:26 localhost systemd[1]: ignition-files.service: Main process exited, code=exited, status=0/SUCCESS | |
Aug 22 22:51:26 localhost ignition[326]: files: op(5): op(6): [finished] writing dropin "40-etcd-cluster.conf" at "etc/systemd/system/etcd2.service.d/40-etcd-cluster.conf" | |
Aug 22 22:51:26 localhost systemd[1]: ignition-files.service: Changed start -> dead | |
Aug 22 22:51:26 localhost ignition[326]: files: op(5): [finished] writing unit "etcd2.service" | |
Aug 22 22:51:26 localhost systemd[1]: ignition-files.service: Job ignition-files.service/start finished, result=done | |
Aug 22 22:51:26 localhost ignition[326]: files: op(7): [started] enabling unit "etcd2.service" | |
Aug 22 22:51:26 localhost systemd[1]: Started Ignition (files). | |
Aug 22 22:51:26 localhost systemctl[357]: Sent message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=Reload cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost ignition[326]: files: op(7): [finished] enabling unit "etcd2.service" | |
Aug 22 22:51:26 localhost systemd[1]: ignition-files.service: cgroup is empty | |
Aug 22 22:51:26 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:26 localhost systemd-cgroups-agent[356]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Got message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:26 localhost systemd[1]: initrd-parse-etc.service: ConditionPathExists=/etc/initrd-release succeeded. | |
Aug 22 22:51:26 localhost systemd[1]: initrd-parse-etc.service: About to execute: /usr/bin/systemctl daemon-reload | |
Aug 22 22:51:26 localhost systemd[1]: initrd-parse-etc.service: Forked /usr/bin/systemctl as 357 | |
Aug 22 22:51:26 localhost systemd[1]: initrd-parse-etc.service: Changed dead -> start-pre | |
Aug 22 22:51:26 localhost systemd[1]: Starting Reload Configuration from the Real Root... | |
Aug 22 22:51:26 localhost systemd[357]: initrd-parse-etc.service: Executing: /usr/bin/systemctl daemon-reload | |
Aug 22 22:51:26 localhost systemd[1]: ignition.target changed dead -> active | |
Aug 22 22:51:26 localhost systemd[1]: ignition.target: Job ignition.target/start finished, result=done | |
Aug 22 22:51:26 localhost systemd[1]: Reached target ignition.target. | |
Aug 22 22:51:26 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:26 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:26 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:26 localhost systemd[1]: Got message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=Reload cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Reloading. | |
Aug 22 22:51:26 localhost systemd[1]: Failed to open configuration file '/etc/systemd/system.conf': No such file or directory | |
Aug 22 22:51:26 localhost systemd[1]: Serializing state to /run/systemd | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=Reloading cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=2 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=3 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=4 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=5 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=6 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=7 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=8 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=9 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd-fstab-generator[363]: Could not find a root= entry on the kernel command line. | |
Aug 22 22:51:27 localhost systemd-fstab-generator[363]: Parsing /etc/fstab | |
Aug 22 22:51:27 localhost systemd-fstab-generator[363]: Parsing /sysroot/etc/fstab | |
Aug 22 22:51:27 localhost systemd-gpt-auto-generator[362]: Not a EFI boot, not creating root mount. | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=10 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=11 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=12 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=13 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=14 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=15 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=16 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=17 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=18 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=19 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=20 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=21 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=22 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=23 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=24 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=25 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=26 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=27 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=28 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=29 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=30 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=31 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=32 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=33 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=34 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=35 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=36 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=37 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=38 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=39 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=40 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=41 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=42 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=43 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=44 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=45 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=46 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=47 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=48 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=49 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=50 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=51 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=52 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=53 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=54 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=55 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=56 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=57 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=58 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=59 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=60 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: systemd-journald.service: Releasing all resources. | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=61 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=62 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=63 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=64 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=65 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=66 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=67 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=68 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=69 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=70 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=71 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=72 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=73 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=74 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=75 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=76 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=77 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=78 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=79 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=80 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=81 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=82 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=83 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=84 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=85 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=86 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=87 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=88 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=89 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=90 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=91 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=92 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=93 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=94 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=95 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=96 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=97 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=98 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=99 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=100 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=101 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=102 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=103 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=104 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=105 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=106 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=107 reply_cookie=0 error=n/a | |
Aug 22 22:51:26 localhost systemd[358]: Spawned /usr/lib/systemd/system-generators/verity-generator as 359. | |
Aug 22 22:51:26 localhost systemd[358]: Spawned /usr/lib/systemd/system-generators/usr-generator as 360. | |
Aug 22 22:51:26 localhost systemd[358]: Spawned /usr/lib/systemd/system-generators/systemd-hibernate-resume-generator as 361. | |
Aug 22 22:51:26 localhost systemd[358]: Spawned /usr/lib/systemd/system-generators/systemd-gpt-auto-generator as 362. | |
Aug 22 22:51:26 localhost systemd[358]: Spawned /usr/lib/systemd/system-generators/systemd-fstab-generator as 363. | |
Aug 22 22:51:26 localhost systemd[358]: Spawned /usr/lib/systemd/system-generators/systemd-cryptsetup-generator as 364. | |
Aug 22 22:51:26 localhost systemd[358]: Spawned /usr/lib/systemd/system-generators/ignition-generator as 365. | |
Aug 22 22:51:26 localhost systemd[358]: Spawned /usr/lib/systemd/system-generators/dracut-rootfs-generator as 366. | |
Aug 22 22:51:26 localhost systemd[358]: Spawned /usr/lib/systemd/system-generators/diskless-generator as 367. | |
Aug 22 22:51:27 localhost systemd[358]: /usr/lib/systemd/system-generators/usr-generator succeeded. | |
Aug 22 22:51:27 localhost systemd[358]: /usr/lib/systemd/system-generators/systemd-gpt-auto-generator succeeded. | |
Aug 22 22:51:27 localhost systemd[358]: /usr/lib/systemd/system-generators/ignition-generator succeeded. | |
Aug 22 22:51:27 localhost systemd[358]: /usr/lib/systemd/system-generators/diskless-generator succeeded. | |
Aug 22 22:51:27 localhost systemd[358]: /usr/lib/systemd/system-generators/verity-generator succeeded. | |
Aug 22 22:51:27 localhost systemd[358]: /usr/lib/systemd/system-generators/systemd-hibernate-resume-generator succeeded. | |
Aug 22 22:51:27 localhost systemd[358]: /usr/lib/systemd/system-generators/dracut-rootfs-generator succeeded. | |
Aug 22 22:51:27 localhost systemd[358]: /usr/lib/systemd/system-generators/systemd-fstab-generator succeeded. | |
Aug 22 22:51:27 localhost systemd[358]: /usr/lib/systemd/system-generators/systemd-cryptsetup-generator succeeded. | |
Aug 22 22:51:27 localhost systemd[1]: system-generators succeeded. | |
Aug 22 22:51:27 localhost systemd[1]: Looking for unit files in (higher priority first): | |
Aug 22 22:51:27 localhost systemd[1]: /etc/systemd/system | |
Aug 22 22:51:27 localhost systemd[1]: /run/systemd/system | |
Aug 22 22:51:27 localhost systemd[1]: /run/systemd/generator | |
Aug 22 22:51:27 localhost systemd[1]: /usr/local/lib/systemd/system | |
Aug 22 22:51:27 localhost systemd[1]: /usr/lib64/systemd/system | |
Aug 22 22:51:27 localhost systemd[1]: SysV init scripts and rcN.d links support disabled | |
Aug 22 22:51:27 localhost systemd[1]: Unit type .busname is not supported on this system. | |
Aug 22 22:51:27 localhost systemd[1]: run-systemd-journal-socket.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: run.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: run-systemd.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: run-systemd-journal.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: run-systemd-journal-stdout.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: run-systemd-journal-syslog.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: syslog.service: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: run-systemd-journal-dev\x2dlog.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: run-udev.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: run-udev-control.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: systemd-sysusers.service: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: lvm2-activation-early.service: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: iscsid.service: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: iscsi.service: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: run-systemd-ask\x2dpassword.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: plymouth-start.service: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: systemd-hwdb-update.service: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: usr.squashfs.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: Deserializing state... | |
Aug 22 22:51:27 localhost systemd[1]: org.freedesktop.network1.busname: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: initrd-fs.target: Reinstalled deserialized job initrd-fs.target/start as 49 | |
Aug 22 22:51:27 localhost systemd[1]: org.freedesktop.resolve1.busname: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: network-pre.target: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: multi-user.target: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: dbus.service: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: sysroot-usr-share.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: sysroot-usr-share-oem.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: disk-uuid.service: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: tmp.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: var-tmp.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: var.mount: Failed to load configuration: No such file or directory | |
Aug 22 22:51:27 localhost systemd[1]: dracut-mount.service: Reinstalled deserialized job dracut-mount.service/start as 50 | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-pivot.service: Reinstalled deserialized job dracut-pre-pivot.service/start as 45 | |
Aug 22 22:51:27 localhost systemd[1]: initrd.target: Reinstalled deserialized job initrd.target/start as 1 | |
Aug 22 22:51:27 localhost systemd[1]: initrd-parse-etc.service: Reinstalled deserialized job initrd-parse-etc.service/start as 53 | |
Aug 22 22:51:27 localhost systemd[1]: dev-ttyprintk.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: dev-ttyS0.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-udev.service: Changed dead -> exited | |
Aug 22 22:51:27 localhost systemd[1]: sys-devices-pci0000:00-0000:00:01.1-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: sys-devices-platform-serial8250-tty-ttyS1.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: local-fs-pre.target changed dead -> active | |
Aug 22 22:51:27 localhost systemd[1]: systemd-udev-trigger.service: Changed dead -> exited | |
Aug 22 22:51:27 localhost systemd[1]: dev-disk-by\x2ddiskuuid-e42fccb6\x2d2a4e\x2d4b61\x2db82d\x2df548ffd7755b.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: system.slice changed dead -> active | |
Aug 22 22:51:27 localhost systemd[1]: sys-devices-platform-serial8250-tty-ttyS3.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: dev-disk-by\x2dpartlabel-ROOT.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-mount.service: Changed dead -> exited | |
Aug 22 22:51:27 localhost systemd[1]: systemd-udevd-kernel.socket: Changed dead -> running | |
Aug 22 22:51:27 localhost systemd[1]: systemd-udevd-control.socket: Changed dead -> running | |
Aug 22 22:51:27 localhost systemd[1]: sysroot.mount: Changed dead -> mounted | |
Aug 22 22:51:27 localhost systemd[1]: local-fs.target changed dead -> active | |
Aug 22 22:51:27 localhost systemd[1]: sys-devices-virtual-block-loop0.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: sys-devices-pnp0-00:04-tty-ttyS0.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: systemd-journald-audit.socket: Changed dead -> running | |
Aug 22 22:51:27 localhost systemd[1]: dev-ttyS3.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: dev-disk-by\x2dpath-pci\x2d0000:00:01.1\x2data\x2d1\x2dpart1.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: systemd-tmpfiles-setup-dev.service: Changed dead -> exited | |
Aug 22 22:51:27 localhost systemd[1]: dracut-initqueue.service: Changed dead -> exited | |
Aug 22 22:51:27 localhost systemd[1]: systemd-udevd.service: Changed dead -> running | |
Aug 22 22:51:27 localhost systemd[1]: remote-fs-pre.target changed dead -> active | |
Aug 22 22:51:27 localhost systemd[1]: -.slice changed dead -> active | |
Aug 22 22:51:27 localhost systemd[1]: dracut-cmdline.service: Changed dead -> exited | |
Aug 22 22:51:27 localhost systemd[1]: dev-sda1.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: sys-subsystem-net-devices-eth0.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: dev-ttyS2.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: dev-loop0.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: dev-disk-by\x2did-ata\x2dQEMU_HARDDISK_QM00001\x2dpart1.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: swap.target changed dead -> active | |
Aug 22 22:51:27 localhost systemd[1]: sys-devices-pci0000:00-0000:00:01.1-ata1-host0-target0:0:0-0:0:0:0-block-sda.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: sys-devices-pci0000:00-0000:00:03.0-net-eth0.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: systemd-journald.service: Changed dead -> running | |
Aug 22 22:51:27 localhost systemd[1]: dev-ttyS1.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: dev-sda.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: network.target changed dead -> active | |
Aug 22 22:51:27 localhost systemd[1]: kmod-static-nodes.service: Changed dead -> exited | |
Aug 22 22:51:27 localhost systemd[1]: slices.target changed dead -> active | |
Aug 22 22:51:27 localhost systemd[1]: init.scope changed dead -> running | |
Aug 22 22:51:27 localhost systemd[1]: dev-disk-by\x2dpath-pci\x2d0000:00:01.1\x2data\x2d1.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: systemd-journald-dev-log.socket: Changed dead -> running | |
Aug 22 22:51:27 localhost systemd[1]: paths.target changed dead -> active | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-networkd.service: Changed dead -> running | |
Aug 22 22:51:27 localhost systemd[1]: sockets.target changed dead -> active | |
Aug 22 22:51:27 localhost systemd[1]: basic.target changed dead -> active | |
Aug 22 22:51:27 localhost systemd[1]: systemd-sysctl.service: Changed dead -> exited | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-trigger.service: Changed dead -> exited | |
Aug 22 22:51:27 localhost systemd[1]: ignition.target changed dead -> active | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-resolved.service: Changed dead -> running | |
Aug 22 22:51:27 localhost systemd[1]: dev-disk-by\x2duuid-75ddf25e\x2d0454\x2d4683\x2d9143\x2d24fcf613ee6b.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: dev-disk-by\x2dlabel-ROOT.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: systemd-journald.socket: Changed dead -> running | |
Aug 22 22:51:27 localhost systemd[1]: initrd-parse-etc.service: Changed dead -> start-pre | |
Aug 22 22:51:27 localhost systemd[1]: remote-fs.target changed dead -> active | |
Aug 22 22:51:27 localhost systemd[1]: dev-disk-by\x2did-ata\x2dQEMU_HARDDISK_QM00001.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: cryptsetup.target changed dead -> active | |
Aug 22 22:51:27 localhost systemd[1]: timers.target changed dead -> active | |
Aug 22 22:51:27 localhost systemd[1]: sys-devices-platform-serial8250-tty-ttyS2.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: -.mount: Changed dead -> mounted | |
Aug 22 22:51:27 localhost systemd[1]: initrd-root-fs.target changed dead -> active | |
Aug 22 22:51:27 localhost systemd[1]: sys-devices-virtual-tty-ttyprintk.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: sysroot-usr.mount: Changed dead -> mounted | |
Aug 22 22:51:27 localhost systemd[1]: dev-disk-by\x2dpartuuid-a3603705\x2d2277\x2d465a\x2dbcbb\x2d543539d9c2cf.device: Changed dead -> plugged | |
Aug 22 22:51:27 localhost systemd[1]: sysinit.target changed dead -> active | |
Aug 22 22:51:27 localhost systemd[1]: systemd-ask-password-console.path: Changed dead -> waiting | |
Aug 22 22:51:27 localhost systemd[1]: Closing left-over fd 47 | |
Aug 22 22:51:27 localhost systemd[1]: var-tmp.mount: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: var.mount: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: sysroot-usr-share.mount: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: sysroot-usr-share-oem.mount: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: usr.squashfs.mount: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: run-systemd-ask\x2dpassword.mount: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: run-udev.mount: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: run-udev-control.mount: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: run-systemd-journal-dev\x2dlog.mount: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: run-systemd-journal-syslog.mount: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: run-systemd-journal-socket.mount: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: run.mount: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: run-systemd.mount: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: run-systemd-journal.mount: Collecting. | |
Aug 22 22:51:27 localhost systemctl[357]: Got message type=method_return sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=245 reply_cookie=1 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: run-systemd-journal-stdout.mount: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=108 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemctl[405]: Calling manager for StartUnit on initrd-fs.target, replace | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=109 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=110 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=111 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=112 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=113 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=114 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=115 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=116 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=117 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=118 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=119 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=120 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=121 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=122 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=123 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=124 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=125 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=126 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=127 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=128 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=129 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=130 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=131 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=132 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=133 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=134 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=135 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=136 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitRemoved cookie=137 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=138 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=139 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=140 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=141 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=142 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=143 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=144 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=145 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=146 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=147 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=148 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=149 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=150 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemctl[405]: Sent message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=StartUnit cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=151 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemctl[405]: Got message type=method_return sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=1 reply_cookie=1 error=n/a | |
Aug 22 22:51:27 localhost systemctl[405]: Sent message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=GetUnit cookie=2 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemctl[405]: Got message type=method_return sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=3 reply_cookie=2 error=n/a | |
Aug 22 22:51:27 localhost systemctl[405]: Sent message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1/unit/initrd_2dfs_2etarget interface=org.freedesktop.DBus.Properties member=Get cookie=3 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemctl[405]: Got message type=method_return sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=4 reply_cookie=3 error=n/a | |
Aug 22 22:51:27 localhost kernel: audit: type=1130 audit(1471906287.153:21): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost kernel: audit: type=1131 audit(1471906287.156:22): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=152 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemctl[407]: Calling manager for StartUnit on initrd-cleanup.service, replace | |
Aug 22 22:51:27 localhost systemctl[407]: Sent message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=StartUnit cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemctl[407]: Got message type=method_return sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=1 reply_cookie=1 error=n/a | |
Aug 22 22:51:27 localhost systemctl[407]: Sent message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=GetUnit cookie=2 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemctl[407]: Got message type=method_return sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=3 reply_cookie=2 error=n/a | |
Aug 22 22:51:27 localhost systemctl[407]: Sent message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1/unit/initrd_2dcleanup_2eservice interface=org.freedesktop.DBus.Properties member=Get cookie=3 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemctl[407]: Got message type=method_return sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=4 reply_cookie=3 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=153 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=154 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=155 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=156 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=157 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=158 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=159 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=160 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=161 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=162 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=163 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=164 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=165 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=166 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=167 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=168 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=169 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=170 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=171 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=172 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=173 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=174 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=175 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=176 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=177 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=178 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=179 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=180 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost kernel: audit: type=1130 audit(1471906287.209:23): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=181 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=182 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=183 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=184 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=185 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=186 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=187 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=188 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=189 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=190 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=191 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=192 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=193 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemctl[417]: Calling manager for StartUnit on initrd-switch-root.target, isolate | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=194 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=195 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=196 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=197 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=198 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemctl[417]: Sent message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=StartUnit cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=199 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemctl[417]: Got message type=method_return sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=2 reply_cookie=1 error=n/a | |
Aug 22 22:51:27 localhost systemctl[417]: Sent message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=GetUnit cookie=2 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemctl[417]: Got message type=method_return sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=38 reply_cookie=2 error=n/a | |
Aug 22 22:51:27 localhost systemctl[417]: Sent message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1/unit/initrd_2dswitch_2droot_2etarget interface=org.freedesktop.DBus.Properties member=Get cookie=3 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost kernel: audit: type=1130 audit(1471906287.235:24): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-cleanup comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-cleanup comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-cleanup comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=200 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemctl[417]: Got message type=method_return sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=39 reply_cookie=3 error=n/a | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-mount comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-mount comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=201 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=202 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=203 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=204 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=205 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=206 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=207 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=208 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=209 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=210 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=211 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=212 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=213 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=214 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=215 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=216 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=217 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=218 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=219 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=220 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=221 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=222 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=223 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=224 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=225 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=226 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=227 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=228 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=229 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=230 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=231 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=232 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=233 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=234 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=235 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=236 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=237 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=238 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=239 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=240 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=241 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=242 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=UnitNew cookie=243 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=Reloading cookie=244 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=method_return sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=245 reply_cookie=1 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Received SIGCHLD from PID 358 (n/a). | |
Aug 22 22:51:27 localhost systemd[1]: Child 357 (systemctl) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:27 localhost systemd[1]: initrd-parse-etc.service: Child 357 belongs to initrd-parse-etc.service | |
Aug 22 22:51:27 localhost systemd[1]: initrd-parse-etc.service: Control process exited, code=exited status=0 | |
Aug 22 22:51:27 localhost systemd[1]: initrd-parse-etc.service: Got final SIGCHLD for state start-pre. | |
Aug 22 22:51:27 localhost systemd[1]: initrd-parse-etc.service: About to execute: /usr/bin/systemctl --no-block start initrd-fs.target | |
Aug 22 22:51:27 localhost systemd[1]: initrd-parse-etc.service: Forked /usr/bin/systemctl as 405 | |
Aug 22 22:51:27 localhost systemd[1]: initrd-parse-etc.service: Changed start-pre -> start | |
Aug 22 22:51:27 localhost systemd[405]: initrd-parse-etc.service: Executing: /usr/bin/systemctl --no-block start initrd-fs.target | |
Aug 22 22:51:27 localhost systemd[1]: initrd-parse-etc.service: Failed to send unit change signal for initrd-parse-etc.service: Connection reset by peer | |
Aug 22 22:51:27 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:27 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:27 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:27 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:27 localhost systemd-cgroups-agent[403]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:27 localhost systemd-cgroups-agent[404]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:27 localhost systemd[1]: Got message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Got message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:27 localhost systemd[1]: Got message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=StartUnit cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: initrd-fs.target: Trying to enqueue job initrd-fs.target/start/replace | |
Aug 22 22:51:27 localhost systemd[1]: initrd-fs.target: Merged into installed job initrd-fs.target/start as 49 | |
Aug 22 22:51:27 localhost systemd[1]: initrd-fs.target: Enqueued job initrd-fs.target/start as 49 | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=method_return sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=1 reply_cookie=1 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/job/49 interface=org.freedesktop.DBus.Properties member=PropertiesChanged cookie=2 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 49: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:27 localhost systemd[1]: Got message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=GetUnit cookie=2 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=method_return sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=3 reply_cookie=2 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Got message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1/unit/initrd_2dfs_2etarget interface=org.freedesktop.DBus.Properties member=Get cookie=3 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=method_return sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=4 reply_cookie=3 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Received SIGCHLD from PID 405 (systemctl). | |
Aug 22 22:51:27 localhost systemd[1]: Child 405 (systemctl) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:27 localhost systemd[1]: initrd-parse-etc.service: Child 405 belongs to initrd-parse-etc.service | |
Aug 22 22:51:27 localhost systemd[1]: initrd-parse-etc.service: Main process exited, code=exited, status=0/SUCCESS | |
Aug 22 22:51:27 localhost systemd[1]: initrd-parse-etc.service: Running next main command for state start. | |
Aug 22 22:51:27 localhost systemd[1]: initrd-parse-etc.service: About to execute: /usr/bin/systemctl --no-block start initrd-cleanup.service | |
Aug 22 22:51:27 localhost systemd[1]: initrd-parse-etc.service: Forked /usr/bin/systemctl as 407 | |
Aug 22 22:51:27 localhost systemd[1]: initrd-parse-etc.service: Failed to send unit change signal for initrd-parse-etc.service: Connection reset by peer | |
Aug 22 22:51:27 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:27 localhost systemd[407]: initrd-parse-etc.service: Executing: /usr/bin/systemctl --no-block start initrd-cleanup.service | |
Aug 22 22:51:27 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:27 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:27 localhost systemd-cgroups-agent[406]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Got message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=StartUnit cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: initrd-cleanup.service: Trying to enqueue job initrd-cleanup.service/start/replace | |
Aug 22 22:51:27 localhost systemd[1]: initrd-cleanup.service: Installed new job initrd-cleanup.service/start as 66 | |
Aug 22 22:51:27 localhost systemd[1]: initrd-cleanup.service: Enqueued job initrd-cleanup.service/start as 66 | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=method_return sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=1 reply_cookie=1 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=2 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 66: Connection reset by peer | |
Aug 22 22:51:27 localhost systemd[1]: Got message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=GetUnit cookie=2 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=method_return sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=3 reply_cookie=2 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:27 localhost systemd[1]: Got message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1/unit/initrd_2dcleanup_2eservice interface=org.freedesktop.DBus.Properties member=Get cookie=3 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=method_return sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=4 reply_cookie=3 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Received SIGCHLD from PID 407 (systemctl). | |
Aug 22 22:51:27 localhost systemd[1]: Child 407 (systemctl) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:27 localhost systemd[1]: initrd-parse-etc.service: Child 407 belongs to initrd-parse-etc.service | |
Aug 22 22:51:27 localhost systemd[1]: initrd-parse-etc.service: Main process exited, code=exited, status=0/SUCCESS | |
Aug 22 22:51:27 localhost systemd[1]: initrd-parse-etc.service: Changed start -> dead | |
Aug 22 22:51:27 localhost systemd[1]: initrd-parse-etc.service: Job initrd-parse-etc.service/start finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Started Reload Configuration from the Real Root. | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job remove signal for 53: Connection reset by peer | |
Aug 22 22:51:27 localhost systemd[1]: initrd-parse-etc.service: cgroup is empty | |
Aug 22 22:51:27 localhost systemd[1]: initrd-parse-etc.service: Failed to send unit change signal for initrd-parse-etc.service: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:27 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:27 localhost systemd-cgroups-agent[408]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Got message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:27 localhost systemd[1]: dracut-mount.service: ConditionKernelCommandLine=|rd.break=mount failed. | |
Aug 22 22:51:27 localhost systemd[1]: dracut-mount.service: ConditionDirectoryNotEmpty=|/lib/dracut/hooks/mount failed. | |
Aug 22 22:51:27 localhost systemd[1]: dracut-mount.service: ConditionPathExists=/usr/lib/initrd-release succeeded. | |
Aug 22 22:51:27 localhost systemd[1]: dracut-mount.service: Starting requested but condition failed. Not starting unit. | |
Aug 22 22:51:27 localhost systemd[1]: dracut-mount.service: Job dracut-mount.service/start finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: initrd-fs.target: ConditionPathExists=/etc/initrd-release succeeded. | |
Aug 22 22:51:27 localhost systemd[1]: initrd-fs.target changed dead -> active | |
Aug 22 22:51:27 localhost systemd[1]: initrd-fs.target: Job initrd-fs.target/start finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Reached target Initrd File Systems. | |
Aug 22 22:51:27 localhost systemd[1]: initrd.target: ConditionPathExists=/etc/initrd-release succeeded. | |
Aug 22 22:51:27 localhost systemd[1]: initrd.target changed dead -> active | |
Aug 22 22:51:27 localhost systemd[1]: initrd.target: Job initrd.target/start finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Reached target Initrd Default Target. | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-pivot.service: ConditionPathExists=|/dev/nfs failed. | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-pivot.service: ConditionPathExists=|/dev/root failed. | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-pivot.service: ConditionKernelCommandLine=|rd.break failed. | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-pivot.service: ConditionKernelCommandLine=|rd.break=cleanup failed. | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-pivot.service: ConditionKernelCommandLine=|rd.break=pre-pivot failed. | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-pivot.service: ConditionDirectoryNotEmpty=|/lib/dracut/hooks/cleanup succeeded. | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-pivot.service: ConditionDirectoryNotEmpty=|/lib/dracut/hooks/pre-pivot failed. | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-pivot.service: ConditionPathExists=/usr/lib/initrd-release succeeded. | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-pivot.service: About to execute: /bin/dracut-pre-pivot | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-pivot.service: Forked /bin/dracut-pre-pivot as 409 | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-pivot.service: Changed dead -> start | |
Aug 22 22:51:27 localhost systemd[1]: Starting dracut pre-pivot and cleanup hook... | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=kmod-static-nodes comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=kmod-static-nodes comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost systemd[409]: dracut-pre-pivot.service: Executing: /bin/dracut-pre-pivot | |
Aug 22 22:51:27 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:27 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:27 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:27 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:27 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:27 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:27 localhost systemd[1]: Received SIGCHLD from PID 409 (dracut-pre-pivo). | |
Aug 22 22:51:27 localhost systemd[1]: Child 409 (dracut-pre-pivo) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-pivot.service: Child 409 belongs to dracut-pre-pivot.service | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-pivot.service: Main process exited, code=exited, status=0/SUCCESS | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-pivot.service: Changed start -> exited | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-pivot.service: Job dracut-pre-pivot.service/start finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Started dracut pre-pivot and cleanup hook. | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-trigger comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-trigger comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-pivot.service: cgroup is empty | |
Aug 22 22:51:27 localhost systemd[1]: initrd-cleanup.service: ConditionPathExists=/etc/initrd-release succeeded. | |
Aug 22 22:51:27 localhost systemd[1]: initrd-cleanup.service: About to execute: /usr/bin/systemctl --no-block isolate initrd-switch-root.target | |
Aug 22 22:51:27 localhost systemd[1]: initrd-cleanup.service: Forked /usr/bin/systemctl as 417 | |
Aug 22 22:51:27 localhost systemd[1]: initrd-cleanup.service: Changed dead -> start | |
Aug 22 22:51:27 localhost systemd[1]: Starting Cleaning Up and Shutting Down Daemons... | |
Aug 22 22:51:27 localhost systemd[417]: initrd-cleanup.service: Executing: /usr/bin/systemctl --no-block isolate initrd-switch-root.target | |
Aug 22 22:51:27 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:27 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:27 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:27 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:27 localhost systemd-cgroups-agent[416]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Got message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=StartUnit cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: initrd-switch-root.target: Trying to enqueue job initrd-switch-root.target/start/isolate | |
Aug 22 22:51:27 localhost systemd[1]: paths.target: Installed new job paths.target/stop as 110 | |
Aug 22 22:51:27 localhost systemd[1]: systemd-ask-password-console.path: Installed new job systemd-ask-password-console.path/stop as 123 | |
Aug 22 22:51:27 localhost systemd[1]: systemd-udev-trigger.service: Installed new job systemd-udev-trigger.service/stop as 98 | |
Aug 22 22:51:27 localhost systemd[1]: remote-fs.target: Installed new job remote-fs.target/stop as 117 | |
Aug 22 22:51:27 localhost systemd[1]: initrd-switch-root.target: Installed new job initrd-switch-root.target/start as 70 | |
Aug 22 22:51:27 localhost systemd[1]: kmod-static-nodes.service: Installed new job kmod-static-nodes.service/stop as 108 | |
Aug 22 22:51:27 localhost systemd[1]: remount-sysroot.service: Installed new job remount-sysroot.service/start as 86 | |
Aug 22 22:51:27 localhost systemd[1]: systemd-udevd-kernel.socket: Installed new job systemd-udevd-kernel.socket/stop as 90 | |
Aug 22 22:51:27 localhost systemd[1]: systemd-sysctl.service: Installed new job systemd-sysctl.service/stop as 114 | |
Aug 22 22:51:27 localhost systemd[1]: network.target: Installed new job network.target/stop as 107 | |
Aug 22 22:51:27 localhost systemd[1]: slices.target: Installed new job slices.target/stop as 109 | |
Aug 22 22:51:27 localhost systemd[1]: dracut-initqueue.service: Installed new job dracut-initqueue.service/stop as 102 | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-udev.service: Installed new job dracut-pre-udev.service/stop as 92 | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-resolved.service: Installed new job initrd-systemd-resolved.service/stop as 116 | |
Aug 22 22:51:27 localhost systemd[1]: remote-fs-pre.target: Installed new job remote-fs-pre.target/stop as 103 | |
Aug 22 22:51:27 localhost systemd[1]: systemd-udevd-control.socket: Installed new job systemd-udevd-control.socket/stop as 91 | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-pivot.service: Installed new job dracut-pre-pivot.service/stop as 105 | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-systemd-resolved comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-systemd-resolved comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost systemd[1]: local-fs.target: Installed new job local-fs.target/stop as 100 | |
Aug 22 22:51:27 localhost systemd[1]: basic.target: Installed new job basic.target/stop as 113 | |
Aug 22 22:51:27 localhost systemd[1]: initrd-cleanup.service: Job initrd-cleanup.service/start finished, result=canceled | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobRemoved cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job remove signal for 66: Connection reset by peer | |
Aug 22 22:51:27 localhost systemd[1]: initrd-cleanup.service: Installed new job initrd-cleanup.service/stop as 101 | |
Aug 22 22:51:27 localhost systemd[1]: initrd.target: Installed new job initrd.target/stop as 97 | |
Aug 22 22:51:27 localhost systemd[1]: timers.target: Installed new job timers.target/stop as 119 | |
Aug 22 22:51:27 localhost systemd[1]: initrd-switch-root.service: Installed new job initrd-switch-root.service/start as 71 | |
Aug 22 22:51:27 localhost systemd[1]: sockets.target: Installed new job sockets.target/stop as 112 | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-networkd.service: Installed new job initrd-systemd-networkd.service/stop as 111 | |
Aug 22 22:51:27 localhost systemd[1]: systemd-udevd.service: Installed new job systemd-udevd.service/stop as 89 | |
Aug 22 22:51:27 localhost systemd[1]: local-fs-pre.target: Installed new job local-fs-pre.target/stop as 93 | |
Aug 22 22:51:27 localhost systemd[1]: sysinit.target: Installed new job sysinit.target/stop as 120 | |
Aug 22 22:51:27 localhost systemd[1]: swap.target: Installed new job swap.target/stop as 106 | |
Aug 22 22:51:27 localhost systemd[1]: ignition.target: Installed new job ignition.target/stop as 96 | |
Aug 22 22:51:27 localhost systemd[1]: cryptsetup.target: Installed new job cryptsetup.target/stop as 118 | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-trigger.service: Installed new job dracut-pre-trigger.service/stop as 115 | |
Aug 22 22:51:27 localhost systemd[1]: dracut-cmdline.service: Installed new job dracut-cmdline.service/stop as 104 | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-mount.service: Installed new job dracut-pre-mount.service/stop as 99 | |
Aug 22 22:51:27 localhost systemd[1]: initrd-udevadm-cleanup-db.service: Installed new job initrd-udevadm-cleanup-db.service/start as 88 | |
Aug 22 22:51:27 localhost systemd[1]: initrd-switch-root.target: Enqueued job initrd-switch-root.target/start as 70 | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=method_return sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=2 reply_cookie=1 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=3 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 88: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=4 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 99: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=5 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 104: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=6 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 115: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=7 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-systemd-networkd comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-systemd-networkd comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 118: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=8 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 96: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=9 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 106: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=10 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 120: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=11 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 93: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=12 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 89: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=13 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 111: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=14 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 112: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=15 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 71: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=16 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 119: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=17 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 97: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=18 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 101: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=19 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 113: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=20 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 100: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=21 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 105: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=22 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 91: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=23 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 103: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=24 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 116: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=25 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 92: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=26 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 102: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=27 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 109: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=28 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 107: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=29 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 114: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=30 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 90: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=31 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 86: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=32 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 108: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=33 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 70: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=34 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 117: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=35 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 98: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=36 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 123: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobNew cookie=37 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job change signal for 110: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Got message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=GetUnit cookie=2 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=method_return sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=38 reply_cookie=2 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:27 localhost systemd[1]: Got message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1/unit/initrd_2dswitch_2droot_2etarget interface=org.freedesktop.DBus.Properties member=Get cookie=3 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost systemd[1]: Sent message type=method_return sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=39 reply_cookie=3 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Received SIGCHLD from PID 417 (systemctl). | |
Aug 22 22:51:27 localhost systemd[1]: Child 417 (systemctl) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:27 localhost systemd[1]: initrd-cleanup.service: Child 417 belongs to initrd-cleanup.service | |
Aug 22 22:51:27 localhost systemd[1]: initrd-cleanup.service: Main process exited, code=exited, status=0/SUCCESS | |
Aug 22 22:51:27 localhost systemd[1]: initrd-cleanup.service: Changed start -> dead | |
Aug 22 22:51:27 localhost systemd[1]: initrd-cleanup.service: Job initrd-cleanup.service/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped Cleaning Up and Shutting Down Daemons. | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost systemd[1]: Failed to send job remove signal for 101: Connection reset by peer | |
Aug 22 22:51:27 localhost systemd[1]: initrd-cleanup.service: cgroup is empty | |
Aug 22 22:51:27 localhost systemd[1]: initrd-cleanup.service: Failed to send unit change signal for initrd-cleanup.service: Transport endpoint is not connected | |
Aug 22 22:51:27 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:27 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:27 localhost systemd-cgroups-agent[418]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Got message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:27 localhost systemd[1]: ignition.target changed active -> dead | |
Aug 22 22:51:27 localhost systemd[1]: ignition.target: Job ignition.target/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped target ignition.target. | |
Aug 22 22:51:27 localhost systemd[1]: timers.target changed active -> dead | |
Aug 22 22:51:27 localhost systemd[1]: timers.target: Job timers.target/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped target Timers. | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-pivot.service: Changed exited -> dead | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-pivot.service: Job dracut-pre-pivot.service/stop finished, result=done | |
Aug 22 22:51:27 localhost udevadm[429]: calling: info | |
Aug 22 22:51:27 localhost systemd[1]: Stopped dracut pre-pivot and cleanup hook. | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-udevadm-cleanup-db comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-udevadm-cleanup-db comm="systemd" exe="/usr/lib64/systemd/systemd" hostname=? addr=? terminal=? res=success' | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-mount.service: Changed exited -> dead | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-mount.service: Job dracut-pre-mount.service/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped dracut pre-mount hook. | |
Aug 22 22:51:27 localhost systemd[1]: initrd.target changed active -> dead | |
Aug 22 22:51:27 localhost systemd[1]: initrd.target: Job initrd.target/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped target Initrd Default Target. | |
Aug 22 22:51:27 localhost systemd[1]: basic.target changed active -> dead | |
Aug 22 22:51:27 localhost systemd[1]: basic.target: Job basic.target/stop finished, result=done | |
Aug 22 22:51:27 localhost systemctl[431]: Switching root - root: /sysroot; init: n/a | |
Aug 22 22:51:27 localhost systemd[1]: Stopped target Basic System. | |
Aug 22 22:51:27 localhost systemctl[431]: Sent message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=SwitchRoot cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemctl[431]: Got message type=method_return sender=n/a destination=n/a object=n/a interface=n/a member=n/a cookie=1 reply_cookie=1 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: sockets.target changed active -> dead | |
Aug 22 22:51:27 localhost systemd[1]: sockets.target: Job sockets.target/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped target Sockets. | |
Aug 22 22:51:27 localhost systemd[1]: sysinit.target changed active -> dead | |
Aug 22 22:51:27 localhost systemd[1]: sysinit.target: Job sysinit.target/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped target System Initialization. | |
Aug 22 22:51:27 localhost systemd[1]: cryptsetup.target changed active -> dead | |
Aug 22 22:51:27 localhost systemd[1]: cryptsetup.target: Job cryptsetup.target/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped target Encrypted Volumes. | |
Aug 22 22:51:27 localhost systemd[1]: swap.target changed active -> dead | |
Aug 22 22:51:27 localhost systemd[1]: swap.target: Job swap.target/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped target Swap. | |
Aug 22 22:51:27 localhost systemd[1]: local-fs.target changed active -> dead | |
Aug 22 22:51:27 localhost systemd[1]: local-fs.target: Job local-fs.target/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped target Local File Systems. | |
Aug 22 22:51:27 localhost systemd[1]: local-fs-pre.target changed active -> dead | |
Aug 22 22:51:27 localhost systemd[1]: local-fs-pre.target: Job local-fs-pre.target/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped target Local File Systems (Pre). | |
Aug 22 22:51:27 localhost systemd-resolved[203]: Removing scope on link eth0, protocol dns, family * | |
Aug 22 22:51:27 localhost systemd-resolved[203]: Removing scope on link eth0, protocol llmnr, family AF_INET | |
Aug 22 22:51:27 localhost systemd-resolved[203]: Removing scope on link eth0, protocol llmnr, family AF_INET6 | |
Aug 22 22:51:27 localhost systemd-resolved[203]: Removing scope on link *, protocol dns, family * | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-resolved.service: Changed running -> stop-sigterm | |
Aug 22 22:51:27 localhost systemd[1]: Stopping Network Name Resolution... | |
Aug 22 22:51:27 localhost systemd[1]: slices.target changed active -> dead | |
Aug 22 22:51:27 localhost systemd[1]: slices.target: Job slices.target/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped target Slices. | |
Aug 22 22:51:27 localhost systemd[1]: systemd-sysctl.service: Changed exited -> dead | |
Aug 22 22:51:27 localhost systemd[1]: systemd-sysctl.service: Job systemd-sysctl.service/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped Apply Kernel Variables. | |
Aug 22 22:51:27 localhost systemd[1]: remount-sysroot.service: ConditionPathIsReadWrite=!/sysroot failed. | |
Aug 22 22:51:27 localhost systemd[1]: remount-sysroot.service: Starting requested but condition failed. Not starting unit. | |
Aug 22 22:51:27 localhost systemd[1]: remount-sysroot.service: Job remount-sysroot.service/start finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: kmod-static-nodes.service: Changed exited -> dead | |
Aug 22 22:51:27 localhost systemd[1]: kmod-static-nodes.service: Job kmod-static-nodes.service/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped Create list of required static device nodes for the current kernel. | |
Aug 22 22:51:27 localhost systemd[1]: remote-fs.target changed active -> dead | |
Aug 22 22:51:27 localhost systemd[1]: remote-fs.target: Job remote-fs.target/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped target Remote File Systems. | |
Aug 22 22:51:27 localhost systemd[1]: remote-fs-pre.target changed active -> dead | |
Aug 22 22:51:27 localhost systemd[1]: remote-fs-pre.target: Job remote-fs-pre.target/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped target Remote File Systems (Pre). | |
Aug 22 22:51:27 localhost systemd[1]: dracut-initqueue.service: Changed exited -> dead | |
Aug 22 22:51:27 localhost systemd[1]: dracut-initqueue.service: Job dracut-initqueue.service/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped dracut initqueue hook. | |
Aug 22 22:51:27 localhost systemd[1]: systemd-udev-trigger.service: Changed exited -> dead | |
Aug 22 22:51:27 localhost systemd[1]: systemd-udev-trigger.service: Job systemd-udev-trigger.service/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped udev Coldplug all Devices. | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-trigger.service: Changed exited -> dead | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-trigger.service: Job dracut-pre-trigger.service/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped dracut pre-trigger hook. | |
Aug 22 22:51:27 localhost systemd[1]: paths.target changed active -> dead | |
Aug 22 22:51:27 localhost systemd[1]: paths.target: Job paths.target/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped target Paths. | |
Aug 22 22:51:27 localhost systemd[1]: systemd-ask-password-console.path: Changed waiting -> dead | |
Aug 22 22:51:27 localhost systemd[1]: systemd-ask-password-console.path: Job systemd-ask-password-console.path/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch. | |
Aug 22 22:51:27 localhost systemd[1]: dracut-mount.service: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: initrd-cleanup.service: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: remote-fs.target: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: basic.target: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: initrd.target: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-mount.service: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: dracut-pre-pivot.service: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: timers.target: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: ignition.target: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: tmp.mount: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: rescue.service: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: rescue.target: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: initrd-setup-root.service: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: dracut-cmdline-ask.service: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: ignition-disks.service: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: ignition-files.service: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: disk-uuid.service: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-resolved.service: Got notification message from PID 203 (STOPPING=1, STATUS=Shutting down...) | |
Aug 22 22:51:27 localhost systemd[1]: Received SIGCHLD from PID 203 (systemd-resolve). | |
Aug 22 22:51:27 localhost systemd[1]: Child 203 (systemd-resolve) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-resolved.service: Child 203 belongs to initrd-systemd-resolved.service | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-resolved.service: Main process exited, code=exited, status=0/SUCCESS | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-resolved.service: Changed stop-sigterm -> dead | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-resolved.service: Job initrd-systemd-resolved.service/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped Network Name Resolution. | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-resolved.service: cgroup is empty | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-resolved.service: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: org.freedesktop.resolve1.busname: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:27 localhost systemd-cgroups-agent[419]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Got message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Got disconnect on private connection. | |
Aug 22 22:51:27 localhost systemd[1]: network.target changed active -> dead | |
Aug 22 22:51:27 localhost systemd[1]: network.target: Job network.target/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped target Network. | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-networkd.service: About to execute: /usr/bin/ip addr flush up | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-networkd.service: Forked /usr/bin/ip as 420 | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-networkd.service: Changed running -> stop | |
Aug 22 22:51:27 localhost systemd[1]: Stopping Network Service... | |
Aug 22 22:51:27 localhost systemd[420]: initrd-systemd-networkd.service: Executing: /usr/bin/ip addr flush up | |
Aug 22 22:51:27 localhost systemd-networkd[202]: lo: Removing address: 127.0.0.1/8 (valid forever) | |
Aug 22 22:51:27 localhost systemd-networkd[202]: eth0: Removing address: 172.16.1.12/28 (valid for 9min 55s) | |
Aug 22 22:51:27 localhost systemd-networkd[202]: lo: Removing address: ::1/128 (valid forever) | |
Aug 22 22:51:27 localhost systemd-networkd[202]: eth0: Removing address: fe80::5054:ff:fe91:ccaa/64 (valid forever) | |
Aug 22 22:51:27 localhost systemd[1]: Received SIGCHLD from PID 420 (ip). | |
Aug 22 22:51:27 localhost systemd[1]: Child 420 (ip) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-networkd.service: Child 420 belongs to initrd-systemd-networkd.service | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-networkd.service: Control process exited, code=exited status=0 | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-networkd.service: Running next control command for state stop. | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-networkd.service: About to execute: /usr/bin/ip link set group default down | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-networkd.service: Forked /usr/bin/ip as 422 | |
Aug 22 22:51:27 localhost systemd[422]: initrd-systemd-networkd.service: Executing: /usr/bin/ip link set group default down | |
Aug 22 22:51:27 localhost systemd-networkd[202]: lo: Saved original MTU: 0 | |
Aug 22 22:51:27 localhost systemd-networkd[202]: lo: Flags change: -UP -LOWER_UP -RUNNING | |
Aug 22 22:51:27 localhost systemd-networkd[202]: lo: Lost carrier | |
Aug 22 22:51:27 localhost systemd-networkd[202]: eth0: Flags change: -UP -LOWER_UP -RUNNING | |
Aug 22 22:51:27 localhost systemd-networkd[202]: eth0: Lost carrier | |
Aug 22 22:51:27 localhost systemd-networkd[202]: DHCP CLIENT (0x5467af7b): STOPPED | |
Aug 22 22:51:27 localhost systemd-networkd[202]: eth0: DHCP lease lost | |
Aug 22 22:51:27 localhost systemd-networkd[202]: eth0: Setting transient hostname: 'n/a' | |
Aug 22 22:51:27 localhost systemd-networkd[202]: eth0: Not connected to system bus, ignoring transient hostname. | |
Aug 22 22:51:27 localhost systemd-networkd[202]: NDisc CLIENT: Stop NDisc | |
Aug 22 22:51:27 localhost systemd[1]: Received SIGCHLD from PID 422 (ip). | |
Aug 22 22:51:27 localhost systemd[1]: Child 422 (ip) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-networkd.service: Child 422 belongs to initrd-systemd-networkd.service | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-networkd.service: Control process exited, code=exited status=0 | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-networkd.service: Got final SIGCHLD for state stop. | |
Aug 22 22:51:27 localhost systemd-networkd[202]: DHCP CLIENT (0x0): FREE | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-networkd.service: Changed stop -> stop-sigterm | |
Aug 22 22:51:27 localhost systemd[1]: Child 202 (systemd-network) died (code=exited, status=0/SUCCESS) | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-networkd.service: Child 202 belongs to initrd-systemd-networkd.service | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-networkd.service: Main process exited, code=exited, status=0/SUCCESS | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-networkd.service: Changed stop-sigterm -> dead | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-networkd.service: Job initrd-systemd-networkd.service/stop finished, result=done | |
Aug 22 22:51:27 localhost systemd[1]: Stopped Network Service. | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-networkd.service: cgroup is empty | |
Aug 22 22:51:27 localhost systemd[1]: initrd-systemd-networkd.service: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: dbus.service: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: network-pre.target: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: multi-user.target: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: org.freedesktop.network1.busname: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: network.target: Collecting. | |
Aug 22 22:51:27 localhost systemd[1]: Cannot find unit for notify message of PID 202. | |
Aug 22 22:51:27 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:27 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:27 localhost systemd[1]: systemd-journald.service: Got notification message from PID 107 (FDSTORE=1) | |
Aug 22 22:51:27 localhost systemd[1]: systemd-journald.service: Added fd to fd store. | |
Aug 22 22:51:27 localhost systemd[1]: Received SIGCHLD from PID 202 (n/a). | |
Aug 22 22:51:27 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:27 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:27 localhost systemd-cgroups-agent[421]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd-cgroups-agent[425]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a | |
Aug 22 22:51:27 localhost systemd[1]: Accepted new private connection. | |
Aug 22 22:51:27 localhost systemd-cgroups-agent[426]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 er |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment