This systemd startup script refuses to run, but I just can't figure out why.
[Unit]
Description=IP Address on Boot Screen
[Service]
ExecStart=/usr/bin/ifconfig eth0 | awk '/inet / {print $2}' | cut -f2 -d: > /etc/issue
[Install]
WantedBy=multi-user.target
Obviously the problem is with the ExecStart
but I just can't see any errors with it!