Ubuntu Pastebin

Paste from systemd at Mon, 13 Mar 2017 14:17:35 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pi@iot-jackhammer ~> sudo systemctl status hostapd
* hostapd.service
   Loaded: not-found (Reason: No such file or directory)
   Active: inactive (dead)




pi@iot-jackhammer ~> cat /etc/systemd/system/hostapd.service 
[Unit]
Description=hostapd as a systemd service.


[Service]
EnvironmentFile=/etc/default/hostapd
ExecStart=/usr/local/bin/hostapd -B -P $PID_FILE $DAEMON_CONF
ExecReload=/bin/kill -HUP $(cat PID_FILE)
KillMode=process
Restart=on-failure

[Install]
WantedBy=multi-user.target
Alias=hostapd.service
pi@iot-jackhammer ~> file /usr/local/bin/hostapd
/usr/local/bin/hostapd: ELF 32-bit LSB executable, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, for GNU/Linux 2.6.32, BuildID[sha1]=83384383a63d0cd7bf96dd7b4ff60598b99b4d71, not stripped
pi@iot-jackhammer ~> 
Download as text