Bug#794249: systemd: Call ExecReload on timer trigger

Ritesh Raj Sarraf rrs at debian.org
Fri Jul 31 18:07:42 BST 2015


Package: systemd
Version: 222-2
Severity: normal


Hi,

I need some help from you to add the the equivalent of some
functionality in laptop-mode-tools in the systemd way.

In LMT, we have a battery-polling-daemon script that polls the battery.
This is needed for machines where people may have broken battery, or
just the user wants to explicitly poll the battery.

I was reading up on systemd's timer feature and I see it to be a perfect
fit for my need.
So based on my understanding, I went ahead and added the .timer config


rrs at learner:~$ cat /lib/systemd/system/laptop-mode.timer 
[Unit]
Description=Runs Laptop Mode Tools, every 150 seconds


[Timer]
# Let's run every 150 secs, to poll the battery
OnUnitActiveSec=150s
OnActiveSec=150s

[Install]
WantedBy=multi-user.target
2015-07-31 / 22:29:29 ♒♒♒  ☺    


rrs at learner:~$ cat /lib/systemd/system/laptop-mode.service 
[Unit]
Description=Laptop Mode Tools

[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=@/usr/sbin/laptop_mode init auto
ExecStop=@/usr/sbin/laptop_mode init stop
ExecStopPost=@/bin/rm -f /var/run/laptop-mode-tools/enabled
ExecReload=@/usr/sbin/laptop_mode auto
StandardOutput=tty
StandardError=tty

[Install]
WantedBy=multi-user.target
2015-07-31 / 22:29:33 ♒♒♒  ☺    


My first need is to trigger ExecReload on the timer invocation. From the
systemd.timer(5) documentation, it says that the default unit (if
nothing is explicitly specified), with the same name, gets triggered. In
this case, for laptop-mode.timer, it looks for laptop-mode.service.

But it triggers ExecStart. I'd want it to call ExecReload.

Is this something I should file upstream as a Feature Request ?


Secondly, I think the timer feature is not working proper. To test my
use case, I've put a timer to trigger every 150 seconds. But only one
invocation takes place, that too when I do a service restart for
laptop-mode.timer.

Apart from that, I see no further invocations.

In the logs below, you can see only 2 invocations, and both of them were
when I triggered a restart for the laptop-mode.timer service.


Jul 31 15:24:47 learner systemd[1]: Started Laptop Mode Tools.
Jul 31 15:35:52 learner systemd[1]: Started Laptop Mode Tools.


Do you think this is a bug ? Or am I doing something wrong here ?



rrs at learner:~/Community/Packaging/systemtap (upstream)$ sudo systemctl status laptop-mode.timer 
[sudo] password for rrs: 
● laptop-mode.timer - Runs Laptop Mode Tools, every 150 seconds
   Loaded: loaded (/lib/systemd/system/laptop-mode.timer; enabled; vendor preset: enabled)
   Active: active (running) since Fri 2015-07-31 15:35:52 IST; 6h ago

Jul 31 15:35:52 learner systemd[1]: Stopping Runs Laptop Mode Tools, every 150 seconds.
Jul 31 15:35:52 learner systemd[1]: Started Runs Laptop Mode Tools, every 150 seconds.
Jul 31 15:35:52 learner systemd[1]: Starting Runs Laptop Mode Tools, every 150 seconds.
2015-07-31 / 22:17:29 ♒♒♒  ☺    



rrs at learner:~/Community/Packaging/systemtap (upstream)$ sudo systemctl status laptop-mode.service 
● laptop-mode.service - Laptop Mode Tools
   Loaded: loaded (/etc/systemd/system/laptop-mode.service; enabled; vendor preset: enabled)
   Active: active (exited) since Wed 2015-07-29 15:29:22 IST; 2 days ago
  Process: 15121 ExecReload=auto (code=exited, status=0/SUCCESS)
 Main PID: 1173 (code=exited, status=0/SUCCESS)
   CGroup: /system.slice/laptop-mode.service

Jul 31 13:39:21 learner systemd[1]: Reloaded Laptop Mode Tools.
Jul 31 13:55:00 learner systemd[1]: Reloaded Laptop Mode Tools.
Jul 31 15:13:45 learner systemd[1]: Started Laptop Mode Tools.
Jul 31 15:24:47 learner systemd[1]: Started Laptop Mode Tools.
Jul 31 15:35:52 learner systemd[1]: Started Laptop Mode Tools.
Jul 31 21:58:59 learner systemd[1]: Reloaded Laptop Mode Tools.
Jul 31 21:58:59 learner systemd[1]: Reloaded Laptop Mode Tools.
Jul 31 21:58:59 learner systemd[1]: Reloaded Laptop Mode Tools.
Jul 31 21:58:59 learner laptop-mode[15190]: Laptop mode
Jul 31 21:58:59 learner laptop-mode[15191]: enabled, active [unchanged]
2015-07-31 / 22:17:42 ♒♒♒  ☺    




-- Package-specific info:

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (101, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.0.9+ (SMP w/4 CPU cores)
Locale: LANG=en_IN.utf8, LC_CTYPE=en_IN.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages systemd depends on:
ii  adduser         3.113+nmu3
ii  libacl1         2.2.52-2
ii  libapparmor1    2.9.2-3
ii  libaudit1       1:2.4.2-1
ii  libblkid1       2.26.2-6
ii  libc6           2.19-19
ii  libcap2         1:2.24-9
ii  libcap2-bin     1:2.24-9
ii  libcryptsetup4  2:1.6.6-5
ii  libgcrypt20     1.6.3-2
ii  libkmod2        21-1
ii  liblzma5        5.1.1alpha+20120614-2.1
ii  libmount1       2.26.2-6
ii  libpam0g        1.1.8-3.1
ii  libseccomp2     2.2.1-2
ii  libselinux1     2.3-2+b1
ii  libsystemd0     222-2
ii  mount           2.26.2-6
ii  sysv-rc         2.88dsf-59.2
ii  udev            222-2
ii  util-linux      2.26.2-6

Versions of packages systemd recommends:
ii  dbus            1.8.20-1
ii  libpam-systemd  222-2

Versions of packages systemd suggests:
ii  systemd-ui  3-4

-- no debconf information
-------------- next part --------------
A non-text attachment was scrubbed...
Name: systemd-delta.txt
Type: text/x-diff
Size: 2284 bytes
Desc: not available
URL: <http://lists.alioth.debian.org/pipermail/pkg-systemd-maintainers/attachments/20150731/a2df8214/attachment-0001.diff>
-------------- next part --------------
-> Unit systemd-tmpfiles-clean.service:
	Description: Cleanup of Temporary Directories
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: Wed 2015-07-29 15:44:16 IST
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: Wed 2015-07-29 15:44:16 IST
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-tmpfiles-clean.service
	Documentation: man:tmpfiles.d(5)
	Documentation: man:systemd-tmpfiles(8)
	Fragment Path: /lib/systemd/system/systemd-tmpfiles-clean.service
	Condition Timestamp: Wed 2015-07-29 15:44:16 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:44:16 IST
	Assert Result: yes
	Wants: system.slice
	Conflicts: shutdown.target
	Before: shutdown.target
	After: systemd-journald.socket
	After: time-sync.target
	After: local-fs.target
	After: system.slice
	After: systemd-tmpfiles-clean.timer
	TriggeredBy: systemd-tmpfiles-clean.timer
	References: systemd-journald.socket
	References: time-sync.target
	References: local-fs.target
	References: system.slice
	References: shutdown.target
	ReferencedBy: systemd-tmpfiles-clean.timer
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	IOSchedulingClass: idle
	IOPriority: 0
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /bin/systemd-tmpfiles --clean
-> Unit dev-disk-by\x2duuid-339197eb\x2d781c\x2d4a32\x2d9265\x2d060536dfa9e0.device:
	Description: /dev/disk/by-uuid/339197eb-781c-4a32-9265-060536dfa9e0
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2duuid-339197eb\x2d781c\x2d4a32\x2d9265\x2d060536dfa9e0.device
	Following: sys-devices-virtual-block-dm\x2d0.device
	Following Set Member: dev-mapper-sdb_crypt.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dsdb_crypt.device
	Following Set Member: dev-dm\x2d0.device
	Following Set Member: sys-devices-virtual-block-dm\x2d0.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dCRYPT\x2dLUKS1\x2d8f7094e7d2eb453fb2b71a162de14111\x2dsdb_crypt.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-0
-> Unit dev-disk-by\x2dpartuuid-cf1d0c57\x2d42fa\x2d4fd7\x2dbfa0\x2ddb8cf69fcd61.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB SYSTEM_DRV
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2dpartuuid-cf1d0c57\x2d42fa\x2d4fd7\x2dbfa0\x2ddb8cf69fcd61.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart2.device
	Following Set Member: dev-disk-by\x2duuid-2206\x2d0BF2.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
	Following Set Member: dev-disk-by\x2dlabel-SYSTEM_DRV.device
	Following Set Member: dev-sda2.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart2.device
	Following Set Member: dev-disk-by\x2dpartlabel-EFI\x5cx20system\x5cx20partition.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda2
-> Unit org.freedesktop.PackageKit.busname:
	Description: org.freedesktop.PackageKit.busname
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: org.freedesktop.PackageKit.busname
	Before: packagekit.service
	ReferencedBy: packagekit.service
-> Unit getty-static.service:
	Description: getty on tty2-tty6 if dbus and logind are not available
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: getty-static.service
	Fragment Path: /lib/systemd/system/getty-static.service
	ConditionPathExists: !/lib/systemd/system/dbus.service untested
	ConditionPathExists: /dev/tty2 untested
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: no
	Requires: basic.target
	Wants: system.slice
	WantedBy: getty.target
	Conflicts: shutdown.target
	Before: getty.target
	Before: shutdown.target
	After: system.slice
	After: systemd-journald.socket
	After: basic.target
	References: system.slice
	References: shutdown.target
	References: systemd-journald.socket
	References: basic.target
	ReferencedBy: getty.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /bin/systemctl --no-block start getty at tty2.service getty at tty3.service getty at tty4.service getty at tty5.service getty at tty6.service
-> Unit nss-lookup.target:
	Description: Host and Network Name Lookups
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: nss-lookup.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/nss-lookup.target
	Source Path: /etc/insserv.conf.d/dnsmasq
	DropIn Path: /run/systemd/generator/nss-lookup.target.d/50-hard-dependency-dnsmasq-$named.conf
	Condition Timestamp: Wed 2015-07-29 15:29:22 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:22 IST
	Assert Result: yes
	Requires: dnsmasq.service
	WantedBy: dnsmasq.service
	Conflicts: shutdown.target
	Before: tor.service
	Before: iodined.service
	Before: postfix.service
	Before: mysql.service
	After: dnsmasq.service
	References: dnsmasq.service
	References: shutdown.target
	ReferencedBy: dnsmasq.service
	ReferencedBy: iodined.service
	ReferencedBy: postfix.service
	ReferencedBy: tor.service
	ReferencedBy: mysql.service
	StopWhenUnneeded: no
	RefuseManualStart: yes
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit systemd-logind.service:
	Description: Login Service
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/systemd-logind.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: systemd-logind.service
	Documentation: man:systemd-logind.service(8)
	Documentation: man:logind.conf(5)
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/logind
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/multiseat
	Fragment Path: /lib/systemd/system/systemd-logind.service
	ConditionPathExists: /lib/systemd/system/dbus.service untested
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: basic.target
	Wants: user.slice
	Wants: dbus.socket
	Wants: system.slice
	WantedBy: multi-user.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: multi-user.target
	Before: session-1.scope
	After: basic.target
	After: org.freedesktop.login1.busname
	After: dbus.socket
	After: nss-user-lookup.target
	After: user.slice
	After: systemd-journald.socket
	After: system.slice
	TriggeredBy: org.freedesktop.login1.busname
	References: basic.target
	References: shutdown.target
	References: org.freedesktop.login1.busname
	References: dbus.socket
	References: nss-user-lookup.target
	References: user.slice
	References: systemd-journald.socket
	References: system.slice
	ReferencedBy: org.freedesktop.login1.busname
	ReferencedBy: multi-user.target
	ReferencedBy: session-1.scope
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: dbus
	Restart: always
	NotifyAccess: main
	NotifyState: unknown
	Main PID: 1101
	Main PID Known: yes
	Main PID Alien: no
	BusName: org.freedesktop.login1
	Bus Name Good: yes
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 16384
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	CapabilityBoundingSet: cap_chown cap_dac_override cap_dac_read_search cap_fowner cap_kill cap_sys_admin cap_sys_tty_config cap_audit_control cap_mac_admin
	-> ExecStart:
		Command Line: /lib/systemd/systemd-logind
	Status Text: Processing requests...
-> Unit systemd-fsckd.service:
	Description: File System Check Daemon to report status
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: Wed 2015-07-29 15:29:50 IST
	Inactive Enter Timestamp: Wed 2015-07-29 15:29:50 IST
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-fsckd.service
	Documentation: man:systemd-fsckd.service(8)
	Fragment Path: /lib/systemd/system/systemd-fsckd.service
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Requires: systemd-fsckd.socket
	Wants: system.slice
	Before: shutdown.target
	After: system.slice
	After: systemd-fsckd.socket
	After: systemd-journald.socket
	TriggeredBy: systemd-fsckd.socket
	References: system.slice
	References: shutdown.target
	References: systemd-fsckd.socket
	References: systemd-journald.socket
	ReferencedBy: systemd-fsckd.socket
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: simple
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal+console
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-fsckd
-> Unit sound.target:
	Description: Sound Card
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sound.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/sound.target
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	WantedBy: sys-devices-pci0000:00-0000:00:03.0-sound-card0.device
	WantedBy: sys-devices-pci0000:00-0000:00:1b.0-sound-card1.device
	Conflicts: shutdown.target
	References: shutdown.target
	ReferencedBy: sys-devices-pci0000:00-0000:00:03.0-sound-card0.device
	ReferencedBy: sys-devices-pci0000:00-0000:00:1b.0-sound-card1.device
	StopWhenUnneeded: yes
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit alsa-state.service:
	Description: Manage Sound Card State (restore and store)
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: alsa-state.service
	Fragment Path: /lib/systemd/system/alsa-state.service
	ConditionPathExists: /etc/alsa/state-daemon.conf untested
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: no
	Wants: system.slice
	WantedBy: basic.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: alsa-restore.service
	After: sysinit.target
	After: systemd-journald.socket
	After: system.slice
	References: sysinit.target
	References: shutdown.target
	References: systemd-journald.socket
	References: system.slice
	ReferencedBy: basic.target
	ReferencedBy: alsa-restore.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: simple
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /usr/sbin/alsactl -E HOME=/var/run/alsa -s -n 19 -c rdaemon
	-> ExecStop:
		Command Line: /usr/sbin/alsactl -E HOME=/var/run/alsa -s kill save_and_quit
-> Unit dev-disk-by\x2duuid-a1d51c69\x2dc438\x2d428b\x2d8346\x2d273abcbf5a52.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB 7
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2duuid-a1d51c69\x2dc438\x2d428b\x2d8346\x2d273abcbf5a52.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda7.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda7.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart7.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart7.device
	Following Set Member: dev-sda7.device
	Following Set Member: dev-disk-by\x2dpartuuid-5c76f548\x2dae81\x2d455c\x2d9fef\x2d4ef79ce9b11d.device
	Job Timeout: 1min 30s
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Wants: systemd-cryptsetup at sda7_crypt.service
	BoundBy: systemd-cryptsetup at sda7_crypt.service
	Before: systemd-cryptsetup at sda7_crypt.service
	References: systemd-cryptsetup at sda7_crypt.service
	ReferencedBy: systemd-cryptsetup at sda7_crypt.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda7
-> Unit systemd-cryptsetup at sdb_crypt.service:
	Description: Cryptography Setup for sdb_crypt
	Instance: sdb_crypt
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system-systemd\x2dcryptsetup.slice
	CGroup: /system.slice/system-systemd\x2dcryptsetup.slice/systemd-cryptsetup at sdb_crypt.service
	CGroup realized: yes
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-cryptsetup at sdb_crypt.service
	Documentation: man:crypttab(5)
	Documentation: man:systemd-cryptsetup-generator(8)
	Documentation: man:systemd-cryptsetup at .service(8)
	Fragment Path: /run/systemd/generator/systemd-cryptsetup at sdb_crypt.service
	Source Path: /etc/crypttab
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Wants: system-systemd\x2dcryptsetup.slice
	BindsTo: dev-disk-by\x2duuid-8f7094e7\x2dd2eb\x2d453f\x2db2b7\x2d1a162de14111.device
	BindsTo: dev-mapper-sdb_crypt.device
	RequiredBy: cryptsetup.target
	RequiredBy: dev-mapper-sdb_crypt.device
	WantedBy: dev-disk-by\x2duuid-8f7094e7\x2dd2eb\x2d453f\x2db2b7\x2d1a162de14111.device
	Conflicts: umount.target
	Before: umount.target
	Before: cryptsetup.target
	After: cryptsetup-pre.target
	After: dev-disk-by\x2duuid-8f7094e7\x2dd2eb\x2d453f\x2db2b7\x2d1a162de14111.device
	After: systemd-journald.socket
	After: system-systemd\x2dcryptsetup.slice
	References: dev-disk-by\x2duuid-8f7094e7\x2dd2eb\x2d453f\x2db2b7\x2d1a162de14111.device
	References: cryptsetup.target
	References: umount.target
	References: system-systemd\x2dcryptsetup.slice
	References: dev-mapper-sdb_crypt.device
	References: cryptsetup-pre.target
	References: systemd-journald.socket
	ReferencedBy: dev-disk-by\x2duuid-8f7094e7\x2dd2eb\x2d453f\x2db2b7\x2d1a162de14111.device
	ReferencedBy: cryptsetup.target
	ReferencedBy: dev-mapper-sdb_crypt.device
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-cryptsetup attach sdb_crypt /dev/disk/by-uuid/8f7094e7-d2eb-453f-b2b7-1a162de14111 none luks,discard
	-> ExecStop:
		Command Line: /lib/systemd/systemd-cryptsetup detach sdb_crypt
-> Unit dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart2.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB SYSTEM_DRV
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart2.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart2.device
	Following Set Member: dev-disk-by\x2duuid-2206\x2d0BF2.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
	Following Set Member: dev-sda2.device
	Following Set Member: dev-disk-by\x2dlabel-SYSTEM_DRV.device
	Following Set Member: dev-disk-by\x2dpartuuid-cf1d0c57\x2d42fa\x2d4fd7\x2dbfa0\x2ddb8cf69fcd61.device
	Following Set Member: dev-disk-by\x2dpartlabel-EFI\x5cx20system\x5cx20partition.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda2
-> Unit dev-disk-by\x2dlabel-SYSTEM_DRV.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB SYSTEM_DRV
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2dlabel-SYSTEM_DRV.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart2.device
	Following Set Member: dev-disk-by\x2duuid-2206\x2d0BF2.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
	Following Set Member: dev-sda2.device
	Following Set Member: dev-disk-by\x2dpartuuid-cf1d0c57\x2d42fa\x2d4fd7\x2dbfa0\x2ddb8cf69fcd61.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart2.device
	Following Set Member: dev-disk-by\x2dpartlabel-EFI\x5cx20system\x5cx20partition.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda2
-> Unit systemd-ask-password-wall.path:
	Description: Forward Password Requests to Wall Directory Watch
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-ask-password-wall.path
	Documentation: man:systemd-ask-password-console.service(8)
	Fragment Path: /lib/systemd/system/systemd-ask-password-wall.path
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Requires: -.mount
	WantedBy: multi-user.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: systemd-ask-password-wall.service
	Before: paths.target
	After: -.mount
	Triggers: systemd-ask-password-wall.service
	References: paths.target
	References: shutdown.target
	References: systemd-ask-password-wall.service
	References: -.mount
	ReferencedBy: multi-user.target
	RequiresMountsFor: /run/systemd/ask-password
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Path State: waiting
	Result: success
	Unit: systemd-ask-password-wall.service
	MakeDirectory: yes
	DirectoryMode: 0755
	DirectoryNotEmpty: /run/systemd/ask-password
-> Unit sys-devices-pci0000:00-0000:00:02.0-drm-card0-card0\x2deDP\x2d1-intel_backlight.device:
	Description: /sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-eDP-1/intel_backlight
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:02.0-drm-card0-card0\x2deDP\x2d1-intel_backlight.device
	Job Timeout: 1min 30s
	Wants: systemd-backlight at backlight:intel_backlight.service
	References: systemd-backlight at backlight:intel_backlight.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-eDP-1/intel_backlight
-> Unit sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda4.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB Microsoft\x20reserved\x20partition
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda4.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart4.device
	Following Set Member: dev-disk-by\x2dpartuuid-242faae1\x2daa64\x2d4791\x2da2aa\x2d314cf9e49b51.device
	Following Set Member: dev-sda4.device
	Following Set Member: dev-disk-by\x2dpartlabel-Microsoft\x5cx20reserved\x5cx20partition.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart4.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda4
-> Unit networking.service:
	Description: LSB: Raise network interfaces.
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/networking.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: networking.service
	Documentation: man:systemd-sysv-generator(8)
	Fragment Path: /run/systemd/generator.late/networking.service
	Source Path: /etc/init.d/networking
	DropIn Path: /run/systemd/generator/networking.service.d/50-insserv.conf-$network.conf
	DropIn Path: /lib/systemd/system/networking.service.d/systemd.conf
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Wants: network.target
	Wants: system.slice
	WantedBy: sysinit.target
	Conflicts: shutdown.target
	Before: sysinit.target
	Before: network.target
	Before: shutdown.target
	After: systemd-journald.socket
	After: network-pre.target
	After: systemd-random-seed.service
	After: mountkernfs.service
	After: local-fs.target
	After: apparmor.service
	After: resolvconf.service
	After: system.slice
	References: systemd-journald.socket
	References: network-pre.target
	References: sysinit.target
	References: shutdown.target
	References: systemd-random-seed.service
	References: mountkernfs.service
	References: local-fs.target
	References: network.target
	References: apparmor.service
	References: system.slice
	ReferencedBy: sysinit.target
	ReferencedBy: resolvconf.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: no
	Type: forking
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /etc/init.d/networking start
	-> ExecReload:
		Command Line: /etc/init.d/networking reload
	-> ExecStop:
		Command Line: /etc/init.d/networking stop
-> Unit systemd-tmpfiles-setup.service:
	Description: Create Volatile Files and Directories
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/systemd-tmpfiles-setup.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: systemd-tmpfiles-setup.service
	Documentation: man:tmpfiles.d(5)
	Documentation: man:systemd-tmpfiles(8)
	Fragment Path: /lib/systemd/system/systemd-tmpfiles-setup.service
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Wants: system.slice
	WantedBy: sysinit.target
	Conflicts: shutdown.target
	Before: sysinit.target
	Before: systemd-timesyncd.service
	Before: shutdown.target
	Before: systemd-update-utmp.service
	After: systemd-sysusers.service
	After: systemd-journald.socket
	After: system.slice
	After: systemd-journal-flush.service
	After: local-fs.target
	References: systemd-sysusers.service
	References: systemd-journald.socket
	References: system.slice
	References: sysinit.target
	References: shutdown.target
	References: local-fs.target
	ReferencedBy: sysinit.target
	ReferencedBy: systemd-timesyncd.service
	ReferencedBy: systemd-journal-flush.service
	ReferencedBy: systemd-update-utmp.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: yes
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /bin/systemd-tmpfiles --create --remove --boot --exclude-prefix=/dev
-> Unit debian-fixup.service:
	Description: Various fixups to make systemd work better on Debian
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: debian-fixup.service
	Fragment Path: /lib/systemd/system/debian-fixup.service
	ConditionPathIsSymbolicLink: |!/etc/mtab untested
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: no
	Wants: system.slice
	WantedBy: sysinit.target
	Before: sysinit.target
	After: systemd-remount-fs.service
	After: systemd-journald.socket
	After: system.slice
	References: sysinit.target
	References: systemd-remount-fs.service
	References: systemd-journald.socket
	References: system.slice
	ReferencedBy: sysinit.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/debian-fixup
-> Unit sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200086.5.auto-trigger3.device:
	Description: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200086.5.auto/trigger3
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200086.5.auto-trigger3.device
	Job Timeout: 1min 30s
	Wants: iio-sensor-proxy.service
	References: iio-sensor-proxy.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200086.5.auto/trigger3
-> Unit org.freedesktop.UPower.busname:
	Description: org.freedesktop.UPower.busname
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: org.freedesktop.UPower.busname
	Before: upower.service
	ReferencedBy: upower.service
-> Unit apparmor.service:
	Description: apparmor.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: apparmor.service
	Before: networking.service
	ReferencedBy: networking.service
-> Unit dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB BOOT
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda6.device
	Following Set Member: dev-sda6.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart6.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart6.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda6.device
	Following Set Member: dev-disk-by\x2dlabel-BOOT.device
	Following Set Member: dev-disk-by\x2dpartuuid-0c9648fc\x2db83c\x2d410c\x2d9966\x2d36b4bcf41a62.device
	Job Timeout: 1min 30s
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Wants: boot.mount
	BoundBy: boot.mount
	BoundBy: systemd-fsck at dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.service
	Before: boot.mount
	Before: systemd-fsck at dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.service
	ReferencedBy: boot.mount
	ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda6
-> Unit network.target:
	Description: Network
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: network.target
	Documentation: man:systemd.special(7)
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/NetworkTarget
	Fragment Path: /lib/systemd/system/network.target
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	RequiredBy: dnsmasq.service
	WantedBy: systemd-networkd.service
	WantedBy: networking.service
	Conflicts: shutdown.target
	Before: rc-local.service
	Before: dicod.service
	Before: lxc.service
	Before: network-online.target
	Before: tor.service
	Before: systemd-resolved.service
	After: network-pre.target
	After: wpa_supplicant.service
	After: systemd-networkd.service
	After: networking.service
	References: shutdown.target
	References: network-pre.target
	ReferencedBy: lxc.service
	ReferencedBy: systemd-networkd.service
	ReferencedBy: tor.service
	ReferencedBy: dicod.service
	ReferencedBy: systemd-resolved.service
	ReferencedBy: dnsmasq.service
	ReferencedBy: networking.service
	ReferencedBy: rc-local.service
	ReferencedBy: wpa_supplicant.service
	ReferencedBy: network-online.target
	StopWhenUnneeded: no
	RefuseManualStart: yes
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit remote-fs-pre.target:
	Description: Remote File Systems (Pre)
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: remote-fs-pre.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/remote-fs-pre.target
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	WantedBy: remote-fs.target
	Conflicts: shutdown.target
	Before: remote-fs.target
	References: shutdown.target
	ReferencedBy: remote-fs.target
	StopWhenUnneeded: no
	RefuseManualStart: yes
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit sys-kernel-debug.mount:
	Description: Debug File System
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/sys-kernel-debug.mount
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: sys-kernel-debug.mount
	Documentation: https://www.kernel.org/doc/Documentation/filesystems/debugfs.txt
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
	Fragment Path: /lib/systemd/system/sys-kernel-debug.mount
	ConditionCapability: CAP_SYS_RAWIO untested
	ConditionPathExists: /sys/kernel/debug untested
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Requires: -.mount
	Wants: system.slice
	WantedBy: sysinit.target
	Before: sysinit.target
	After: -.mount
	After: systemd-journald.socket
	After: system.slice
	References: sysinit.target
	References: -.mount
	References: systemd-journald.socket
	References: system.slice
	ReferencedBy: sysinit.target
	RequiresMountsFor: /sys/kernel
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Mount State: mounted
	Result: success
	Where: /sys/kernel/debug
	What: debugfs
	File System Type: debugfs
	Options: rw,relatime
	From /proc/self/mountinfo: yes
	From fragment: yes
	DirectoryMode: 0755
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit boot-efi.mount:
	Description: /boot/efi
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/boot-efi.mount
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: boot-efi.mount
	Documentation: man:fstab(5)
	Documentation: man:systemd-fstab-generator(8)
	Fragment Path: /run/systemd/generator/boot-efi.mount
	Source Path: /etc/fstab
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Requires: boot.mount
	Requires: -.mount
	RequiresOverridable: systemd-fsck at dev-disk-by\x2duuid-2206\x2d0BF2.service
	Wants: system.slice
	BindsTo: dev-disk-by\x2duuid-2206\x2d0BF2.device
	RequiredBy: local-fs.target
	WantedBy: dev-disk-by\x2duuid-2206\x2d0BF2.device
	Conflicts: umount.target
	Before: umount.target
	Before: local-fs.target
	After: system.slice
	After: boot.mount
	After: systemd-journald.socket
	After: dev-disk-by\x2duuid-2206\x2d0BF2.device
	After: systemd-fsck at dev-disk-by\x2duuid-2206\x2d0BF2.service
	After: local-fs-pre.target
	After: -.mount
	References: system.slice
	References: boot.mount
	References: umount.target
	References: systemd-journald.socket
	References: local-fs.target
	References: dev-disk-by\x2duuid-2206\x2d0BF2.device
	References: systemd-fsck at dev-disk-by\x2duuid-2206\x2d0BF2.service
	References: local-fs-pre.target
	References: -.mount
	ReferencedBy: local-fs.target
	RequiresMountsFor: /boot /dev/disk/by-uuid/2206-0BF2
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Mount State: mounted
	Result: success
	Where: /boot/efi
	What: /dev/sda2
	File System Type: vfat
	Options: rw,relatime,fmask=0077,dmask=0077,codepage=437,iocharset=utf8,shortname=mixed,errors=remount-ro
	From /proc/self/mountinfo: yes
	From fragment: yes
	DirectoryMode: 0755
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit timers.target:
	Description: Timers
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: timers.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/timers.target
	Condition Timestamp: Wed 2015-07-29 15:29:22 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:22 IST
	Assert Result: yes
	Wants: systemd-tmpfiles-clean.timer
	WantedBy: basic.target
	Conflicts: shutdown.target
	After: laptop-mode.timer
	After: systemd-tmpfiles-clean.timer
	References: shutdown.target
	References: systemd-tmpfiles-clean.timer
	ReferencedBy: laptop-mode.timer
	ReferencedBy: basic.target
	ReferencedBy: systemd-tmpfiles-clean.timer
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit dev-sda1.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB WINRE_DRV
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-sda1.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
	Following Set Member: dev-disk-by\x2duuid-268003D18003A681.device
	Following Set Member: dev-disk-by\x2dlabel-WINRE_DRV.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart1.device
	Following Set Member: dev-disk-by\x2dpartuuid-26145e88\x2dc087\x2d4701\x2da765\x2dd9bc0b1cc602.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart1.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1
-> Unit dev-hugepages.mount:
	Description: Huge Pages File System
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/dev-hugepages.mount
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: dev-hugepages.mount
	Documentation: https://www.kernel.org/doc/Documentation/vm/hugetlbpage.txt
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
	Fragment Path: /lib/systemd/system/dev-hugepages.mount
	ConditionCapability: CAP_SYS_ADMIN untested
	ConditionPathExists: /sys/kernel/mm/hugepages untested
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Requires: -.mount
	Wants: system.slice
	WantedBy: sysinit.target
	Before: sysinit.target
	After: -.mount
	After: systemd-journald.socket
	After: system.slice
	References: sysinit.target
	References: -.mount
	References: systemd-journald.socket
	References: system.slice
	ReferencedBy: sysinit.target
	RequiresMountsFor: /dev
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Mount State: mounted
	Result: success
	Where: /dev/hugepages
	What: hugetlbfs
	File System Type: hugetlbfs
	Options: rw,relatime
	From /proc/self/mountinfo: yes
	From fragment: yes
	DirectoryMode: 0755
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda7.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB 7
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda7.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart7.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart7.device
	Following Set Member: dev-disk-by\x2duuid-a1d51c69\x2dc438\x2d428b\x2d8346\x2d273abcbf5a52.device
	Following Set Member: dev-sda7.device
	Following Set Member: dev-disk-by\x2dpartuuid-5c76f548\x2dae81\x2d455c\x2d9fef\x2d4ef79ce9b11d.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda7
-> Unit network-pre.target:
	Description: Network (Pre)
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: network-pre.target
	Documentation: man:systemd.special(7)
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/NetworkTarget
	Fragment Path: /lib/systemd/system/network-pre.target
	Conflicts: shutdown.target
	Before: network.target
	Before: systemd-networkd.service
	Before: networking.service
	References: shutdown.target
	ReferencedBy: network.target
	ReferencedBy: systemd-networkd.service
	ReferencedBy: networking.service
	StopWhenUnneeded: no
	RefuseManualStart: yes
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: dead
-> Unit run-user-1000-gvfs.mount:
	Description: /run/user/1000/gvfs
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:30:01 IST
	Active Enter Timestamp: Wed 2015-07-29 15:30:01 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/run-user-1000-gvfs.mount
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: run-user-1000-gvfs.mount
	Source Path: /proc/self/mountinfo
	Requires: -.mount
	Wants: system.slice
	Conflicts: umount.target
	Before: umount.target
	Before: local-fs.target
	After: system.slice
	After: run-user-1000.mount
	After: -.mount
	After: systemd-journald.socket
	After: local-fs-pre.target
	References: system.slice
	References: umount.target
	References: run-user-1000.mount
	References: -.mount
	References: systemd-journald.socket
	References: local-fs.target
	References: local-fs-pre.target
	RequiresMountsFor: /run/user/1000
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Mount State: mounted
	Result: success
	Where: /run/user/1000/gvfs
	What: gvfsd-fuse
	File System Type: fuse.gvfsd-fuse
	Options: rw,nosuid,nodev,relatime,user_id=1000,group_id=1000
	From /proc/self/mountinfo: yes
	From fragment: no
	DirectoryMode: 0755
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit systemd-cryptsetup at sda7_crypt.service:
	Description: Cryptography Setup for sda7_crypt
	Instance: sda7_crypt
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system-systemd\x2dcryptsetup.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-cryptsetup at sda7_crypt.service
	Documentation: man:crypttab(5)
	Documentation: man:systemd-cryptsetup-generator(8)
	Documentation: man:systemd-cryptsetup at .service(8)
	Fragment Path: /run/systemd/generator/systemd-cryptsetup at sda7_crypt.service
	Source Path: /etc/crypttab
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Wants: system-systemd\x2dcryptsetup.slice
	BindsTo: dev-disk-by\x2duuid-a1d51c69\x2dc438\x2d428b\x2d8346\x2d273abcbf5a52.device
	BindsTo: dev-mapper-sda7_crypt.device
	RequiredBy: cryptsetup.target
	RequiredBy: dev-mapper-sda7_crypt.device
	WantedBy: dev-disk-by\x2duuid-a1d51c69\x2dc438\x2d428b\x2d8346\x2d273abcbf5a52.device
	Conflicts: umount.target
	Before: umount.target
	Before: cryptsetup.target
	After: cryptsetup-pre.target
	After: dev-disk-by\x2duuid-a1d51c69\x2dc438\x2d428b\x2d8346\x2d273abcbf5a52.device
	After: systemd-journald.socket
	After: system-systemd\x2dcryptsetup.slice
	References: cryptsetup.target
	References: umount.target
	References: dev-disk-by\x2duuid-a1d51c69\x2dc438\x2d428b\x2d8346\x2d273abcbf5a52.device
	References: system-systemd\x2dcryptsetup.slice
	References: dev-mapper-sda7_crypt.device
	References: cryptsetup-pre.target
	References: systemd-journald.socket
	ReferencedBy: cryptsetup.target
	ReferencedBy: dev-disk-by\x2duuid-a1d51c69\x2dc438\x2d428b\x2d8346\x2d273abcbf5a52.device
	ReferencedBy: dev-mapper-sda7_crypt.device
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-cryptsetup attach sda7_crypt /dev/disk/by-uuid/a1d51c69-c438-428b-8346-273abcbf5a52 none luks,discard
	-> ExecStop:
		Command Line: /lib/systemd/systemd-cryptsetup detach sda7_crypt
-> Unit system-systemd\x2dcryptsetup.slice:
	Description: system-systemd\x2dcryptsetup.slice
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/system-systemd\x2dcryptsetup.slice
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: system-systemd\x2dcryptsetup.slice
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Wants: system.slice
	WantedBy: systemd-cryptsetup at sdb_crypt.service
	WantedBy: systemd-cryptsetup at sda7_crypt.service
	Conflicts: shutdown.target
	Before: systemd-cryptsetup at sdb_crypt.service
	Before: systemd-cryptsetup at sda7_crypt.service
	Before: shutdown.target
	After: system.slice
	References: shutdown.target
	References: system.slice
	ReferencedBy: systemd-cryptsetup at sdb_crypt.service
	ReferencedBy: systemd-cryptsetup at sda7_crypt.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Slice State: active
	CPUAccounting=no
	BlockIOAccounting=no
	MemoryAccounting=no
	CPUShares=18446744073709551615
	StartupCPUShares=18446744073709551615
	CPUQuotaPerSecSec=infinity
	BlockIOWeight=18446744073709551615
	StartupBlockIOWeight=18446744073709551615
	MemoryLimit=18446744073709551615
	DevicePolicy=auto
	Delegate=no
-> Unit systemd-ask-password-console.service:
	Description: Dispatch Password Requests to Console
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-ask-password-console.service
	Documentation: man:systemd-ask-password-console.service(8)
	Fragment Path: /lib/systemd/system/systemd-ask-password-console.service
	ConditionPathExists: !/run/plymouth/pid untested
	Wants: system.slice
	Conflicts: shutdown.target
	Before: shutdown.target
	After: plymouth-start.service
	After: systemd-journald.socket
	After: systemd-ask-password-console.path
	After: system.slice
	After: systemd-vconsole-setup.service
	TriggeredBy: systemd-ask-password-console.path
	References: shutdown.target
	References: plymouth-start.service
	References: systemd-journald.socket
	References: system.slice
	References: systemd-vconsole-setup.service
	ReferencedBy: systemd-ask-password-console.path
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: simple
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /bin/systemd-tty-ask-password-agent --watch --console
-> Unit boot.mount:
	Description: /boot
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/boot.mount
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: boot.mount
	Documentation: man:fstab(5)
	Documentation: man:systemd-fstab-generator(8)
	Fragment Path: /run/systemd/generator/boot.mount
	Source Path: /etc/fstab
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Requires: -.mount
	RequiresOverridable: systemd-fsck at dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.service
	Wants: system.slice
	BindsTo: dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.device
	RequiredBy: local-fs.target
	RequiredBy: boot-efi.mount
	WantedBy: dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.device
	Conflicts: umount.target
	Before: umount.target
	Before: local-fs.target
	Before: boot-efi.mount
	After: system.slice
	After: systemd-fsck at dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.service
	After: -.mount
	After: systemd-journald.socket
	After: local-fs-pre.target
	After: dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.device
	References: system.slice
	References: systemd-fsck at dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.service
	References: -.mount
	References: systemd-journald.socket
	References: local-fs-pre.target
	References: umount.target
	References: local-fs.target
	References: dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.device
	ReferencedBy: local-fs.target
	ReferencedBy: boot-efi.mount
	RequiresMountsFor: / /dev/disk/by-uuid/07502716-a1f8-4cec-a605-447e151b8021
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Mount State: mounted
	Result: success
	Where: /boot
	What: /dev/sda6
	File System Type: ext4
	Options: rw,relatime,commit=600,data=ordered
	From /proc/self/mountinfo: yes
	From fragment: yes
	DirectoryMode: 0755
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit sys-devices-platform-serial8250-tty-ttyS2.device:
	Description: /sys/devices/platform/serial8250/tty/ttyS2
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-platform-serial8250-tty-ttyS2.device
	Following Set Member: dev-ttyS2.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/platform/serial8250/tty/ttyS2
-> Unit sys-subsystem-rfkill-devices-rfkill0.device:
	Description: /sys/subsystem/rfkill/devices/rfkill0
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-subsystem-rfkill-devices-rfkill0.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.0-PNP0C09:00-VPC2004:00-rfkill-rfkill0.device
	Job Timeout: 1min 30s
	BoundBy: systemd-rfkill at rfkill0.service
	ReferencedBy: systemd-rfkill at rfkill0.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/rfkill/rfkill0
-> Unit dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart3.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB LRS_ESP
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart3.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
	Following Set Member: dev-sda3.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
	Following Set Member: dev-disk-by\x2duuid-D20A\x2dAF97.device
	Following Set Member: dev-disk-by\x2dlabel-LRS_ESP.device
	Following Set Member: dev-disk-by\x2dpartuuid-e066dcd7\x2d9fbb\x2d4d00\x2da952\x2dee54e59db6f9.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart3.device
	Following Set Member: dev-disk-by\x2dpartlabel-Basic\x5cx20data\x5cx20partition.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda3
-> Unit dev-ttyS0.device:
	Description: /dev/ttyS0
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-ttyS0.device
	Following: sys-devices-platform-serial8250-tty-ttyS0.device
	Following Set Member: sys-devices-platform-serial8250-tty-ttyS0.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/platform/serial8250/tty/ttyS0
-> Unit sys-subsystem-net-devices-lxcbr0.device:
	Description: /sys/subsystem/net/devices/lxcbr0
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-subsystem-net-devices-lxcbr0.device
	Following Set Member: sys-devices-virtual-net-lxcbr0.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/net/lxcbr0
-> Unit org.freedesktop.Avahi.busname:
	Description: org.freedesktop.Avahi.busname
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: org.freedesktop.Avahi.busname
	Before: avahi-daemon.service
	ReferencedBy: avahi-daemon.service
-> Unit dev-dm\x2d2.device:
	Description: /dev/dm-2
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-dm\x2d2.device
	Following: sys-devices-virtual-block-dm\x2d2.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.device
	Following Set Member: sys-devices-virtual-block-dm\x2d2.device
	Following Set Member: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.device
	Following Set Member: dev-SSHDCrypt-SWAP.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.device
	Following Set Member: dev-mapper-SSHDCrypt\x2dSWAP.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-2
-> Unit dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAq7ic3Bd7CskLs20cyN4S1SOTEvVeUKV6r.device:
	Description: /dev/disk/by-id/dm-uuid-LVM-bs54X7BRLOlm8NEeIDHPg3HL27SGIdAq7ic3Bd7CskLs20cyN4S1SOTEvVeUKV6r
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAq7ic3Bd7CskLs20cyN4S1SOTEvVeUKV6r.device
	Following: sys-devices-virtual-block-dm\x2d3.device
	Following Set Member: sys-devices-virtual-block-dm\x2d3.device
	Following Set Member: dev-dm\x2d3.device
	Following Set Member: dev-disk-by\x2duuid-f3c1b4f2\x2dd8e5\x2d4c9d\x2d9775\x2d638cc1c1165e.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dROOT.device
	Following Set Member: dev-disk-by\x2dlabel-ROOT.device
	Following Set Member: dev-mapper-SSHDCrypt\x2dROOT.device
	Following Set Member: dev-SSHDCrypt-ROOT.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-3
-> Unit org.bluez.busname:
	Description: org.bluez.busname
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: org.bluez.busname
	Before: bluetooth.service
	ReferencedBy: bluetooth.service
-> Unit tor.service:
	Description: Anonymizing overlay network for TCP
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:23 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/tor.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: tor.service
	Fragment Path: /lib/systemd/system/tor.service
	Condition Timestamp: Wed 2015-07-29 15:29:22 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:22 IST
	Assert Result: yes
	Requires: -.mount
	Requires: basic.target
	Wants: system.slice
	WantedBy: multi-user.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: multi-user.target
	After: network.target
	After: system.slice
	After: basic.target
	After: -.mount
	After: systemd-journald.socket
	After: nss-lookup.target
	References: network.target
	References: system.slice
	References: basic.target
	References: -.mount
	References: shutdown.target
	References: systemd-journald.socket
	References: nss-lookup.target
	ReferencedBy: multi-user.target
	RequiresMountsFor: /tmp /var/tmp
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: yes
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: notify
	Restart: on-failure
	NotifyAccess: all
	NotifyState: unknown
	Main PID: 1795
	Main PID Known: yes
	Main PID Alien: no
	PIDFile: /var/run/tor/tor.pid
	KillMode: control-group
	KillSignal: SIGINT
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: yes
	PrivateNetwork: no
	PrivateDevices: yes
	ProtectHome: yes
	ProtectSystem: full
	IgnoreSIGPIPE: yes
	LimitNOFILE: 65536
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	CapabilityBoundingSet: cap_chown cap_dac_override cap_fowner cap_setgid cap_setuid cap_net_bind_service
	ReadWriteDirs: -/var/lib/tor -/var/log/tor -/var/run
	ReadOnlyDirs: /
	-> ExecStartPre:
		Command Line: /usr/bin/install -Z -m 02750 -o debian-tor -g debian-tor -d /var/run/tor
		Command Line: /usr/bin/tor --defaults-torrc /usr/share/tor/tor-service-defaults-torrc -f /etc/tor/torrc --RunAsDaemon 0 --verify-config
	-> ExecStart:
		Command Line: /usr/bin/tor --defaults-torrc /usr/share/tor/tor-service-defaults-torrc -f /etc/tor/torrc --RunAsDaemon 0
	-> ExecReload:
		Command Line: /bin/kill -HUP ${MAINPID}
-> Unit festival.service:
	Description: festival.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: festival.service
	Before: speech-dispatcher.service
	ReferencedBy: speech-dispatcher.service
-> Unit dovecot.service:
	Description: LSB: Dovecot init script
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: Thu 2015-07-30 12:32:38 IST
	Active Enter Timestamp: Thu 2015-07-30 12:32:38 IST
	Active Exit Timestamp: Thu 2015-07-30 13:23:17 IST
	Inactive Enter Timestamp: Thu 2015-07-30 13:23:17 IST
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dovecot.service
	Documentation: man:systemd-sysv-generator(8)
	Fragment Path: /run/systemd/generator.late/dovecot.service
	Source Path: /etc/init.d/dovecot
	Condition Timestamp: Thu 2015-07-30 12:32:38 IST
	Condition Result: yes
	Assert Timestamp: Thu 2015-07-30 12:32:38 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	Wants: network-online.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: postfix.service
	After: basic.target
	After: postgresql.service
	After: local-fs.target
	After: systemd-journald.socket
	After: winbind.service
	After: time-sync.target
	After: remote-fs.target
	After: system.slice
	After: nslcd.service
	After: systemd-journald-dev-log.socket
	After: mysql.service
	After: network-online.target
	After: slapd.service
	References: shutdown.target
	References: systemd-journald-dev-log.socket
	References: system.slice
	References: postgresql.service
	References: remote-fs.target
	References: winbind.service
	References: systemd-journald.socket
	References: mysql.service
	References: nslcd.service
	References: time-sync.target
	References: network-online.target
	References: local-fs.target
	References: basic.target
	References: slapd.service
	ReferencedBy: postfix.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: no
	Type: forking
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /etc/init.d/dovecot start
	-> ExecStop:
		Command Line: /etc/init.d/dovecot stop
-> Unit shutdown.target:
	Description: Shutdown
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: shutdown.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/shutdown.target
	Wants: alsa-store.service
	ConflictedBy: systemd-logind.service
	ConflictedBy: systemd-random-seed.service
	ConflictedBy: systemd-timesyncd.service
	ConflictedBy: geoclue.service
	ConflictedBy: getty at tty7.service
	ConflictedBy: systemd-machine-id-commit.service
	ConflictedBy: org.freedesktop.hostname1.busname
	ConflictedBy: systemd-sysctl.service
	ConflictedBy: org.freedesktop.systemd1.busname
	ConflictedBy: syslog.socket
	ConflictedBy: gdomap.service
	ConflictedBy: systemd-tmpfiles-clean.timer
	ConflictedBy: org.freedesktop.locale1.busname
	ConflictedBy: avahi-daemon.socket
	ConflictedBy: udisks2.service
	ConflictedBy: anacron.service
	ConflictedBy: ModemManager.service
	ConflictedBy: uuidd.service
	ConflictedBy: bluetooth.target
	ConflictedBy: busnames.target
	ConflictedBy: machine.slice
	ConflictedBy: systemd-hostnamed.service
	ConflictedBy: sockets.target
	ConflictedBy: laptop-mode.timer
	ConflictedBy: timers.target
	ConflictedBy: systemd-update-utmp.service
	ConflictedBy: lvm2-lvmetad.service
	ConflictedBy: org.freedesktop.timedate1.busname
	ConflictedBy: systemd-ask-password-wall.service
	ConflictedBy: nss-user-lookup.target
	ConflictedBy: swap.target
	ConflictedBy: speech-dispatcher.service
	ConflictedBy: iodined.service
	ConflictedBy: emergency.target
	ConflictedBy: network-online.target
	ConflictedBy: dovecot.service
	ConflictedBy: colord.service
	ConflictedBy: systemd-ask-password-console.path
	ConflictedBy: upower.service
	ConflictedBy: networking.service
	ConflictedBy: bluetooth.service
	ConflictedBy: slices.target
	ConflictedBy: dbus.socket
	ConflictedBy: local-fs.target
	ConflictedBy: virtualbox.service
	ConflictedBy: getty.target
	ConflictedBy: lvm2-pvscan at 254:1.service
	ConflictedBy: systemd-networkd.service
	ConflictedBy: org.freedesktop.login1.busname
	ConflictedBy: mail-transport-agent.target
	ConflictedBy: org.freedesktop.resolve1.busname
	ConflictedBy: lvm2-monitor.service
	ConflictedBy: session-1.scope
	ConflictedBy: NetworkManager.service
	ConflictedBy: laptop-mode.service
	ConflictedBy: systemd-binfmt.service
	ConflictedBy: system-getty.slice
	ConflictedBy: cryptsetup.target
	ConflictedBy: system-systemd\x2dfsck.slice
	ConflictedBy: mysql.service
	ConflictedBy: iio-sensor-proxy.service
	ConflictedBy: lightdm.service
	ConflictedBy: systemd-localed.service
	ConflictedBy: packagekit.service
	ConflictedBy: polkitd.service
	ConflictedBy: atd.service
	ConflictedBy: wpa_supplicant.service
	ConflictedBy: systemd-timedated.service
	ConflictedBy: basic.target
	ConflictedBy: alsa-restore.service
	ConflictedBy: local-fs-pre.target
	ConflictedBy: dicod.service
	ConflictedBy: thermald.service
	ConflictedBy: paths.target
	ConflictedBy: rescue.target
	ConflictedBy: systemd-ask-password-console.service
	ConflictedBy: dnsmasq.service
	ConflictedBy: systemd-backlight at backlight:intel_backlight.service
	ConflictedBy: user.slice
	ConflictedBy: systemd-machined.service
	ConflictedBy: rescue.service
	ConflictedBy: emergency.service
	ConflictedBy: getty at tty1.service
	ConflictedBy: systemd-rfkill at rfkill10.service
	ConflictedBy: systemd-tmpfiles-setup.service
	ConflictedBy: systemd-remount-fs.service
	ConflictedBy: cron.service
	ConflictedBy: systemd-resolved.service
	ConflictedBy: tor.service
	ConflictedBy: remote-fs.target
	ConflictedBy: accounts-daemon.service
	ConflictedBy: systemd-rfkill at rfkill2.service
	ConflictedBy: system-lvm2\x2dpvscan.slice
	ConflictedBy: uuidd.socket
	ConflictedBy: inetd.service
	ConflictedBy: rc-local.service
	ConflictedBy: system-systemd\x2dbacklight.slice
	ConflictedBy: network.target
	ConflictedBy: systemd-tmpfiles-setup-dev.service
	ConflictedBy: org.freedesktop.network1.busname
	ConflictedBy: avahi-daemon.service
	ConflictedBy: sound.target
	ConflictedBy: systemd-modules-load.service
	ConflictedBy: getty-static.service
	ConflictedBy: irqbalance.service
	ConflictedBy: multi-user.target
	ConflictedBy: systemd-ask-password-wall.path
	ConflictedBy: pppd-dns.service
	ConflictedBy: user-1000.slice
	ConflictedBy: user at 1000.service
	ConflictedBy: systemd-rfkill at rfkill0.service
	ConflictedBy: lxc.service
	ConflictedBy: mcelog.service
	ConflictedBy: cryptsetup-pre.target
	ConflictedBy: remote-fs-pre.target
	ConflictedBy: systemd-update-utmp-runlevel.service
	ConflictedBy: sysinit.target
	ConflictedBy: minissdpd.service
	ConflictedBy: nss-lookup.target
	ConflictedBy: systemd-user-sessions.service
	ConflictedBy: systemd-hwdb-update.service
	ConflictedBy: system-systemd\x2dcryptsetup.slice
	ConflictedBy: org.freedesktop.machine1.busname
	ConflictedBy: systemd-tmpfiles-clean.service
	ConflictedBy: system-systemd\x2drfkill.slice
	ConflictedBy: rtkit-daemon.service
	ConflictedBy: time-sync.target
	ConflictedBy: postfix.service
	ConflictedBy: network-pre.target
	ConflictedBy: graphical.target
	ConflictedBy: systemd-rfkill at rfkill1.service
	ConflictedBy: apport.service
	ConflictedBy: dirmngr.service
	ConflictedBy: gdm.service
	ConflictedBy: dbus.service
	ConflictedBy: alsa-state.service
	After: syslog.socket
	After: systemd-update-utmp-runlevel.service
	After: uuidd.service
	After: systemd-fsck-root.service
	After: systemd-rfkill at rfkill2.service
	After: rc-local.service
	After: systemd-tmpfiles-clean.service
	After: systemd-machine-id-commit.service
	After: systemd-rfkill at rfkill10.service
	After: alsa-state.service
	After: polkitd.service
	After: alsa-store.service
	After: system-systemd\x2dcryptsetup.slice
	After: colord.service
	After: uuidd.socket
	After: systemd-logind.service
	After: systemd-resolved.service
	After: rtkit-daemon.service
	After: systemd-binfmt.service
	After: machine.slice
	After: systemd-update-utmp.service
	After: mcelog.service
	After: system-lvm2\x2dpvscan.slice
	After: systemd-rfkill at rfkill0.service
	After: getty at tty1.service
	After: user.slice
	After: udisks2.service
	After: NetworkManager.service
	After: systemd-machined.service
	After: accounts-daemon.service
	After: laptop-mode.timer
	After: anacron.service
	After: iio-sensor-proxy.service
	After: org.freedesktop.machine1.busname
	After: dbus.socket
	After: gdomap.service
	After: iodined.service
	After: systemd-user-sessions.service
	After: systemd-tmpfiles-setup.service
	After: system-systemd\x2dfsck.slice
	After: systemd-tmpfiles-setup-dev.service
	After: ModemManager.service
	After: apport.service
	After: atd.service
	After: systemd-fsck at dev-mapper-SSHDCrypt\x2dROOT.service
	After: systemd-fsck at dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.service
	After: getty at tty7.service
	After: gdm.service
	After: systemd-remount-fs.service
	After: org.freedesktop.network1.busname
	After: systemd-fsckd.service
	After: systemd-rfkill at rfkill1.service
	After: systemd-localed.service
	After: systemd-fsck at dev-disk-by\x2duuid-2206\x2d0BF2.service
	After: org.freedesktop.login1.busname
	After: laptop-mode.service
	After: org.freedesktop.locale1.busname
	After: org.freedesktop.timedate1.busname
	After: org.freedesktop.hostname1.busname
	After: dirmngr.service
	After: rescue.service
	After: irqbalance.service
	After: lvm2-pvscan at 254:1.service
	After: systemd-hwdb-update.service
	After: system-systemd\x2drfkill.slice
	After: systemd-ask-password-wall.service
	After: systemd-networkd.service
	After: dnsmasq.service
	After: tor.service
	After: dicod.service
	After: inetd.service
	After: systemd-hostnamed.service
	After: geoclue.service
	After: systemd-timesyncd.service
	After: avahi-daemon.service
	After: postfix.service
	After: mysql.service
	After: packagekit.service
	After: getty-static.service
	After: systemd-sysctl.service
	After: bluetooth.service
	After: networking.service
	After: org.freedesktop.resolve1.busname
	After: systemd-ask-password-console.path
	After: systemd-ask-password-wall.path
	After: system-getty.slice
	After: avahi-daemon.socket
	After: systemd-tmpfiles-clean.timer
	After: dbus.service
	After: org.freedesktop.systemd1.busname
	After: lvm2-activation.service
	After: lvm2-activation-early.service
	After: lxc.service
	After: dovecot.service
	After: systemd-backlight at backlight:intel_backlight.service
	After: systemd-modules-load.service
	After: virtualbox.service
	After: alsa-restore.service
	After: system-systemd\x2dbacklight.slice
	After: systemd-timedated.service
	After: thermald.service
	After: upower.service
	After: wpa_supplicant.service
	After: systemd-ask-password-console.service
	After: emergency.service
	After: pppd-dns.service
	After: speech-dispatcher.service
	After: minissdpd.service
	After: user-1000.slice
	After: systemd-random-seed.service
	After: user at 1000.service
	After: session-1.scope
	After: lightdm.service
	After: cron.service
	References: alsa-store.service
	ReferencedBy: systemd-update-utmp-runlevel.service
	ReferencedBy: avahi-daemon.socket
	ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-2206\x2d0BF2.service
	ReferencedBy: systemd-rfkill at rfkill0.service
	ReferencedBy: emergency.service
	ReferencedBy: lxc.service
	ReferencedBy: inetd.service
	ReferencedBy: system-getty.slice
	ReferencedBy: system-systemd\x2drfkill.slice
	ReferencedBy: virtualbox.service
	ReferencedBy: systemd-tmpfiles-clean.service
	ReferencedBy: systemd-tmpfiles-clean.timer
	ReferencedBy: systemd-hwdb-update.service
	ReferencedBy: org.freedesktop.timedate1.busname
	ReferencedBy: bluetooth.target
	ReferencedBy: anacron.service
	ReferencedBy: swap.target
	ReferencedBy: apport.service
	ReferencedBy: system-lvm2\x2dpvscan.slice
	ReferencedBy: cryptsetup.target
	ReferencedBy: org.freedesktop.machine1.busname
	ReferencedBy: systemd-binfmt.service
	ReferencedBy: irqbalance.service
	ReferencedBy: system-systemd\x2dcryptsetup.slice
	ReferencedBy: gdm.service
	ReferencedBy: systemd-backlight at backlight:intel_backlight.service
	ReferencedBy: basic.target
	ReferencedBy: local-fs-pre.target
	ReferencedBy: org.freedesktop.locale1.busname
	ReferencedBy: systemd-rfkill at rfkill1.service
	ReferencedBy: systemd-update-utmp.service
	ReferencedBy: systemd-ask-password-wall.path
	ReferencedBy: iio-sensor-proxy.service
	ReferencedBy: local-fs.target
	ReferencedBy: speech-dispatcher.service
	ReferencedBy: getty-static.service
	ReferencedBy: lightdm.service
	ReferencedBy: lvm2-monitor.service
	ReferencedBy: sysinit.target
	ReferencedBy: systemd-machined.service
	ReferencedBy: systemd-machine-id-commit.service
	ReferencedBy: alsa-restore.service
	ReferencedBy: system-systemd\x2dbacklight.slice
	ReferencedBy: org.freedesktop.login1.busname
	ReferencedBy: upower.service
	ReferencedBy: paths.target
	ReferencedBy: timers.target
	ReferencedBy: getty at tty7.service
	ReferencedBy: dirmngr.service
	ReferencedBy: colord.service
	ReferencedBy: multi-user.target
	ReferencedBy: lvm2-lvmetad.service
	ReferencedBy: iodined.service
	ReferencedBy: network.target
	ReferencedBy: user-1000.slice
	ReferencedBy: laptop-mode.service
	ReferencedBy: systemd-ask-password-console.path
	ReferencedBy: systemd-random-seed.service
	ReferencedBy: systemd-resolved.service
	ReferencedBy: udisks2.service
	ReferencedBy: systemd-sysctl.service
	ReferencedBy: systemd-modules-load.service
	ReferencedBy: NetworkManager.service
	ReferencedBy: remote-fs.target
	ReferencedBy: alsa-store.service
	ReferencedBy: systemd-tmpfiles-setup.service
	ReferencedBy: bluetooth.service
	ReferencedBy: dnsmasq.service
	ReferencedBy: alsa-state.service
	ReferencedBy: networking.service
	ReferencedBy: network-online.target
	ReferencedBy: pppd-dns.service
	ReferencedBy: dicod.service
	ReferencedBy: remote-fs-pre.target
	ReferencedBy: time-sync.target
	ReferencedBy: wpa_supplicant.service
	ReferencedBy: systemd-rfkill at rfkill10.service
	ReferencedBy: gdomap.service
	ReferencedBy: systemd-ask-password-console.service
	ReferencedBy: avahi-daemon.service
	ReferencedBy: mysql.service
	ReferencedBy: systemd-remount-fs.service
	ReferencedBy: busnames.target
	ReferencedBy: rtkit-daemon.service
	ReferencedBy: systemd-timesyncd.service
	ReferencedBy: systemd-fsck at dev-mapper-SSHDCrypt\x2dROOT.service
	ReferencedBy: slices.target
	ReferencedBy: org.freedesktop.hostname1.busname
	ReferencedBy: packagekit.service
	ReferencedBy: org.freedesktop.resolve1.busname
	ReferencedBy: cron.service
	ReferencedBy: systemd-timedated.service
	ReferencedBy: rescue.target
	ReferencedBy: systemd-localed.service
	ReferencedBy: systemd-hostnamed.service
	ReferencedBy: dbus.socket
	ReferencedBy: ModemManager.service
	ReferencedBy: atd.service
	ReferencedBy: systemd-rfkill at rfkill2.service
	ReferencedBy: lvm2-activation-early.service
	ReferencedBy: laptop-mode.timer
	ReferencedBy: rc-local.service
	ReferencedBy: sockets.target
	ReferencedBy: nss-lookup.target
	ReferencedBy: mcelog.service
	ReferencedBy: org.freedesktop.network1.busname
	ReferencedBy: cryptsetup-pre.target
	ReferencedBy: postfix.service
	ReferencedBy: user.slice
	ReferencedBy: polkitd.service
	ReferencedBy: nss-user-lookup.target
	ReferencedBy: getty at tty1.service
	ReferencedBy: thermald.service
	ReferencedBy: tor.service
	ReferencedBy: systemd-tmpfiles-setup-dev.service
	ReferencedBy: mail-transport-agent.target
	ReferencedBy: systemd-ask-password-wall.service
	ReferencedBy: systemd-user-sessions.service
	ReferencedBy: getty.target
	ReferencedBy: systemd-logind.service
	ReferencedBy: uuidd.service
	ReferencedBy: system-systemd\x2dfsck.slice
	ReferencedBy: machine.slice
	ReferencedBy: user at 1000.service
	ReferencedBy: dovecot.service
	ReferencedBy: syslog.socket
	ReferencedBy: uuidd.socket
	ReferencedBy: rescue.service
	ReferencedBy: session-1.scope
	ReferencedBy: emergency.target
	ReferencedBy: systemd-fsck-root.service
	ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.service
	ReferencedBy: systemd-fsckd.service
	ReferencedBy: graphical.target
	ReferencedBy: sound.target
	ReferencedBy: network-pre.target
	ReferencedBy: geoclue.service
	ReferencedBy: org.freedesktop.systemd1.busname
	ReferencedBy: lvm2-pvscan at 254:1.service
	ReferencedBy: lvm2-activation.service
	ReferencedBy: dbus.service
	ReferencedBy: minissdpd.service
	ReferencedBy: systemd-networkd.service
	ReferencedBy: accounts-daemon.service
	StopWhenUnneeded: no
	RefuseManualStart: yes
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: dead
-> Unit dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart5.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB Windows8_OS
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart5.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda5.device
	Following Set Member: dev-disk-by\x2dpartuuid-5616cb41\x2d5424\x2d4969\x2da0e3\x2d950d408f49c9.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda5.device
	Following Set Member: dev-disk-by\x2dlabel-Windows8_OS.device
	Following Set Member: dev-disk-by\x2duuid-3AEC0E87EC0E3E1F.device
	Following Set Member: dev-sda5.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart5.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda5
-> Unit systemd-networkd.service:
	Description: Network Service
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-networkd.service
	Documentation: man:systemd-networkd.service(8)
	Fragment Path: /lib/systemd/system/systemd-networkd.service
	ConditionCapability: CAP_NET_ADMIN untested
	Wants: system.slice
	Wants: network.target
	Wants: org.freedesktop.network1.busname
	Conflicts: shutdown.target
	Before: network.target
	Before: multi-user.target
	Before: shutdown.target
	Before: systemd-resolved.service
	After: systemd-journald.socket
	After: network-pre.target
	After: systemd-sysusers.service
	After: systemd-udevd.service
	After: dbus.service
	After: org.freedesktop.network1.busname
	After: system.slice
	TriggeredBy: org.freedesktop.network1.busname
	References: shutdown.target
	References: multi-user.target
	References: systemd-journald.socket
	References: network-pre.target
	References: systemd-sysusers.service
	References: network.target
	References: systemd-udevd.service
	References: dbus.service
	References: org.freedesktop.network1.busname
	References: system.slice
	ReferencedBy: systemd-resolved.service
	ReferencedBy: org.freedesktop.network1.busname
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: notify
	Restart: on-failure
	NotifyAccess: main
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: yes
	ProtectSystem: full
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	CapabilityBoundingSet: cap_chown cap_dac_override cap_fowner cap_setgid cap_setuid cap_setpcap cap_net_bind_service cap_net_broadcast cap_net_admin cap_net_raw
	-> ExecStart:
		Command Line: /lib/systemd/systemd-networkd
-> Unit fi.epitest.hostap.WPASupplicant.busname:
	Description: fi.epitest.hostap.WPASupplicant.busname
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: fi.epitest.hostap.WPASupplicant.busname
	Before: wpa_supplicant.service
	ReferencedBy: wpa_supplicant.service
-> Unit sys-devices-pci0000:00-0000:00:1c.0-0000:01:00.0-ieee80211-phy0-rfkill2.device:
	Description: /sys/devices/pci0000:00/0000:00:1c.0/0000:01:00.0/ieee80211/phy0/rfkill2
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:1c.0-0000:01:00.0-ieee80211-phy0-rfkill2.device
	Following Set Member: sys-subsystem-rfkill-devices-rfkill2.device
	Job Timeout: 1min 30s
	Wants: systemd-rfkill at rfkill2.service
	References: systemd-rfkill at rfkill2.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1c.0/0000:01:00.0/ieee80211/phy0/rfkill2
-> Unit mail-transport-agent.target:
	Description: Mail Transport Agent
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Thu 2015-07-30 12:32:38 IST
	Active Enter Timestamp: Thu 2015-07-30 12:32:38 IST
	Active Exit Timestamp: Thu 2015-07-30 12:32:37 IST
	Inactive Enter Timestamp: Thu 2015-07-30 12:32:37 IST
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: mail-transport-agent.target
	Fragment Path: /lib/systemd/system/mail-transport-agent.target
	Source Path: /etc/insserv.conf.d/postfix
	DropIn Path: /run/systemd/generator/mail-transport-agent.target.d/50-hard-dependency-postfix-$mail-transport-agent.conf
	Condition Timestamp: Thu 2015-07-30 12:32:38 IST
	Condition Result: yes
	Assert Timestamp: Thu 2015-07-30 12:32:38 IST
	Assert Result: yes
	Requires: postfix.service
	WantedBy: postfix.service
	Conflicts: shutdown.target
	After: postfix.service
	References: shutdown.target
	References: postfix.service
	ReferencedBy: postfix.service
	StopWhenUnneeded: no
	RefuseManualStart: yes
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit -.slice:
	Description: Root Slice
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: 
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x10
	Name: -.slice
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/-.slice
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	WantedBy: user.slice
	WantedBy: systemd-udevd-kernel.socket
	WantedBy: slices.target
	WantedBy: systemd-initctl.socket
	WantedBy: system.slice
	WantedBy: systemd-fsckd.socket
	WantedBy: systemd-journald-dev-log.socket
	WantedBy: dm-event.socket
	WantedBy: systemd-journald-audit.socket
	WantedBy: avahi-daemon.socket
	WantedBy: systemd-udevd-control.socket
	WantedBy: dbus.socket
	WantedBy: uuidd.socket
	WantedBy: machine.slice
	WantedBy: syslog.socket
	WantedBy: systemd-journald.socket
	WantedBy: lvm2-lvmetad.socket
	Before: uuidd.socket
	Before: systemd-journald.socket
	Before: systemd-udevd-kernel.socket
	Before: system.slice
	Before: machine.slice
	Before: lvm2-lvmetad.socket
	Before: systemd-journald-dev-log.socket
	Before: systemd-fsckd.socket
	Before: systemd-udevd-control.socket
	Before: dm-event.socket
	Before: avahi-daemon.socket
	Before: user.slice
	Before: systemd-initctl.socket
	Before: dbus.socket
	Before: syslog.socket
	Before: systemd-journald-audit.socket
	Before: slices.target
	References: slices.target
	ReferencedBy: dm-event.socket
	ReferencedBy: avahi-daemon.socket
	ReferencedBy: syslog.socket
	ReferencedBy: systemd-initctl.socket
	ReferencedBy: system.slice
	ReferencedBy: systemd-journald.socket
	ReferencedBy: systemd-udevd-control.socket
	ReferencedBy: slices.target
	ReferencedBy: lvm2-lvmetad.socket
	ReferencedBy: systemd-journald-audit.socket
	ReferencedBy: systemd-udevd-kernel.socket
	ReferencedBy: systemd-fsckd.socket
	ReferencedBy: machine.slice
	ReferencedBy: systemd-journald-dev-log.socket
	ReferencedBy: uuidd.socket
	ReferencedBy: user.slice
	ReferencedBy: dbus.socket
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Slice State: active
	CPUAccounting=no
	BlockIOAccounting=no
	MemoryAccounting=no
	CPUShares=18446744073709551615
	StartupCPUShares=18446744073709551615
	CPUQuotaPerSecSec=infinity
	BlockIOWeight=18446744073709551615
	StartupBlockIOWeight=18446744073709551615
	MemoryLimit=18446744073709551615
	DevicePolicy=auto
	Delegate=no
-> Unit mountkernfs.service:
	Description: mountkernfs.service
	Instance: n/a
	Unit Load State: masked
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: mountkernfs.service
	Fragment Path: /dev/null
	Before: keyboard-setup.service
	Before: networking.service
	ReferencedBy: keyboard-setup.service
	ReferencedBy: networking.service
-> Unit minissdpd.service:
	Description: LSB: keep memory of all UPnP devices that announced themselves
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/minissdpd.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: minissdpd.service
	Documentation: man:systemd-sysv-generator(8)
	Fragment Path: /run/systemd/generator.late/minissdpd.service
	Source Path: /etc/init.d/minissdpd
	Condition Timestamp: Wed 2015-07-29 15:29:22 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:22 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	Wants: network-online.target
	WantedBy: multi-user.target
	WantedBy: graphical.target
	Conflicts: shutdown.target
	Before: multi-user.target
	Before: shutdown.target
	Before: graphical.target
	After: basic.target
	After: local-fs.target
	After: remote-fs.target
	After: network-online.target
	After: system.slice
	After: systemd-journald.socket
	After: time-sync.target
	References: time-sync.target
	References: network-online.target
	References: systemd-journald.socket
	References: multi-user.target
	References: system.slice
	References: graphical.target
	References: remote-fs.target
	References: local-fs.target
	References: basic.target
	References: shutdown.target
	ReferencedBy: multi-user.target
	ReferencedBy: graphical.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: no
	Type: forking
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /etc/init.d/minissdpd start
	-> ExecReload:
		Command Line: /etc/init.d/minissdpd reload
	-> ExecStop:
		Command Line: /etc/init.d/minissdpd stop
-> Unit systemd-rfkill at rfkill1.service:
	Description: Load/Save RF Kill Switch Status of rfkill1
	Instance: rfkill1
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system-systemd\x2drfkill.slice
	CGroup: /system.slice/system-systemd\x2drfkill.slice/systemd-rfkill at rfkill1.service
	CGroup realized: yes
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-rfkill at rfkill1.service
	Documentation: man:systemd-rfkill at .service(8)
	Fragment Path: /lib/systemd/system/systemd-rfkill at .service
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Requires: -.mount
	Wants: system-systemd\x2drfkill.slice
	BindsTo: sys-subsystem-rfkill-devices-rfkill1.device
	WantedBy: sys-devices-pci0000:00-0000:00:1f.0-PNP0C09:00-VPC2004:00-rfkill-rfkill1.device
	Conflicts: shutdown.target
	Before: sysinit.target
	Before: shutdown.target
	After: systemd-remount-fs.service
	After: system-systemd\x2drfkill.slice
	After: -.mount
	After: systemd-journald.socket
	References: shutdown.target
	References: systemd-remount-fs.service
	References: sysinit.target
	References: systemd-journald.socket
	References: -.mount
	References: sys-subsystem-rfkill-devices-rfkill1.device
	References: system-systemd\x2drfkill.slice
	ReferencedBy: sys-devices-pci0000:00-0000:00:1f.0-PNP0C09:00-VPC2004:00-rfkill-rfkill1.device
	RequiresMountsFor: /var/lib/systemd/rfkill
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-rfkill load %I
	-> ExecStop:
		Command Line: /lib/systemd/systemd-rfkill save %I
-> Unit uuidd.socket:
	Description: UUID daemon activation socket
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: uuidd.socket
	Fragment Path: /lib/systemd/system/uuidd.socket
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: sysinit.target
	Requires: -.mount
	Wants: -.slice
	RequiredBy: uuidd.service
	WantedBy: sockets.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: uuidd.service
	Before: sockets.target
	After: sysinit.target
	After: -.mount
	After: -.slice
	Triggers: uuidd.service
	References: uuidd.service
	References: -.slice
	References: shutdown.target
	References: sockets.target
	References: -.mount
	References: sysinit.target
	ReferencedBy: sockets.target
	ReferencedBy: uuidd.service
	RequiresMountsFor: /run/uuidd/request
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Socket State: listening
	Result: success
	BindIPv6Only: default
	Backlog: 128
	SocketMode: 0666
	DirectoryMode: 0755
	KeepAlive: no
	NoDelay: no
	FreeBind: no
	Transparent: no
	Broadcast: no
	PassCredentials: no
	PassSecurity: no
	TCPCongestion: n/a
	RemoveOnStop: no
	SELinuxContextFromNet: no
	ListenStream: /run/uuidd/request
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit systemd-fsck at dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.service:
	Description: File System Check on /dev/disk/by-uuid/07502716-a1f8-4cec-a605-447e151b8021
	Instance: dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system-systemd\x2dfsck.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-fsck at dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.service
	Documentation: man:systemd-fsck at .service(8)
	Fragment Path: /lib/systemd/system/systemd-fsck at .service
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Wants: system-systemd\x2dfsck.slice
	Wants: systemd-fsckd.socket
	BindsTo: dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.device
	RequiredByOverridable: boot.mount
	Before: boot.mount
	Before: shutdown.target
	After: system-systemd\x2dfsck.slice
	After: local-fs-pre.target
	After: systemd-fsck-root.service
	After: dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.device
	After: systemd-journald.socket
	After: systemd-fsckd.socket
	References: systemd-fsckd.socket
	References: system-systemd\x2dfsck.slice
	References: local-fs-pre.target
	References: systemd-fsck-root.service
	References: shutdown.target
	References: dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.device
	References: systemd-journald.socket
	ReferencedBy: boot.mount
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-fsck %f
-> Unit ModemManager.service:
	Description: Modem Manager
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/ModemManager.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: ModemManager.service
	Fragment Path: /lib/systemd/system/ModemManager.service
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	WantedBy: multi-user.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: multi-user.target
	After: system.slice
	After: systemd-journald.socket
	After: org.freedesktop.ModemManager1.busname
	After: syslog.target
	After: basic.target
	References: system.slice
	References: systemd-journald.socket
	References: basic.target
	References: org.freedesktop.ModemManager1.busname
	References: shutdown.target
	References: syslog.target
	ReferencedBy: multi-user.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: dbus
	Restart: on-abort
	NotifyAccess: none
	NotifyState: unknown
	Main PID: 1092
	Main PID Known: yes
	Main PID Alien: no
	BusName: org.freedesktop.ModemManager1
	Bus Name Good: yes
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: null
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /usr/sbin/ModemManager
-> Unit udisks2.service:
	Description: Disk Manager
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:30:01 IST
	Active Enter Timestamp: Wed 2015-07-29 15:30:01 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/udisks2.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: udisks2.service
	Documentation: man:udisks(8)
	Fragment Path: /lib/systemd/system/udisks2.service
	Condition Timestamp: Wed 2015-07-29 15:30:01 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:30:01 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	Conflicts: shutdown.target
	Before: shutdown.target
	After: basic.target
	After: system.slice
	After: systemd-journald.socket
	After: org.freedesktop.UDisks2.busname
	References: systemd-journald.socket
	References: org.freedesktop.UDisks2.busname
	References: basic.target
	References: system.slice
	References: shutdown.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: dbus
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	Main PID: 9594
	Main PID Known: yes
	Main PID Alien: no
	BusName: org.freedesktop.UDisks2
	Bus Name Good: yes
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /usr/lib/udisks2/udisksd --no-debug
-> Unit user-1000.slice:
	Description: user-1000.slice
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:58 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:58 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: user.slice
	CGroup: /user.slice/user-1000.slice
	CGroup realized: yes
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: user-1000.slice
	Condition Timestamp: Wed 2015-07-29 15:29:58 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:58 IST
	Assert Result: yes
	Wants: user.slice
	WantedBy: user at 1000.service
	WantedBy: session-1.scope
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: user at 1000.service
	Before: session-1.scope
	After: user.slice
	References: shutdown.target
	References: user.slice
	ReferencedBy: user at 1000.service
	ReferencedBy: session-1.scope
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Slice State: active
	CPUAccounting=no
	BlockIOAccounting=no
	MemoryAccounting=no
	CPUShares=18446744073709551615
	StartupCPUShares=18446744073709551615
	CPUQuotaPerSecSec=infinity
	BlockIOWeight=18446744073709551615
	StartupBlockIOWeight=18446744073709551615
	MemoryLimit=18446744073709551615
	DevicePolicy=auto
	Delegate=no
-> Unit dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.device:
	Description: /dev/disk/by-uuid/b5647308-33d3-4b33-bbd4-67c47533d596
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.device
	Following: sys-devices-virtual-block-dm\x2d2.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.device
	Following Set Member: sys-devices-virtual-block-dm\x2d2.device
	Following Set Member: dev-dm\x2d2.device
	Following Set Member: dev-SSHDCrypt-SWAP.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.device
	Following Set Member: dev-mapper-SSHDCrypt\x2dSWAP.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-2
-> Unit dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.device:
	Description: /dev/disk/by-id/dm-uuid-LVM-bs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.device
	Following: sys-devices-virtual-block-dm\x2d2.device
	Following Set Member: sys-devices-virtual-block-dm\x2d2.device
	Following Set Member: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.device
	Following Set Member: dev-dm\x2d2.device
	Following Set Member: dev-SSHDCrypt-SWAP.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.device
	Following Set Member: dev-mapper-SSHDCrypt\x2dSWAP.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-2
-> Unit system-systemd\x2drfkill.slice:
	Description: system-systemd\x2drfkill.slice
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/system-systemd\x2drfkill.slice
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: system-systemd\x2drfkill.slice
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Wants: system.slice
	WantedBy: systemd-rfkill at rfkill10.service
	WantedBy: systemd-rfkill at rfkill1.service
	WantedBy: systemd-rfkill at rfkill2.service
	WantedBy: systemd-rfkill at rfkill0.service
	Conflicts: shutdown.target
	Before: systemd-rfkill at rfkill10.service
	Before: systemd-rfkill at rfkill2.service
	Before: systemd-rfkill at rfkill1.service
	Before: systemd-rfkill at rfkill0.service
	Before: shutdown.target
	After: system.slice
	References: shutdown.target
	References: system.slice
	ReferencedBy: systemd-rfkill at rfkill10.service
	ReferencedBy: systemd-rfkill at rfkill1.service
	ReferencedBy: systemd-rfkill at rfkill2.service
	ReferencedBy: systemd-rfkill at rfkill0.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Slice State: active
	CPUAccounting=no
	BlockIOAccounting=no
	MemoryAccounting=no
	CPUShares=18446744073709551615
	StartupCPUShares=18446744073709551615
	CPUQuotaPerSecSec=infinity
	BlockIOWeight=18446744073709551615
	StartupBlockIOWeight=18446744073709551615
	MemoryLimit=18446744073709551615
	DevicePolicy=auto
	Delegate=no
-> Unit systemd-modules-load.service:
	Description: Load Kernel Modules
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/systemd-modules-load.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: systemd-modules-load.service
	Documentation: man:systemd-modules-load.service(8)
	Documentation: man:modules-load.d(5)
	Fragment Path: /lib/systemd/system/systemd-modules-load.service
	ConditionKernelCommandLine: |rd.modules-load untested
	ConditionKernelCommandLine: |modules-load untested
	ConditionDirectoryNotEmpty: |/run/modules-load.d untested
	ConditionDirectoryNotEmpty: |/etc/modules-load.d untested
	ConditionDirectoryNotEmpty: |/usr/local/lib/modules-load.d untested
	ConditionDirectoryNotEmpty: |/usr/lib/modules-load.d untested
	ConditionDirectoryNotEmpty: |/lib/modules-load.d untested
	ConditionCapability: CAP_SYS_MODULE untested
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Wants: system.slice
	WantedBy: sysinit.target
	Conflicts: shutdown.target
	Before: systemd-sysctl.service
	Before: sysinit.target
	Before: sys-fs-fuse-connections.mount
	Before: shutdown.target
	Before: sys-kernel-config.mount
	After: systemd-journald.socket
	After: system.slice
	References: sysinit.target
	References: shutdown.target
	References: systemd-journald.socket
	References: system.slice
	ReferencedBy: sysinit.target
	ReferencedBy: sys-kernel-config.mount
	ReferencedBy: sys-fs-fuse-connections.mount
	ReferencedBy: systemd-sysctl.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-modules-load
-> Unit dev-sda7.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB 7
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-sda7.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda7.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda7.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart7.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart7.device
	Following Set Member: dev-disk-by\x2duuid-a1d51c69\x2dc438\x2d428b\x2d8346\x2d273abcbf5a52.device
	Following Set Member: dev-disk-by\x2dpartuuid-5c76f548\x2dae81\x2d455c\x2d9fef\x2d4ef79ce9b11d.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda7
-> Unit dev-dm\x2d2.swap:
	Description: /dev/dm-2
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/dev-dm\x2d2.swap
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: dev-dm\x2d2.swap
	Following: dev-mapper-SSHDCrypt\x2dSWAP.swap
	Following Set Member: dev-SSHDCrypt-SWAP.swap
	Following Set Member: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.swap
	Following Set Member: dev-mapper-SSHDCrypt\x2dSWAP.swap
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.swap
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.swap
	Requires: -.mount
	Wants: system.slice
	Conflicts: umount.target
	Before: umount.target
	After: -.mount
	After: systemd-journald.socket
	After: system.slice
	References: umount.target
	References: -.mount
	References: systemd-journald.socket
	References: system.slice
	RequiresMountsFor: /dev/dm-2
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Swap State: active
	Result: success
	What: /dev/dm-2
	From /proc/swaps: yes
	From fragment: no
	Device Node: /dev/dm-2
	Priority: -1
	Options: 
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit org.freedesktop.thermald.busname:
	Description: org.freedesktop.thermald.busname
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: org.freedesktop.thermald.busname
	Before: thermald.service
	ReferencedBy: thermald.service
-> Unit packagekit.service:
	Description: PackageKit Daemon
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:25 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:25 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/packagekit.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: packagekit.service
	Fragment Path: /lib/systemd/system/packagekit.service
	Condition Timestamp: Wed 2015-07-29 15:29:25 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:25 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	Conflicts: shutdown.target
	Before: shutdown.target
	After: system.slice
	After: org.freedesktop.PackageKit.busname
	After: systemd-journald.socket
	After: basic.target
	References: systemd-journald.socket
	References: basic.target
	References: system.slice
	References: shutdown.target
	References: org.freedesktop.PackageKit.busname
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: dbus
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	Main PID: 8906
	Main PID Known: yes
	Main PID Alien: no
	BusName: org.freedesktop.PackageKit
	Bus Name Good: yes
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	User: root
	-> ExecStart:
		Command Line: /usr/lib/packagekit/packagekitd
-> Unit time-sync.target:
	Description: System Time Synchronized
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: time-sync.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/time-sync.target
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	WantedBy: systemd-timesyncd.service
	Conflicts: shutdown.target
	Before: anacron.service
	Before: mysql.service
	Before: dovecot.service
	Before: systemd-tmpfiles-clean.service
	Before: minissdpd.service
	Before: postfix.service
	After: systemd-timesyncd.service
	References: shutdown.target
	ReferencedBy: dovecot.service
	ReferencedBy: systemd-timesyncd.service
	ReferencedBy: anacron.service
	ReferencedBy: minissdpd.service
	ReferencedBy: systemd-tmpfiles-clean.service
	ReferencedBy: mysql.service
	ReferencedBy: postfix.service
	StopWhenUnneeded: no
	RefuseManualStart: yes
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit sys-module-fuse.device:
	Description: /sys/module/fuse
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:30:01 IST
	Active Enter Timestamp: Wed 2015-07-29 15:30:01 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-module-fuse.device
	Job Timeout: 1min 30s
	Wants: sys-fs-fuse-connections.mount
	References: sys-fs-fuse-connections.mount
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/module/fuse
-> Unit sys-subsystem-bluetooth-devices-hci0.device:
	Description: /sys/subsystem/bluetooth/devices/hci0
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Fri 2015-07-31 21:58:59 IST
	Active Enter Timestamp: Fri 2015-07-31 21:58:59 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-subsystem-bluetooth-devices-hci0.device
	Following Set Member: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d7-1\x2d7:1.0-bluetooth-hci0.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/bluetooth/hci0
-> Unit -.mount:
	Description: /
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/-.mount
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: -.mount
	Documentation: man:fstab(5)
	Documentation: man:systemd-fstab-generator(8)
	Fragment Path: /run/systemd/generator/-.mount
	Source Path: /etc/fstab
	Wants: system.slice
	RequiredBy: dev-hugepages.mount
	RequiredBy: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.swap
	RequiredBy: syslog.socket
	RequiredBy: rescue.service
	RequiredBy: uuidd.socket
	RequiredBy: sys-fs-fuse-connections.mount
	RequiredBy: rtkit-daemon.service
	RequiredBy: systemd-localed.service
	RequiredBy: systemd-rfkill at rfkill0.service
	RequiredBy: systemd-random-seed.service
	RequiredBy: dev-mapper-SSHDCrypt\x2dSWAP.swap
	RequiredBy: sys-kernel-config.mount
	RequiredBy: systemd-journal-flush.service
	RequiredBy: var-lib-machines.mount
	RequiredBy: avahi-daemon.socket
	RequiredBy: systemd-timedated.service
	RequiredBy: proc-sys-fs-binfmt_misc.mount
	RequiredBy: local-fs.target
	RequiredBy: media-SSHD.mount
	RequiredBy: systemd-backlight at backlight:intel_backlight.service
	RequiredBy: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.swap
	RequiredBy: systemd-udevd-control.socket
	RequiredBy: colord.service
	RequiredBy: dm-event.socket
	RequiredBy: systemd-rfkill at rfkill1.service
	RequiredBy: dev-mqueue.mount
	RequiredBy: systemd-initctl.socket
	RequiredBy: systemd-hostnamed.service
	RequiredBy: boot.mount
	RequiredBy: boot-efi.mount
	RequiredBy: systemd-rfkill at rfkill2.service
	RequiredBy: emergency.service
	RequiredBy: systemd-timesyncd.service
	RequiredBy: proc-sys-fs-binfmt_misc.automount
	RequiredBy: tor.service
	RequiredBy: run-user-1000-gvfs.mount
	RequiredBy: systemd-fsckd.socket
	RequiredBy: systemd-update-utmp.service
	RequiredBy: systemd-journald.socket
	RequiredBy: systemd-rfkill at rfkill10.service
	RequiredBy: run-user-1000.mount
	RequiredBy: dev-dm\x2d2.swap
	RequiredBy: systemd-update-utmp-runlevel.service
	RequiredBy: lvm2-lvmetad.socket
	RequiredBy: systemd-ask-password-wall.path
	RequiredBy: systemd-ask-password-console.path
	RequiredBy: dev-SSHDCrypt-SWAP.swap
	RequiredBy: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.swap
	RequiredBy: systemd-journald-dev-log.socket
	RequiredBy: basic.target
	RequiredBy: sys-kernel-debug.mount
	RequiredBy: dbus.socket
	Before: systemd-rfkill at rfkill1.service
	Before: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.swap
	Before: emergency.service
	Before: systemd-journald-dev-log.socket
	Before: systemd-udevd-control.socket
	Before: var-lib-machines.mount
	Before: sys-fs-fuse-connections.mount
	Before: uuidd.socket
	Before: systemd-rfkill at rfkill10.service
	Before: boot.mount
	Before: systemd-ask-password-console.path
	Before: systemd-update-utmp.service
	Before: tor.service
	Before: sys-kernel-debug.mount
	Before: syslog.socket
	Before: systemd-rfkill at rfkill0.service
	Before: systemd-update-utmp-runlevel.service
	Before: basic.target
	Before: systemd-ask-password-wall.path
	Before: systemd-rfkill at rfkill2.service
	Before: proc-sys-fs-binfmt_misc.mount
	Before: systemd-initctl.socket
	Before: systemd-localed.service
	Before: systemd-backlight at backlight:intel_backlight.service
	Before: avahi-daemon.socket
	Before: systemd-timesyncd.service
	Before: dev-SSHDCrypt-SWAP.swap
	Before: systemd-fsckd.socket
	Before: dbus.socket
	Before: systemd-timedated.service
	Before: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.swap
	Before: systemd-journal-flush.service
	Before: run-user-1000-gvfs.mount
	Before: proc-sys-fs-binfmt_misc.automount
	Before: dev-hugepages.mount
	Before: systemd-random-seed.service
	Before: systemd-journald.socket
	Before: colord.service
	Before: run-user-1000.mount
	Before: dev-mqueue.mount
	Before: lvm2-lvmetad.socket
	Before: rtkit-daemon.service
	Before: rescue.service
	Before: dev-dm\x2d2.swap
	Before: media-SSHD.mount
	Before: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.swap
	Before: boot-efi.mount
	Before: dm-event.socket
	Before: dev-mapper-SSHDCrypt\x2dSWAP.swap
	Before: systemd-hostnamed.service
	Before: sys-kernel-config.mount
	Before: local-fs.target
	After: system.slice
	References: local-fs.target
	References: system.slice
	ReferencedBy: var-lib-machines.mount
	ReferencedBy: sys-kernel-config.mount
	ReferencedBy: emergency.service
	ReferencedBy: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.swap
	ReferencedBy: basic.target
	ReferencedBy: systemd-timesyncd.service
	ReferencedBy: media-SSHD.mount
	ReferencedBy: dev-mqueue.mount
	ReferencedBy: avahi-daemon.socket
	ReferencedBy: local-fs.target
	ReferencedBy: systemd-rfkill at rfkill0.service
	ReferencedBy: rtkit-daemon.service
	ReferencedBy: systemd-ask-password-console.path
	ReferencedBy: systemd-localed.service
	ReferencedBy: systemd-rfkill at rfkill1.service
	ReferencedBy: boot-efi.mount
	ReferencedBy: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.swap
	ReferencedBy: rescue.service
	ReferencedBy: syslog.socket
	ReferencedBy: dev-hugepages.mount
	ReferencedBy: systemd-update-utmp-runlevel.service
	ReferencedBy: dbus.socket
	ReferencedBy: systemd-ask-password-wall.path
	ReferencedBy: systemd-random-seed.service
	ReferencedBy: systemd-journald-dev-log.socket
	ReferencedBy: proc-sys-fs-binfmt_misc.mount
	ReferencedBy: dev-SSHDCrypt-SWAP.swap
	ReferencedBy: colord.service
	ReferencedBy: systemd-journal-flush.service
	ReferencedBy: proc-sys-fs-binfmt_misc.automount
	ReferencedBy: dev-mapper-SSHDCrypt\x2dSWAP.swap
	ReferencedBy: systemd-udevd-control.socket
	ReferencedBy: tor.service
	ReferencedBy: lvm2-lvmetad.socket
	ReferencedBy: systemd-journald.socket
	ReferencedBy: dm-event.socket
	ReferencedBy: sys-fs-fuse-connections.mount
	ReferencedBy: systemd-hostnamed.service
	ReferencedBy: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.swap
	ReferencedBy: systemd-rfkill at rfkill2.service
	ReferencedBy: systemd-backlight at backlight:intel_backlight.service
	ReferencedBy: run-user-1000-gvfs.mount
	ReferencedBy: sys-kernel-debug.mount
	ReferencedBy: systemd-initctl.socket
	ReferencedBy: boot.mount
	ReferencedBy: systemd-update-utmp.service
	ReferencedBy: systemd-timedated.service
	ReferencedBy: systemd-fsckd.socket
	ReferencedBy: uuidd.socket
	ReferencedBy: run-user-1000.mount
	ReferencedBy: dev-dm\x2d2.swap
	ReferencedBy: systemd-rfkill at rfkill10.service
	RequiresMountsFor: /dev/mapper/sdb_crypt
	StopWhenUnneeded: no
	RefuseManualStart: yes
	RefuseManualStop: yes
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Mount State: mounted
	Result: success
	Where: /
	What: /dev/dm-0
	File System Type: ext4
	Options: rw,relatime,errors=remount-ro,commit=600,data=writeback
	From /proc/self/mountinfo: yes
	From fragment: yes
	DirectoryMode: 0755
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: inherit
	StandardError: inherit
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit org.freedesktop.GeoClue2.busname:
	Description: org.freedesktop.GeoClue2.busname
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: org.freedesktop.GeoClue2.busname
	Before: geoclue.service
	ReferencedBy: geoclue.service
-> Unit dev-disk-by\x2duuid-268003D18003A681.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB WINRE_DRV
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2duuid-268003D18003A681.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
	Following Set Member: dev-disk-by\x2dlabel-WINRE_DRV.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart1.device
	Following Set Member: dev-disk-by\x2dpartuuid-26145e88\x2dc087\x2d4701\x2da765\x2dd9bc0b1cc602.device
	Following Set Member: dev-sda1.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart1.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1
-> Unit sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB SYSTEM_DRV
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart2.device
	Following Set Member: dev-disk-by\x2duuid-2206\x2d0BF2.device
	Following Set Member: dev-disk-by\x2dlabel-SYSTEM_DRV.device
	Following Set Member: dev-sda2.device
	Following Set Member: dev-disk-by\x2dpartuuid-cf1d0c57\x2d42fa\x2d4fd7\x2dbfa0\x2ddb8cf69fcd61.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart2.device
	Following Set Member: dev-disk-by\x2dpartlabel-EFI\x5cx20system\x5cx20partition.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda2
-> Unit systemd-rfkill at rfkill2.service:
	Description: Load/Save RF Kill Switch Status of rfkill2
	Instance: rfkill2
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system-systemd\x2drfkill.slice
	CGroup: /system.slice/system-systemd\x2drfkill.slice/systemd-rfkill at rfkill2.service
	CGroup realized: yes
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-rfkill at rfkill2.service
	Documentation: man:systemd-rfkill at .service(8)
	Fragment Path: /lib/systemd/system/systemd-rfkill at .service
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Requires: -.mount
	Wants: system-systemd\x2drfkill.slice
	BindsTo: sys-subsystem-rfkill-devices-rfkill2.device
	WantedBy: sys-devices-pci0000:00-0000:00:1c.0-0000:01:00.0-ieee80211-phy0-rfkill2.device
	Conflicts: shutdown.target
	Before: sysinit.target
	Before: shutdown.target
	After: systemd-remount-fs.service
	After: system-systemd\x2drfkill.slice
	After: -.mount
	After: systemd-journald.socket
	References: sysinit.target
	References: shutdown.target
	References: system-systemd\x2drfkill.slice
	References: systemd-remount-fs.service
	References: sys-subsystem-rfkill-devices-rfkill2.device
	References: -.mount
	References: systemd-journald.socket
	ReferencedBy: sys-devices-pci0000:00-0000:00:1c.0-0000:01:00.0-ieee80211-phy0-rfkill2.device
	RequiresMountsFor: /var/lib/systemd/rfkill
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-rfkill load %I
	-> ExecStop:
		Command Line: /lib/systemd/systemd-rfkill save %I
-> Unit rtkit-daemon.service:
	Description: RealtimeKit Scheduling Policy Service
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Thu 2015-07-30 12:32:37 IST
	Active Enter Timestamp: Thu 2015-07-30 12:32:38 IST
	Active Exit Timestamp: Thu 2015-07-30 12:32:37 IST
	Inactive Enter Timestamp: Thu 2015-07-30 12:32:37 IST
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/rtkit-daemon.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: rtkit-daemon.service
	Fragment Path: /lib/systemd/system/rtkit-daemon.service
	Condition Timestamp: Thu 2015-07-30 12:32:37 IST
	Condition Result: yes
	Assert Timestamp: Thu 2015-07-30 12:32:37 IST
	Assert Result: yes
	Requires: -.mount
	Requires: basic.target
	Wants: system.slice
	Conflicts: shutdown.target
	Before: shutdown.target
	After: systemd-journald.socket
	After: -.mount
	After: basic.target
	After: system.slice
	After: org.freedesktop.RealtimeKit1.busname
	References: systemd-journald.socket
	References: -.mount
	References: basic.target
	References: org.freedesktop.RealtimeKit1.busname
	References: system.slice
	References: shutdown.target
	RequiresMountsFor: /tmp /var/tmp
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: dbus
	Restart: no
	NotifyAccess: main
	NotifyState: unknown
	Main PID: 28713
	Main PID Known: yes
	Main PID Alien: no
	BusName: org.freedesktop.RealtimeKit1
	Bus Name Good: yes
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: yes
	PrivateNetwork: yes
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	CapabilityBoundingSet: cap_dac_read_search cap_setgid cap_setuid cap_sys_chroot cap_sys_ptrace cap_sys_nice
	-> ExecStart:
		Command Line: /usr/lib/rtkit/rtkit-daemon
-> Unit dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart1.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB WINRE_DRV
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart1.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
	Following Set Member: dev-disk-by\x2duuid-268003D18003A681.device
	Following Set Member: dev-disk-by\x2dlabel-WINRE_DRV.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart1.device
	Following Set Member: dev-disk-by\x2dpartuuid-26145e88\x2dc087\x2d4701\x2da765\x2dd9bc0b1cc602.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
	Following Set Member: dev-sda1.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1
-> Unit dev-iio:device5.device:
	Description: /dev/iio:device5
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-iio:device5.device
	Following: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200041.7.auto-iio:device5.device
	Following Set Member: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200041.7.auto-iio:device5.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200041.7.auto/iio:device5
-> Unit user.slice:
	Description: User and Session Slice
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: -.slice
	CGroup: /user.slice
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: user.slice
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/user.slice
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Wants: -.slice
	WantedBy: systemd-logind.service
	WantedBy: user-1000.slice
	Conflicts: shutdown.target
	Before: user-1000.slice
	Before: systemd-logind.service
	Before: shutdown.target
	Before: slices.target
	After: -.slice
	References: -.slice
	References: shutdown.target
	References: slices.target
	ReferencedBy: systemd-logind.service
	ReferencedBy: user-1000.slice
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Slice State: active
	CPUAccounting=no
	BlockIOAccounting=no
	MemoryAccounting=no
	CPUShares=18446744073709551615
	StartupCPUShares=18446744073709551615
	CPUQuotaPerSecSec=infinity
	BlockIOWeight=18446744073709551615
	StartupBlockIOWeight=18446744073709551615
	MemoryLimit=18446744073709551615
	DevicePolicy=auto
	Delegate=no
-> Unit dev-iio:device0.device:
	Description: /dev/iio:device0
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-iio:device0.device
	Following: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200073.2.auto-iio:device0.device
	Following Set Member: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200073.2.auto-iio:device0.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200073.2.auto/iio:device0
-> Unit dev-disk-by\x2dlabel-LRS_ESP.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB LRS_ESP
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2dlabel-LRS_ESP.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart3.device
	Following Set Member: dev-sda3.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
	Following Set Member: dev-disk-by\x2duuid-D20A\x2dAF97.device
	Following Set Member: dev-disk-by\x2dpartuuid-e066dcd7\x2d9fbb\x2d4d00\x2da952\x2dee54e59db6f9.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart3.device
	Following Set Member: dev-disk-by\x2dpartlabel-Basic\x5cx20data\x5cx20partition.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda3
-> Unit systemd-vconsole-setup.service:
	Description: systemd-vconsole-setup.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-vconsole-setup.service
	Before: systemd-ask-password-console.service
	ReferencedBy: systemd-ask-password-console.service
-> Unit emergency.target:
	Description: Emergency Mode
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: emergency.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/emergency.target
	Requires: emergency.service
	Conflicts: shutdown.target
	ConflictedBy: sysinit.target
	Before: sysinit.target
	After: emergency.service
	References: emergency.service
	References: shutdown.target
	ReferencedBy: sysinit.target
	ReferencedBy: local-fs.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: dead
-> Unit iodined.service:
	Description: LSB: initscript for iodined
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/iodined.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: iodined.service
	Documentation: man:systemd-sysv-generator(8)
	Fragment Path: /run/systemd/generator.late/iodined.service
	Source Path: /etc/init.d/iodined
	Condition Timestamp: Wed 2015-07-29 15:29:22 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:22 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	Wants: network-online.target
	WantedBy: multi-user.target
	WantedBy: graphical.target
	Conflicts: shutdown.target
	Before: multi-user.target
	Before: shutdown.target
	Before: graphical.target
	After: nss-lookup.target
	After: systemd-journald-dev-log.socket
	After: remote-fs.target
	After: systemd-journald.socket
	After: basic.target
	After: network-online.target
	After: system.slice
	References: systemd-journald-dev-log.socket
	References: nss-lookup.target
	References: shutdown.target
	References: graphical.target
	References: remote-fs.target
	References: systemd-journald.socket
	References: basic.target
	References: network-online.target
	References: multi-user.target
	References: system.slice
	ReferencedBy: multi-user.target
	ReferencedBy: graphical.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: no
	Type: forking
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /etc/init.d/iodined start
	-> ExecStop:
		Command Line: /etc/init.d/iodined stop
-> Unit upower.service:
	Description: Daemon for power management
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:23 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:23 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/upower.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: upower.service
	Documentation: man:upowerd(8)
	Fragment Path: /lib/systemd/system/upower.service
	Condition Timestamp: Wed 2015-07-29 15:29:23 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:23 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	Conflicts: shutdown.target
	Before: shutdown.target
	After: system.slice
	After: org.freedesktop.UPower.busname
	After: systemd-journald.socket
	After: basic.target
	References: systemd-journald.socket
	References: org.freedesktop.UPower.busname
	References: basic.target
	References: system.slice
	References: shutdown.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: dbus
	Restart: on-failure
	NotifyAccess: none
	NotifyState: unknown
	Main PID: 5470
	Main PID Known: yes
	Main PID Alien: no
	BusName: org.freedesktop.UPower
	Bus Name Good: yes
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /usr/lib/upower/upowerd
-> Unit dev-disk-by\x2did-ata\x2dKINGSTON_SM2280S3120G_50026B7251189BF2.device:
	Description: KINGSTON_SM2280S3120G
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-ata\x2dKINGSTON_SM2280S3120G_50026B7251189BF2.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device
	Following Set Member: dev-disk-by\x2duuid-8f7094e7\x2dd2eb\x2d453f\x2db2b7\x2d1a162de14111.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device
	Following Set Member: dev-sdb.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb
-> Unit dev-mapper-sda7_crypt.device:
	Description: LVM PV kohKZh-NmaK-NWe0-1v3E-wmUk-K9bT-NOCn0f on /dev/dm-1
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-mapper-sda7_crypt.device
	Following: sys-devices-virtual-block-dm\x2d1.device
	Following Set Member: sys-devices-virtual-block-dm\x2d1.device
	Following Set Member: dev-block-254:1.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dCRYPT\x2dLUKS1\x2da1d51c69c438428b8346273abcbf5a52\x2dsda7_crypt.device
	Following Set Member: dev-disk-by\x2did-lvm\x2dpv\x2duuid\x2dkohKZh\x2dNmaK\x2dNWe0\x2d1v3E\x2dwmUk\x2dK9bT\x2dNOCn0f.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dsda7_crypt.device
	Following Set Member: dev-dm\x2d1.device
	DropIn Path: /run/systemd/generator/dev-mapper-sda7_crypt.device.d/90-device-timeout.conf
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Requires: systemd-cryptsetup at sda7_crypt.service
	BoundBy: systemd-cryptsetup at sda7_crypt.service
	References: systemd-cryptsetup at sda7_crypt.service
	ReferencedBy: systemd-cryptsetup at sda7_crypt.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-1
-> Unit mysql.service:
	Description: LSB: Start and stop the mysql database server daemon
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: mysql.service
	Documentation: man:systemd-sysv-generator(8)
	Fragment Path: /run/systemd/generator.late/mysql.service
	Source Path: /etc/init.d/mysql
	Requires: basic.target
	Wants: system.slice
	Wants: network-online.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: postfix.service
	Before: dovecot.service
	After: basic.target
	After: remote-fs.target
	After: systemd-journald.socket
	After: system.slice
	After: systemd-journald-dev-log.socket
	After: time-sync.target
	After: network-online.target
	After: nss-lookup.target
	References: shutdown.target
	References: basic.target
	References: remote-fs.target
	References: systemd-journald.socket
	References: system.slice
	References: systemd-journald-dev-log.socket
	References: time-sync.target
	References: network-online.target
	References: nss-lookup.target
	ReferencedBy: postfix.service
	ReferencedBy: dovecot.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: no
	Type: forking
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /etc/init.d/mysql start
	-> ExecReload:
		Command Line: /etc/init.d/mysql reload
	-> ExecStop:
		Command Line: /etc/init.d/mysql stop
-> Unit org.freedesktop.ColorManager.busname:
	Description: org.freedesktop.ColorManager.busname
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: org.freedesktop.ColorManager.busname
	Before: colord.service
	ReferencedBy: colord.service
-> Unit basic.target:
	Description: Basic System
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: basic.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/basic.target
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: sysinit.target
	Requires: -.mount
	Wants: sockets.target
	Wants: paths.target
	Wants: alsa-state.service
	Wants: slices.target
	Wants: alsa-restore.service
	Wants: timers.target
	RequiredBy: avahi-daemon.service
	RequiredBy: postfix.service
	RequiredBy: systemd-ask-password-wall.service
	RequiredBy: getty-static.service
	RequiredBy: gdomap.service
	RequiredBy: geoclue.service
	RequiredBy: getty at tty7.service
	RequiredBy: virtualbox.service
	RequiredBy: minissdpd.service
	RequiredBy: atd.service
	RequiredBy: dnsmasq.service
	RequiredBy: polkitd.service
	RequiredBy: iio-sensor-proxy.service
	RequiredBy: mysql.service
	RequiredBy: wpa_supplicant.service
	RequiredBy: lxc.service
	RequiredBy: NetworkManager.service
	RequiredBy: multi-user.target
	RequiredBy: accounts-daemon.service
	RequiredBy: dbus.service
	RequiredBy: anacron.service
	RequiredBy: lightdm.service
	RequiredBy: uuidd.service
	RequiredBy: upower.service
	RequiredBy: gdm.service
	RequiredBy: bluetooth.service
	RequiredBy: packagekit.service
	RequiredBy: getty at tty1.service
	RequiredBy: rc-local.service
	RequiredBy: iodined.service
	RequiredBy: laptop-mode.service
	RequiredBy: udisks2.service
	RequiredBy: pppd-dns.service
	RequiredBy: dovecot.service
	RequiredBy: dirmngr.service
	RequiredBy: rtkit-daemon.service
	RequiredBy: systemd-logind.service
	RequiredBy: user at 1000.service
	RequiredBy: mcelog.service
	RequiredBy: ModemManager.service
	RequiredBy: systemd-resolved.service
	RequiredBy: colord.service
	RequiredBy: tor.service
	RequiredBy: systemd-user-sessions.service
	RequiredBy: thermald.service
	RequiredBy: systemd-machined.service
	RequiredBy: systemd-timedated.service
	RequiredBy: speech-dispatcher.service
	RequiredBy: cron.service
	RequiredBy: irqbalance.service
	RequiredBy: apport.service
	RequiredBy: systemd-hostnamed.service
	RequiredBy: systemd-localed.service
	RequiredBy: inetd.service
	RequiredBy: dicod.service
	Conflicts: shutdown.target
	Before: avahi-daemon.service
	Before: systemd-resolved.service
	Before: rc-local.service
	Before: inetd.service
	Before: dnsmasq.service
	Before: cron.service
	Before: mcelog.service
	Before: systemd-hostnamed.service
	Before: multi-user.target
	Before: wpa_supplicant.service
	Before: gdomap.service
	Before: rtkit-daemon.service
	Before: mysql.service
	Before: pppd-dns.service
	Before: udisks2.service
	Before: NetworkManager.service
	Before: irqbalance.service
	Before: thermald.service
	Before: ModemManager.service
	Before: dbus.service
	Before: geoclue.service
	Before: systemd-ask-password-wall.service
	Before: lxc.service
	Before: systemd-machined.service
	Before: systemd-user-sessions.service
	Before: virtualbox.service
	Before: laptop-mode.service
	Before: getty at tty1.service
	Before: user at 1000.service
	Before: iodined.service
	Before: systemd-localed.service
	Before: colord.service
	Before: dicod.service
	Before: speech-dispatcher.service
	Before: lightdm.service
	Before: packagekit.service
	Before: tor.service
	Before: iio-sensor-proxy.service
	Before: getty at tty7.service
	Before: dovecot.service
	Before: uuidd.service
	Before: apport.service
	Before: systemd-timedated.service
	Before: anacron.service
	Before: postfix.service
	Before: atd.service
	Before: bluetooth.service
	Before: gdm.service
	Before: systemd-logind.service
	Before: getty-static.service
	Before: dirmngr.service
	Before: polkitd.service
	Before: accounts-daemon.service
	Before: upower.service
	Before: minissdpd.service
	After: sysinit.target
	After: -.mount
	After: slices.target
	After: paths.target
	After: sockets.target
	References: sockets.target
	References: paths.target
	References: shutdown.target
	References: alsa-state.service
	References: alsa-restore.service
	References: slices.target
	References: -.mount
	References: sysinit.target
	References: timers.target
	ReferencedBy: systemd-localed.service
	ReferencedBy: dovecot.service
	ReferencedBy: pppd-dns.service
	ReferencedBy: dbus.service
	ReferencedBy: gdm.service
	ReferencedBy: lxc.service
	ReferencedBy: uuidd.service
	ReferencedBy: dirmngr.service
	ReferencedBy: dnsmasq.service
	ReferencedBy: user at 1000.service
	ReferencedBy: systemd-ask-password-wall.service
	ReferencedBy: accounts-daemon.service
	ReferencedBy: getty at tty1.service
	ReferencedBy: getty at tty7.service
	ReferencedBy: apport.service
	ReferencedBy: upower.service
	ReferencedBy: dicod.service
	ReferencedBy: bluetooth.service
	ReferencedBy: gdomap.service
	ReferencedBy: rtkit-daemon.service
	ReferencedBy: systemd-user-sessions.service
	ReferencedBy: packagekit.service
	ReferencedBy: postfix.service
	ReferencedBy: colord.service
	ReferencedBy: systemd-hostnamed.service
	ReferencedBy: inetd.service
	ReferencedBy: iio-sensor-proxy.service
	ReferencedBy: systemd-machined.service
	ReferencedBy: wpa_supplicant.service
	ReferencedBy: polkitd.service
	ReferencedBy: rc-local.service
	ReferencedBy: virtualbox.service
	ReferencedBy: getty-static.service
	ReferencedBy: systemd-logind.service
	ReferencedBy: tor.service
	ReferencedBy: atd.service
	ReferencedBy: systemd-resolved.service
	ReferencedBy: anacron.service
	ReferencedBy: laptop-mode.service
	ReferencedBy: thermald.service
	ReferencedBy: udisks2.service
	ReferencedBy: mysql.service
	ReferencedBy: geoclue.service
	ReferencedBy: mcelog.service
	ReferencedBy: multi-user.target
	ReferencedBy: iodined.service
	ReferencedBy: ModemManager.service
	ReferencedBy: minissdpd.service
	ReferencedBy: systemd-timedated.service
	ReferencedBy: speech-dispatcher.service
	ReferencedBy: cron.service
	ReferencedBy: NetworkManager.service
	ReferencedBy: avahi-daemon.service
	ReferencedBy: lightdm.service
	ReferencedBy: irqbalance.service
	RequiresMountsFor: /var /tmp /var/tmp
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d20008a.6.auto-iio:device4.device:
	Description: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-20008a.6.auto/iio:device4
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d20008a.6.auto-iio:device4.device
	Following Set Member: dev-iio:device4.device
	Job Timeout: 1min 30s
	Wants: iio-sensor-proxy.service
	References: iio-sensor-proxy.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-20008a.6.auto/iio:device4
-> Unit sys-devices-pci0000:00-0000:00:03.0-sound-card0.device:
	Description: Haswell-ULT HD Audio Controller
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:03.0-sound-card0.device
	Job Timeout: 1min 30s
	Wants: sound.target
	References: sound.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:03.0/sound/card0
-> Unit org.freedesktop.ModemManager1.busname:
	Description: org.freedesktop.ModemManager1.busname
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: org.freedesktop.ModemManager1.busname
	Before: ModemManager.service
	ReferencedBy: ModemManager.service
-> Unit rescue.target:
	Description: Rescue Mode
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: runlevel1.target
	Name: rescue.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/rescue.target
	Requires: sysinit.target
	Requires: rescue.service
	Wants: systemd-update-utmp-runlevel.service
	Conflicts: shutdown.target
	ConflictedBy: multi-user.target
	ConflictedBy: graphical.target
	Before: multi-user.target
	Before: graphical.target
	Before: systemd-update-utmp-runlevel.service
	After: sysinit.target
	After: rescue.service
	References: sysinit.target
	References: shutdown.target
	References: rescue.service
	References: systemd-update-utmp-runlevel.service
	ReferencedBy: multi-user.target
	ReferencedBy: graphical.target
	ReferencedBy: systemd-update-utmp-runlevel.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: dead
-> Unit dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart3.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB LRS_ESP
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart3.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart3.device
	Following Set Member: dev-sda3.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
	Following Set Member: dev-disk-by\x2duuid-D20A\x2dAF97.device
	Following Set Member: dev-disk-by\x2dlabel-LRS_ESP.device
	Following Set Member: dev-disk-by\x2dpartuuid-e066dcd7\x2d9fbb\x2d4d00\x2da952\x2dee54e59db6f9.device
	Following Set Member: dev-disk-by\x2dpartlabel-Basic\x5cx20data\x5cx20partition.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda3
-> Unit systemd-user-sessions.service:
	Description: Permit User Sessions
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/systemd-user-sessions.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: systemd-user-sessions.service
	Documentation: man:systemd-user-sessions.service(8)
	Fragment Path: /lib/systemd/system/systemd-user-sessions.service
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	WantedBy: multi-user.target
	Conflicts: shutdown.target
	Before: multi-user.target
	Before: session-1.scope
	Before: user at 1000.service
	Before: gdm.service
	Before: getty at tty1.service
	Before: getty at tty7.service
	Before: shutdown.target
	Before: systemd-ask-password-wall.service
	After: systemd-journald.socket
	After: systemd-journal-flush.service
	After: remote-fs.target
	After: basic.target
	After: nss-user-lookup.target
	After: system.slice
	References: systemd-journald.socket
	References: remote-fs.target
	References: shutdown.target
	References: basic.target
	References: nss-user-lookup.target
	References: system.slice
	ReferencedBy: multi-user.target
	ReferencedBy: session-1.scope
	ReferencedBy: user at 1000.service
	ReferencedBy: gdm.service
	ReferencedBy: getty at tty1.service
	ReferencedBy: getty at tty7.service
	ReferencedBy: systemd-journal-flush.service
	ReferencedBy: systemd-ask-password-wall.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-user-sessions start
	-> ExecStop:
		Command Line: /lib/systemd/systemd-user-sessions stop
-> Unit dev-iio:device3.device:
	Description: /dev/iio:device3
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-iio:device3.device
	Following: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200086.5.auto-iio:device3.device
	Following Set Member: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200086.5.auto-iio:device3.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200086.5.auto/iio:device3
-> Unit dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.swap:
	Description: /dev/disk/by-id/dm-uuid-LVM-bs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.swap
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.swap
	Following: dev-mapper-SSHDCrypt\x2dSWAP.swap
	Following Set Member: dev-SSHDCrypt-SWAP.swap
	Following Set Member: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.swap
	Following Set Member: dev-mapper-SSHDCrypt\x2dSWAP.swap
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.swap
	Following Set Member: dev-dm\x2d2.swap
	Requires: -.mount
	Wants: system.slice
	Conflicts: umount.target
	Before: umount.target
	After: -.mount
	After: systemd-journald.socket
	After: system.slice
	References: umount.target
	References: -.mount
	References: systemd-journald.socket
	References: system.slice
	RequiresMountsFor: /dev/disk/by-id/dm-uuid-LVM-bs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Swap State: active
	Result: success
	What: /dev/disk/by-id/dm-uuid-LVM-bs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy
	From /proc/swaps: yes
	From fragment: no
	Device Node: /dev/dm-2
	Priority: -1
	Options: 
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit cron.service:
	Description: Regular background program processing daemon
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/cron.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: cron.service
	Documentation: man:cron(8)
	Fragment Path: /lib/systemd/system/cron.service
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	WantedBy: multi-user.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: multi-user.target
	After: system.slice
	After: systemd-journald.socket
	After: basic.target
	References: system.slice
	References: shutdown.target
	References: systemd-journald.socket
	References: basic.target
	ReferencedBy: multi-user.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: simple
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	Main PID: 1115
	Main PID Known: yes
	Main PID Alien: no
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	EnvironmentFile: -/etc/default/cron
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /usr/sbin/cron -f $EXTRA_OPTS
-> Unit sys-devices-pci0000:00-0000:00:1f.0-PNP0C09:00-VPC2004:00-rfkill-rfkill1.device:
	Description: /sys/devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/rfkill/rfkill1
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:1f.0-PNP0C09:00-VPC2004:00-rfkill-rfkill1.device
	Following Set Member: sys-subsystem-rfkill-devices-rfkill1.device
	Job Timeout: 1min 30s
	Wants: systemd-rfkill at rfkill1.service
	References: systemd-rfkill at rfkill1.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/rfkill/rfkill1
-> Unit lvm2-lvmetad.service:
	Description: LVM2 metadata daemon
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: lvm2-lvmetad.service
	Documentation: man:lvmetad(8)
	Fragment Path: /lib/systemd/system/lvm2-lvmetad.service
	Requires: lvm2-lvmetad.socket
	Wants: system.slice
	Conflicts: shutdown.target
	Before: lvm2-monitor.service
	After: system.slice
	After: systemd-journald.socket
	After: lvm2-lvmetad.socket
	TriggeredBy: lvm2-lvmetad.socket
	References: system.slice
	References: shutdown.target
	References: systemd-journald.socket
	References: lvm2-lvmetad.socket
	ReferencedBy: lvm2-monitor.service
	ReferencedBy: lvm2-lvmetad.socket
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: simple
	Restart: on-abort
	NotifyAccess: none
	NotifyState: unknown
	PIDFile: /var/run/lvmetad.pid
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: yes
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	Environment: SD_ACTIVATION=1
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /sbin/lvmetad -f
-> Unit dev-iio:device1.device:
	Description: /dev/iio:device1
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-iio:device1.device
	Following: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200076.3.auto-iio:device1.device
	Following Set Member: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200076.3.auto-iio:device1.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200076.3.auto/iio:device1
-> Unit dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart4.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB Microsoft\x20reserved\x20partition
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart4.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda4.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda4.device
	Following Set Member: dev-disk-by\x2dpartuuid-242faae1\x2daa64\x2d4791\x2da2aa\x2d314cf9e49b51.device
	Following Set Member: dev-sda4.device
	Following Set Member: dev-disk-by\x2dpartlabel-Microsoft\x5cx20reserved\x5cx20partition.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart4.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda4
-> Unit sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200086.5.auto-iio:device3.device:
	Description: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200086.5.auto/iio:device3
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200086.5.auto-iio:device3.device
	Following Set Member: dev-iio:device3.device
	Job Timeout: 1min 30s
	Wants: iio-sensor-proxy.service
	References: iio-sensor-proxy.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200086.5.auto/iio:device3
-> Unit system.slice:
	Description: System Slice
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: -.slice
	CGroup: /system.slice
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x10
	Name: system.slice
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/system.slice
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Wants: -.slice
	WantedBy: gdm.service
	WantedBy: dev-SSHDCrypt-SWAP.swap
	WantedBy: lvm2-monitor.service
	WantedBy: systemd-tmpfiles-setup.service
	WantedBy: systemd-machined.service
	WantedBy: upower.service
	WantedBy: uuidd.service
	WantedBy: system-systemd\x2dcryptsetup.slice
	WantedBy: iio-sensor-proxy.service
	WantedBy: systemd-hwdb-update.service
	WantedBy: getty-static.service
	WantedBy: system-getty.slice
	WantedBy: keyboard-setup.service
	WantedBy: -.mount
	WantedBy: systemd-localed.service
	WantedBy: sys-kernel-debug.mount
	WantedBy: anacron.service
	WantedBy: systemd-update-utmp-runlevel.service
	WantedBy: accounts-daemon.service
	WantedBy: lxc.service
	WantedBy: kmod-static-nodes.service
	WantedBy: systemd-fsck-root.service
	WantedBy: dovecot.service
	WantedBy: dev-dm\x2d2.swap
	WantedBy: laptop-mode.service
	WantedBy: pppd-dns.service
	WantedBy: dm-event.service
	WantedBy: run-user-1000.mount
	WantedBy: systemd-udevd.service
	WantedBy: mysql.service
	WantedBy: udisks2.service
	WantedBy: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.swap
	WantedBy: systemd-setup-dgram-qlen.service
	WantedBy: emergency.service
	WantedBy: systemd-journal-flush.service
	WantedBy: systemd-random-seed.service
	WantedBy: packagekit.service
	WantedBy: bluetooth.service
	WantedBy: systemd-tmpfiles-setup-dev.service
	WantedBy: networking.service
	WantedBy: slices.target
	WantedBy: systemd-logind.service
	WantedBy: inetd.service
	WantedBy: wpa_supplicant.service
	WantedBy: lvm2-activation-early.service
	WantedBy: debian-fixup.service
	WantedBy: alsa-restore.service
	WantedBy: boot-efi.mount
	WantedBy: NetworkManager.service
	WantedBy: rtkit-daemon.service
	WantedBy: boot.mount
	WantedBy: irqbalance.service
	WantedBy: systemd-udev-settle.service
	WantedBy: systemd-networkd.service
	WantedBy: systemd-udev-trigger.service
	WantedBy: ModemManager.service
	WantedBy: colord.service
	WantedBy: systemd-timedated.service
	WantedBy: alsa-state.service
	WantedBy: systemd-resolved.service
	WantedBy: alsa-store.service
	WantedBy: var-lib-machines.mount
	WantedBy: mcelog.service
	WantedBy: system-systemd\x2dbacklight.slice
	WantedBy: dicod.service
	WantedBy: resolvconf.service
	WantedBy: system-lvm2\x2dpvscan.slice
	WantedBy: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.swap
	WantedBy: rescue.service
	WantedBy: rc-local.service
	WantedBy: apport.service
	WantedBy: run-user-1000-gvfs.mount
	WantedBy: udev-finish.service
	WantedBy: systemd-update-utmp.service
	WantedBy: systemd-fsckd.service
	WantedBy: proc-sys-fs-binfmt_misc.mount
	WantedBy: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.swap
	WantedBy: tor.service
	WantedBy: thermald.service
	WantedBy: media-SSHD.mount
	WantedBy: system-systemd\x2drfkill.slice
	WantedBy: systemd-sysctl.service
	WantedBy: systemd-modules-load.service
	WantedBy: geoclue.service
	WantedBy: systemd-ask-password-wall.service
	WantedBy: systemd-binfmt.service
	WantedBy: cron.service
	WantedBy: systemd-timesyncd.service
	WantedBy: sys-kernel-config.mount
	WantedBy: kbd.service
	WantedBy: minissdpd.service
	WantedBy: systemd-user-sessions.service
	WantedBy: lvm2-activation.service
	WantedBy: systemd-initctl.service
	WantedBy: lvm2-lvmetad.service
	WantedBy: virtualbox.service
	WantedBy: sys-fs-fuse-connections.mount
	WantedBy: iodined.service
	WantedBy: dev-mapper-SSHDCrypt\x2dSWAP.swap
	WantedBy: systemd-machine-id-commit.service
	WantedBy: systemd-journald.service
	WantedBy: dirmngr.service
	WantedBy: systemd-tmpfiles-clean.service
	WantedBy: systemd-hostnamed.service
	WantedBy: dnsmasq.service
	WantedBy: avahi-daemon.service
	WantedBy: hdparm.service
	WantedBy: lightdm.service
	WantedBy: speech-dispatcher.service
	WantedBy: atd.service
	WantedBy: console-setup.service
	WantedBy: system-systemd\x2dfsck.slice
	WantedBy: systemd-remount-fs.service
	WantedBy: dev-mqueue.mount
	WantedBy: polkitd.service
	WantedBy: dbus.service
	WantedBy: gdomap.service
	WantedBy: dev-hugepages.mount
	WantedBy: postfix.service
	WantedBy: systemd-ask-password-console.service
	Before: inetd.service
	Before: sys-kernel-debug.mount
	Before: anacron.service
	Before: dev-mapper-SSHDCrypt\x2dSWAP.swap
	Before: systemd-resolved.service
	Before: systemd-user-sessions.service
	Before: dovecot.service
	Before: minissdpd.service
	Before: system-systemd\x2drfkill.slice
	Before: systemd-ask-password-wall.service
	Before: dev-mqueue.mount
	Before: accounts-daemon.service
	Before: slices.target
	Before: dev-hugepages.mount
	Before: dm-event.service
	Before: geoclue.service
	Before: systemd-timesyncd.service
	Before: systemd-fsckd.service
	Before: gdomap.service
	Before: dicod.service
	Before: systemd-random-seed.service
	Before: dirmngr.service
	Before: systemd-update-utmp.service
	Before: lvm2-lvmetad.service
	Before: dnsmasq.service
	Before: NetworkManager.service
	Before: var-lib-machines.mount
	Before: iio-sensor-proxy.service
	Before: systemd-tmpfiles-setup.service
	Before: dev-SSHDCrypt-SWAP.swap
	Before: tor.service
	Before: emergency.service
	Before: systemd-hostnamed.service
	Before: system-getty.slice
	Before: lvm2-activation-early.service
	Before: packagekit.service
	Before: virtualbox.service
	Before: systemd-ask-password-console.service
	Before: debian-fixup.service
	Before: keyboard-setup.service
	Before: polkitd.service
	Before: postfix.service
	Before: getty-static.service
	Before: systemd-networkd.service
	Before: systemd-udev-trigger.service
	Before: cron.service
	Before: rescue.service
	Before: irqbalance.service
	Before: rtkit-daemon.service
	Before: kmod-static-nodes.service
	Before: upower.service
	Before: systemd-logind.service
	Before: alsa-store.service
	Before: systemd-binfmt.service
	Before: sys-fs-fuse-connections.mount
	Before: wpa_supplicant.service
	Before: systemd-localed.service
	Before: resolvconf.service
	Before: run-user-1000.mount
	Before: systemd-timedated.service
	Before: systemd-remount-fs.service
	Before: boot.mount
	Before: systemd-udev-settle.service
	Before: media-SSHD.mount
	Before: systemd-modules-load.service
	Before: systemd-setup-dgram-qlen.service
	Before: systemd-initctl.service
	Before: kbd.service
	Before: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.swap
	Before: hdparm.service
	Before: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.swap
	Before: uuidd.service
	Before: ModemManager.service
	Before: rc-local.service
	Before: sys-kernel-config.mount
	Before: systemd-journal-flush.service
	Before: run-user-1000-gvfs.mount
	Before: proc-sys-fs-binfmt_misc.mount
	Before: systemd-hwdb-update.service
	Before: alsa-state.service
	Before: udisks2.service
	Before: systemd-tmpfiles-clean.service
	Before: console-setup.service
	Before: laptop-mode.service
	Before: systemd-sysctl.service
	Before: systemd-update-utmp-runlevel.service
	Before: speech-dispatcher.service
	Before: iodined.service
	Before: thermald.service
	Before: system-systemd\x2dbacklight.slice
	Before: dev-dm\x2d2.swap
	Before: systemd-fsck-root.service
	Before: system-lvm2\x2dpvscan.slice
	Before: lightdm.service
	Before: mcelog.service
	Before: lvm2-activation.service
	Before: networking.service
	Before: dbus.service
	Before: systemd-machine-id-commit.service
	Before: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.swap
	Before: boot-efi.mount
	Before: systemd-journald.service
	Before: systemd-tmpfiles-setup-dev.service
	Before: lxc.service
	Before: gdm.service
	Before: -.mount
	Before: systemd-machined.service
	Before: lvm2-monitor.service
	Before: systemd-udevd.service
	Before: mysql.service
	Before: system-systemd\x2dfsck.slice
	Before: system-systemd\x2dcryptsetup.slice
	Before: atd.service
	Before: avahi-daemon.service
	Before: udev-finish.service
	Before: bluetooth.service
	Before: colord.service
	Before: apport.service
	Before: alsa-restore.service
	Before: pppd-dns.service
	After: -.slice
	References: -.slice
	References: slices.target
	ReferencedBy: systemd-timedated.service
	ReferencedBy: networking.service
	ReferencedBy: gdomap.service
	ReferencedBy: systemd-tmpfiles-setup.service
	ReferencedBy: lvm2-monitor.service
	ReferencedBy: emergency.service
	ReferencedBy: thermald.service
	ReferencedBy: systemd-ask-password-wall.service
	ReferencedBy: cron.service
	ReferencedBy: tor.service
	ReferencedBy: lvm2-lvmetad.service
	ReferencedBy: dovecot.service
	ReferencedBy: systemd-initctl.service
	ReferencedBy: systemd-udev-settle.service
	ReferencedBy: lvm2-activation-early.service
	ReferencedBy: laptop-mode.service
	ReferencedBy: virtualbox.service
	ReferencedBy: dev-SSHDCrypt-SWAP.swap
	ReferencedBy: systemd-fsck-root.service
	ReferencedBy: systemd-resolved.service
	ReferencedBy: systemd-update-utmp.service
	ReferencedBy: NetworkManager.service
	ReferencedBy: var-lib-machines.mount
	ReferencedBy: wpa_supplicant.service
	ReferencedBy: systemd-setup-dgram-qlen.service
	ReferencedBy: geoclue.service
	ReferencedBy: mcelog.service
	ReferencedBy: systemd-udev-trigger.service
	ReferencedBy: minissdpd.service
	ReferencedBy: systemd-machine-id-commit.service
	ReferencedBy: inetd.service
	ReferencedBy: console-setup.service
	ReferencedBy: udev-finish.service
	ReferencedBy: system-systemd\x2dcryptsetup.slice
	ReferencedBy: gdm.service
	ReferencedBy: systemd-binfmt.service
	ReferencedBy: system-lvm2\x2dpvscan.slice
	ReferencedBy: colord.service
	ReferencedBy: systemd-modules-load.service
	ReferencedBy: media-SSHD.mount
	ReferencedBy: rtkit-daemon.service
	ReferencedBy: keyboard-setup.service
	ReferencedBy: dev-hugepages.mount
	ReferencedBy: systemd-fsckd.service
	ReferencedBy: proc-sys-fs-binfmt_misc.mount
	ReferencedBy: systemd-remount-fs.service
	ReferencedBy: rescue.service
	ReferencedBy: alsa-state.service
	ReferencedBy: getty-static.service
	ReferencedBy: irqbalance.service
	ReferencedBy: resolvconf.service
	ReferencedBy: dev-mapper-SSHDCrypt\x2dSWAP.swap
	ReferencedBy: dm-event.service
	ReferencedBy: sys-kernel-debug.mount
	ReferencedBy: run-user-1000-gvfs.mount
	ReferencedBy: systemd-timesyncd.service
	ReferencedBy: atd.service
	ReferencedBy: boot-efi.mount
	ReferencedBy: dbus.service
	ReferencedBy: dev-mqueue.mount
	ReferencedBy: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.swap
	ReferencedBy: systemd-ask-password-console.service
	ReferencedBy: system-systemd\x2dbacklight.slice
	ReferencedBy: hdparm.service
	ReferencedBy: lvm2-activation.service
	ReferencedBy: ModemManager.service
	ReferencedBy: polkitd.service
	ReferencedBy: systemd-localed.service
	ReferencedBy: systemd-hostnamed.service
	ReferencedBy: boot.mount
	ReferencedBy: systemd-journal-flush.service
	ReferencedBy: systemd-user-sessions.service
	ReferencedBy: lxc.service
	ReferencedBy: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.swap
	ReferencedBy: pppd-dns.service
	ReferencedBy: avahi-daemon.service
	ReferencedBy: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.swap
	ReferencedBy: anacron.service
	ReferencedBy: slices.target
	ReferencedBy: systemd-machined.service
	ReferencedBy: systemd-random-seed.service
	ReferencedBy: mysql.service
	ReferencedBy: uuidd.service
	ReferencedBy: iio-sensor-proxy.service
	ReferencedBy: run-user-1000.mount
	ReferencedBy: rc-local.service
	ReferencedBy: alsa-store.service
	ReferencedBy: alsa-restore.service
	ReferencedBy: kbd.service
	ReferencedBy: upower.service
	ReferencedBy: postfix.service
	ReferencedBy: systemd-tmpfiles-setup-dev.service
	ReferencedBy: systemd-hwdb-update.service
	ReferencedBy: dev-dm\x2d2.swap
	ReferencedBy: debian-fixup.service
	ReferencedBy: -.mount
	ReferencedBy: udisks2.service
	ReferencedBy: systemd-logind.service
	ReferencedBy: systemd-udevd.service
	ReferencedBy: sys-kernel-config.mount
	ReferencedBy: system-systemd\x2dfsck.slice
	ReferencedBy: systemd-networkd.service
	ReferencedBy: dirmngr.service
	ReferencedBy: systemd-tmpfiles-clean.service
	ReferencedBy: accounts-daemon.service
	ReferencedBy: dnsmasq.service
	ReferencedBy: systemd-sysctl.service
	ReferencedBy: dicod.service
	ReferencedBy: sys-fs-fuse-connections.mount
	ReferencedBy: system-getty.slice
	ReferencedBy: lightdm.service
	ReferencedBy: speech-dispatcher.service
	ReferencedBy: system-systemd\x2drfkill.slice
	ReferencedBy: bluetooth.service
	ReferencedBy: apport.service
	ReferencedBy: kmod-static-nodes.service
	ReferencedBy: systemd-journald.service
	ReferencedBy: systemd-update-utmp-runlevel.service
	ReferencedBy: packagekit.service
	ReferencedBy: iodined.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Slice State: active
	CPUAccounting=no
	BlockIOAccounting=no
	MemoryAccounting=no
	CPUShares=18446744073709551615
	StartupCPUShares=18446744073709551615
	CPUQuotaPerSecSec=infinity
	BlockIOWeight=18446744073709551615
	StartupBlockIOWeight=18446744073709551615
	MemoryLimit=18446744073709551615
	DevicePolicy=auto
	Delegate=no
-> Unit dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart7.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB 7
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart7.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda7.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda7.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart7.device
	Following Set Member: dev-disk-by\x2duuid-a1d51c69\x2dc438\x2d428b\x2d8346\x2d273abcbf5a52.device
	Following Set Member: dev-sda7.device
	Following Set Member: dev-disk-by\x2dpartuuid-5c76f548\x2dae81\x2d455c\x2d9fef\x2d4ef79ce9b11d.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda7
-> Unit sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d7-1\x2d7:1.0-bluetooth-hci0-rfkill10.device:
	Description: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/bluetooth/hci0/rfkill10
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Fri 2015-07-31 21:58:59 IST
	Active Enter Timestamp: Fri 2015-07-31 21:58:59 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d7-1\x2d7:1.0-bluetooth-hci0-rfkill10.device
	Following Set Member: sys-subsystem-rfkill-devices-rfkill10.device
	Job Timeout: 1min 30s
	Wants: systemd-rfkill at rfkill10.service
	References: systemd-rfkill at rfkill10.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/bluetooth/hci0/rfkill10
-> Unit systemd-rfkill at rfkill10.service:
	Description: Load/Save RF Kill Switch Status of rfkill10
	Instance: rfkill10
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Fri 2015-07-31 21:58:59 IST
	Active Enter Timestamp: Fri 2015-07-31 21:58:59 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system-systemd\x2drfkill.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-rfkill at rfkill10.service
	Documentation: man:systemd-rfkill at .service(8)
	Fragment Path: /lib/systemd/system/systemd-rfkill at .service
	Condition Timestamp: Fri 2015-07-31 21:58:59 IST
	Condition Result: yes
	Assert Timestamp: Fri 2015-07-31 21:58:59 IST
	Assert Result: yes
	Requires: -.mount
	Wants: system-systemd\x2drfkill.slice
	BindsTo: sys-subsystem-rfkill-devices-rfkill10.device
	WantedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d7-1\x2d7:1.0-bluetooth-hci0-rfkill10.device
	Conflicts: shutdown.target
	Before: sysinit.target
	Before: shutdown.target
	After: systemd-remount-fs.service
	After: system-systemd\x2drfkill.slice
	After: -.mount
	After: systemd-journald.socket
	References: systemd-journald.socket
	References: sys-subsystem-rfkill-devices-rfkill10.device
	References: system-systemd\x2drfkill.slice
	References: shutdown.target
	References: -.mount
	References: sysinit.target
	References: systemd-remount-fs.service
	ReferencedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d7-1\x2d7:1.0-bluetooth-hci0-rfkill10.device
	RequiresMountsFor: /var/lib/systemd/rfkill
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-rfkill load %I
			PID: 15151
			Start Timestamp: Fri 2015-07-31 21:58:59 IST
			Exit Timestamp: Fri 2015-07-31 21:58:59 IST
			Exit Code: exited
			Exit Status: 0
	-> ExecStop:
		Command Line: /lib/systemd/systemd-rfkill save %I
-> Unit virtualbox.service:
	Description: LSB: VirtualBox Linux kernel module
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/virtualbox.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: virtualbox.service
	Documentation: man:systemd-sysv-generator(8)
	Fragment Path: /run/systemd/generator.late/virtualbox.service
	Source Path: /etc/init.d/virtualbox
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	Wants: network-online.target
	WantedBy: multi-user.target
	WantedBy: graphical.target
	Conflicts: shutdown.target
	Before: multi-user.target
	Before: shutdown.target
	Before: graphical.target
	After: basic.target
	After: remote-fs.target
	After: network-online.target
	After: system.slice
	After: systemd-journald.socket
	References: graphical.target
	References: basic.target
	References: remote-fs.target
	References: multi-user.target
	References: network-online.target
	References: system.slice
	References: systemd-journald.socket
	References: shutdown.target
	ReferencedBy: multi-user.target
	ReferencedBy: graphical.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: no
	Type: forking
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /etc/init.d/virtualbox start
	-> ExecStop:
		Command Line: /etc/init.d/virtualbox stop
-> Unit system-systemd\x2dfsck.slice:
	Description: system-systemd\x2dfsck.slice
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/system-systemd\x2dfsck.slice
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: system-systemd\x2dfsck.slice
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Wants: system.slice
	WantedBy: systemd-fsck at dev-disk-by\x2duuid-2206\x2d0BF2.service
	WantedBy: systemd-fsck at dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.service
	WantedBy: systemd-fsck at dev-mapper-SSHDCrypt\x2dROOT.service
	Conflicts: shutdown.target
	Before: systemd-fsck at dev-disk-by\x2duuid-2206\x2d0BF2.service
	Before: systemd-fsck at dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.service
	Before: shutdown.target
	Before: systemd-fsck at dev-mapper-SSHDCrypt\x2dROOT.service
	After: system.slice
	References: shutdown.target
	References: system.slice
	ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-2206\x2d0BF2.service
	ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.service
	ReferencedBy: systemd-fsck at dev-mapper-SSHDCrypt\x2dROOT.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Slice State: active
	CPUAccounting=no
	BlockIOAccounting=no
	MemoryAccounting=no
	CPUShares=18446744073709551615
	StartupCPUShares=18446744073709551615
	CPUQuotaPerSecSec=infinity
	BlockIOWeight=18446744073709551615
	StartupBlockIOWeight=18446744073709551615
	MemoryLimit=18446744073709551615
	DevicePolicy=auto
	Delegate=no
-> Unit systemd-timedated.service:
	Description: Time & Date Service
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: Wed 2015-07-29 15:30:01 IST
	Active Enter Timestamp: Wed 2015-07-29 15:30:01 IST
	Active Exit Timestamp: Wed 2015-07-29 15:30:31 IST
	Inactive Enter Timestamp: Wed 2015-07-29 15:30:31 IST
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-timedated.service
	Documentation: man:systemd-timedated.service(8)
	Documentation: man:localtime(5)
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/timedated
	Fragment Path: /lib/systemd/system/systemd-timedated.service
	Condition Timestamp: Wed 2015-07-29 15:30:01 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:30:01 IST
	Assert Result: yes
	Requires: -.mount
	Requires: basic.target
	Wants: system.slice
	Conflicts: shutdown.target
	Before: shutdown.target
	After: system.slice
	After: systemd-journald.socket
	After: -.mount
	After: basic.target
	After: org.freedesktop.timedate1.busname
	TriggeredBy: org.freedesktop.timedate1.busname
	References: systemd-journald.socket
	References: system.slice
	References: -.mount
	References: shutdown.target
	References: basic.target
	References: org.freedesktop.timedate1.busname
	ReferencedBy: org.freedesktop.timedate1.busname
	RequiresMountsFor: /tmp /var/tmp
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: dbus
	Restart: no
	NotifyAccess: main
	NotifyState: unknown
	BusName: org.freedesktop.timedate1
	Bus Name Good: no
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: yes
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: yes
	ProtectSystem: yes
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	CapabilityBoundingSet: cap_sys_time
	-> ExecStart:
		Command Line: /lib/systemd/systemd-timedated
-> Unit paths.target:
	Description: Paths
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: paths.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/paths.target
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	WantedBy: basic.target
	Conflicts: shutdown.target
	Before: basic.target
	After: systemd-ask-password-wall.path
	After: systemd-ask-password-console.path
	References: shutdown.target
	ReferencedBy: systemd-ask-password-wall.path
	ReferencedBy: basic.target
	ReferencedBy: systemd-ask-password-console.path
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit bluetooth.service:
	Description: Bluetooth service
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/bluetooth.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: bluetooth.service
	Documentation: man:bluetoothd(8)
	Fragment Path: /lib/systemd/system/bluetooth.service
	Condition Timestamp: Wed 2015-07-29 15:29:22 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:22 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	WantedBy: bluetooth.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: bluetooth.target
	After: org.bluez.busname
	After: system.slice
	After: systemd-journald.socket
	After: basic.target
	References: org.bluez.busname
	References: basic.target
	References: shutdown.target
	References: systemd-journald.socket
	References: system.slice
	ReferencedBy: bluetooth.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: dbus
	Restart: no
	NotifyAccess: main
	NotifyState: unknown
	Main PID: 1199
	Main PID Known: yes
	Main PID Alien: no
	BusName: org.bluez
	Bus Name Good: yes
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNPROC: 1
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	CapabilityBoundingSet: cap_net_bind_service cap_net_admin
	-> ExecStart:
		Command Line: /usr/lib/bluetooth/bluetoothd
	Status Text: Running
-> Unit alsa-store.service:
	Description: Store Sound Card State
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: alsa-store.service
	Fragment Path: /lib/systemd/system/alsa-store.service
	ConditionPathExists: !/etc/alsa/state-daemon.conf untested
	Wants: system.slice
	WantedBy: shutdown.target
	Before: shutdown.target
	After: systemd-journald.socket
	After: system.slice
	References: shutdown.target
	References: systemd-journald.socket
	References: system.slice
	ReferencedBy: shutdown.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /usr/sbin/alsactl -E HOME=/var/run/alsa store
-> Unit sysinit.target:
	Description: System Initialization
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sysinit.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/sysinit.target
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Wants: dev-mqueue.mount
	Wants: dev-hugepages.mount
	Wants: keyboard-setup.service
	Wants: systemd-tmpfiles-setup.service
	Wants: kmod-static-nodes.service
	Wants: systemd-hwdb-update.service
	Wants: lvm2-monitor.service
	Wants: sys-kernel-config.mount
	Wants: systemd-udevd.service
	Wants: local-fs.target
	Wants: swap.target
	Wants: systemd-random-seed.service
	Wants: kbd.service
	Wants: cryptsetup.target
	Wants: systemd-modules-load.service
	Wants: console-setup.service
	Wants: systemd-journald.service
	Wants: sys-fs-fuse-connections.mount
	Wants: systemd-binfmt.service
	Wants: proc-sys-fs-binfmt_misc.automount
	Wants: debian-fixup.service
	Wants: networking.service
	Wants: systemd-udev-trigger.service
	Wants: hdparm.service
	Wants: systemd-journal-flush.service
	Wants: lvm2-lvmetad.socket
	Wants: systemd-sysctl.service
	Wants: systemd-ask-password-console.path
	Wants: systemd-timesyncd.service
	Wants: resolvconf.service
	Wants: systemd-tmpfiles-setup-dev.service
	Wants: udev-finish.service
	Wants: systemd-machine-id-commit.service
	Wants: systemd-update-utmp.service
	Wants: sys-kernel-debug.mount
	RequiredBy: dbus.socket
	RequiredBy: basic.target
	RequiredBy: laptop-mode.timer
	RequiredBy: org.freedesktop.network1.busname
	RequiredBy: org.freedesktop.systemd1.busname
	RequiredBy: org.freedesktop.resolve1.busname
	RequiredBy: org.freedesktop.hostname1.busname
	RequiredBy: org.freedesktop.timedate1.busname
	RequiredBy: rescue.target
	RequiredBy: uuidd.socket
	RequiredBy: org.freedesktop.login1.busname
	RequiredBy: systemd-tmpfiles-clean.timer
	RequiredBy: org.freedesktop.locale1.busname
	RequiredBy: org.freedesktop.machine1.busname
	RequiredBy: avahi-daemon.socket
	Conflicts: emergency.service
	Conflicts: shutdown.target
	Conflicts: emergency.target
	Before: org.freedesktop.timedate1.busname
	Before: org.freedesktop.machine1.busname
	Before: systemd-tmpfiles-clean.timer
	Before: org.freedesktop.locale1.busname
	Before: org.freedesktop.hostname1.busname
	Before: org.freedesktop.network1.busname
	Before: org.freedesktop.login1.busname
	Before: dbus.socket
	Before: org.freedesktop.systemd1.busname
	Before: org.freedesktop.resolve1.busname
	Before: rescue.target
	Before: avahi-daemon.socket
	Before: laptop-mode.timer
	Before: alsa-state.service
	Before: basic.target
	Before: uuidd.socket
	Before: rescue.service
	After: systemd-machine-id-commit.service
	After: systemd-rfkill at rfkill2.service
	After: systemd-backlight at backlight:intel_backlight.service
	After: sys-fs-fuse-connections.mount
	After: systemd-journald.service
	After: console-setup.service
	After: swap.target
	After: systemd-hwdb-update.service
	After: sys-kernel-debug.mount
	After: kbd.service
	After: systemd-udev-settle.service
	After: systemd-rfkill at rfkill0.service
	After: emergency.service
	After: systemd-update-utmp.service
	After: emergency.target
	After: cryptsetup.target
	After: systemd-sysctl.service
	After: systemd-modules-load.service
	After: hdparm.service
	After: debian-fixup.service
	After: local-fs.target
	After: systemd-random-seed.service
	After: systemd-rfkill at rfkill1.service
	After: dev-hugepages.mount
	After: systemd-timesyncd.service
	After: systemd-udevd.service
	After: kmod-static-nodes.service
	After: systemd-tmpfiles-setup.service
	After: systemd-binfmt.service
	After: systemd-rfkill at rfkill10.service
	After: dev-mqueue.mount
	After: keyboard-setup.service
	After: sys-kernel-config.mount
	After: networking.service
	After: proc-sys-fs-binfmt_misc.automount
	After: systemd-udev-trigger.service
	After: systemd-tmpfiles-setup-dev.service
	References: kbd.service
	References: resolvconf.service
	References: dev-mqueue.mount
	References: systemd-journal-flush.service
	References: emergency.target
	References: systemd-timesyncd.service
	References: systemd-machine-id-commit.service
	References: debian-fixup.service
	References: local-fs.target
	References: dev-hugepages.mount
	References: keyboard-setup.service
	References: sys-fs-fuse-connections.mount
	References: swap.target
	References: systemd-udevd.service
	References: lvm2-monitor.service
	References: systemd-ask-password-console.path
	References: systemd-binfmt.service
	References: lvm2-lvmetad.socket
	References: shutdown.target
	References: systemd-modules-load.service
	References: udev-finish.service
	References: systemd-sysctl.service
	References: emergency.service
	References: console-setup.service
	References: systemd-update-utmp.service
	References: networking.service
	References: systemd-tmpfiles-setup.service
	References: cryptsetup.target
	References: systemd-random-seed.service
	References: sys-kernel-config.mount
	References: systemd-journald.service
	References: hdparm.service
	References: sys-kernel-debug.mount
	References: systemd-hwdb-update.service
	References: systemd-udev-trigger.service
	References: systemd-tmpfiles-setup-dev.service
	References: proc-sys-fs-binfmt_misc.automount
	References: kmod-static-nodes.service
	ReferencedBy: systemd-backlight at backlight:intel_backlight.service
	ReferencedBy: systemd-machine-id-commit.service
	ReferencedBy: dev-mqueue.mount
	ReferencedBy: systemd-rfkill at rfkill10.service
	ReferencedBy: org.freedesktop.hostname1.busname
	ReferencedBy: dev-hugepages.mount
	ReferencedBy: alsa-state.service
	ReferencedBy: systemd-tmpfiles-setup-dev.service
	ReferencedBy: sys-fs-fuse-connections.mount
	ReferencedBy: networking.service
	ReferencedBy: kbd.service
	ReferencedBy: org.freedesktop.machine1.busname
	ReferencedBy: systemd-modules-load.service
	ReferencedBy: org.freedesktop.network1.busname
	ReferencedBy: systemd-tmpfiles-setup.service
	ReferencedBy: systemd-udev-trigger.service
	ReferencedBy: proc-sys-fs-binfmt_misc.automount
	ReferencedBy: avahi-daemon.socket
	ReferencedBy: basic.target
	ReferencedBy: laptop-mode.timer
	ReferencedBy: systemd-udev-settle.service
	ReferencedBy: systemd-udevd.service
	ReferencedBy: systemd-binfmt.service
	ReferencedBy: kmod-static-nodes.service
	ReferencedBy: org.freedesktop.timedate1.busname
	ReferencedBy: dbus.socket
	ReferencedBy: console-setup.service
	ReferencedBy: uuidd.socket
	ReferencedBy: org.freedesktop.login1.busname
	ReferencedBy: systemd-tmpfiles-clean.timer
	ReferencedBy: systemd-journald.service
	ReferencedBy: systemd-random-seed.service
	ReferencedBy: systemd-update-utmp.service
	ReferencedBy: systemd-timesyncd.service
	ReferencedBy: debian-fixup.service
	ReferencedBy: org.freedesktop.locale1.busname
	ReferencedBy: org.freedesktop.resolve1.busname
	ReferencedBy: org.freedesktop.systemd1.busname
	ReferencedBy: rescue.service
	ReferencedBy: sys-kernel-config.mount
	ReferencedBy: hdparm.service
	ReferencedBy: systemd-rfkill at rfkill0.service
	ReferencedBy: sys-kernel-debug.mount
	ReferencedBy: rescue.target
	ReferencedBy: systemd-rfkill at rfkill1.service
	ReferencedBy: systemd-rfkill at rfkill2.service
	ReferencedBy: systemd-hwdb-update.service
	ReferencedBy: systemd-sysctl.service
	ReferencedBy: keyboard-setup.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit sys-subsystem-rfkill-devices-rfkill2.device:
	Description: /sys/subsystem/rfkill/devices/rfkill2
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-subsystem-rfkill-devices-rfkill2.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1c.0-0000:01:00.0-ieee80211-phy0-rfkill2.device
	Job Timeout: 1min 30s
	BoundBy: systemd-rfkill at rfkill2.service
	ReferencedBy: systemd-rfkill at rfkill2.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1c.0/0000:01:00.0/ieee80211/phy0/rfkill2
-> Unit bluetooth.target:
	Description: Bluetooth
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Fri 2015-07-31 21:58:59 IST
	Active Enter Timestamp: Fri 2015-07-31 21:58:59 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: bluetooth.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/bluetooth.target
	Condition Timestamp: Fri 2015-07-31 21:58:59 IST
	Condition Result: yes
	Assert Timestamp: Fri 2015-07-31 21:58:59 IST
	Assert Result: yes
	Wants: bluetooth.service
	WantedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d7-1\x2d7:1.0-bluetooth-hci0.device
	Conflicts: shutdown.target
	After: bluetooth.service
	References: bluetooth.service
	References: shutdown.target
	ReferencedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d7-1\x2d7:1.0-bluetooth-hci0.device
	StopWhenUnneeded: yes
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit cryptsetup.target:
	Description: Encrypted Volumes
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: cryptsetup.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/cryptsetup.target
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: systemd-cryptsetup at sdb_crypt.service
	Requires: systemd-cryptsetup at sda7_crypt.service
	WantedBy: sysinit.target
	Conflicts: shutdown.target
	Before: sysinit.target
	Before: lvm2-activation.service
	After: systemd-cryptsetup at sdb_crypt.service
	After: systemd-cryptsetup at sda7_crypt.service
	After: lvm2-activation-early.service
	References: systemd-cryptsetup at sdb_crypt.service
	References: systemd-cryptsetup at sda7_crypt.service
	References: shutdown.target
	ReferencedBy: lvm2-activation.service
	ReferencedBy: sysinit.target
	ReferencedBy: systemd-cryptsetup at sdb_crypt.service
	ReferencedBy: lvm2-activation-early.service
	ReferencedBy: systemd-cryptsetup at sda7_crypt.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit keyboard-setup.service:
	Description: LSB: Set preliminary keymap
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/keyboard-setup.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: keyboard-setup.service
	Documentation: man:systemd-sysv-generator(8)
	Fragment Path: /run/systemd/generator.late/keyboard-setup.service
	Source Path: /etc/init.d/keyboard-setup
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Wants: system.slice
	WantedBy: sysinit.target
	Before: sysinit.target
	Before: systemd-remount-fs.service
	After: mountkernfs.service
	After: system.slice
	After: keymap.service
	After: systemd-udevd.service
	After: systemd-journald.socket
	References: sysinit.target
	References: mountkernfs.service
	References: system.slice
	References: keymap.service
	References: systemd-udevd.service
	References: systemd-remount-fs.service
	References: systemd-journald.socket
	ReferencedBy: sysinit.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: no
	Type: forking
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /etc/init.d/keyboard-setup start
	-> ExecReload:
		Command Line: /etc/init.d/keyboard-setup reload
	-> ExecStop:
		Command Line: /etc/init.d/keyboard-setup stop
-> Unit spamassassin.service:
	Description: spamassassin.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: spamassassin.service
	Before: postfix.service
	ReferencedBy: postfix.service
-> Unit systemd-journald-dev-log.socket:
	Description: Journal Socket (/dev/log)
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-journald-dev-log.socket
	Documentation: man:systemd-journald.service(8)
	Documentation: man:journald.conf(5)
	Fragment Path: /lib/systemd/system/systemd-journald-dev-log.socket
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Requires: -.mount
	Wants: -.slice
	WantedBy: systemd-journald.service
	WantedBy: sockets.target
	Before: iodined.service
	Before: gdomap.service
	Before: systemd-journald.service
	Before: mysql.service
	Before: postfix.service
	Before: speech-dispatcher.service
	Before: sockets.target
	Before: mcelog.service
	Before: dovecot.service
	Before: irqbalance.service
	After: -.mount
	After: -.slice
	Triggers: systemd-journald.service
	References: -.slice
	References: -.mount
	References: sockets.target
	References: systemd-journald.service
	ReferencedBy: iodined.service
	ReferencedBy: gdomap.service
	ReferencedBy: systemd-journald.service
	ReferencedBy: mysql.service
	ReferencedBy: postfix.service
	ReferencedBy: speech-dispatcher.service
	ReferencedBy: sockets.target
	ReferencedBy: mcelog.service
	ReferencedBy: dovecot.service
	ReferencedBy: irqbalance.service
	RequiresMountsFor: /run/systemd/journal/dev-log
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Socket State: running
	Result: success
	BindIPv6Only: default
	Backlog: 128
	SocketMode: 0666
	DirectoryMode: 0755
	KeepAlive: no
	NoDelay: no
	FreeBind: no
	Transparent: no
	Broadcast: no
	PassCredentials: yes
	PassSecurity: yes
	TCPCongestion: n/a
	RemoveOnStop: no
	SELinuxContextFromNet: no
	ReceiveBuffer: 8388608
	SendBuffer: 8388608
	ListenDatagram: /run/systemd/journal/dev-log
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit dev-SSHDCrypt-ROOT.device:
	Description: /dev/SSHDCrypt/ROOT
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-SSHDCrypt-ROOT.device
	Following: sys-devices-virtual-block-dm\x2d3.device
	Following Set Member: sys-devices-virtual-block-dm\x2d3.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAq7ic3Bd7CskLs20cyN4S1SOTEvVeUKV6r.device
	Following Set Member: dev-dm\x2d3.device
	Following Set Member: dev-disk-by\x2duuid-f3c1b4f2\x2dd8e5\x2d4c9d\x2d9775\x2d638cc1c1165e.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dROOT.device
	Following Set Member: dev-disk-by\x2dlabel-ROOT.device
	Following Set Member: dev-mapper-SSHDCrypt\x2dROOT.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-3
-> Unit dev-disk-by\x2duuid-f3c1b4f2\x2dd8e5\x2d4c9d\x2d9775\x2d638cc1c1165e.device:
	Description: /dev/disk/by-uuid/f3c1b4f2-d8e5-4c9d-9775-638cc1c1165e
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2duuid-f3c1b4f2\x2dd8e5\x2d4c9d\x2d9775\x2d638cc1c1165e.device
	Following: sys-devices-virtual-block-dm\x2d3.device
	Following Set Member: sys-devices-virtual-block-dm\x2d3.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAq7ic3Bd7CskLs20cyN4S1SOTEvVeUKV6r.device
	Following Set Member: dev-dm\x2d3.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dROOT.device
	Following Set Member: dev-disk-by\x2dlabel-ROOT.device
	Following Set Member: dev-mapper-SSHDCrypt\x2dROOT.device
	Following Set Member: dev-SSHDCrypt-ROOT.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-3
-> Unit dicod.service:
	Description: Dicod dictionary server
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/dicod.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: dicod.service
	Fragment Path: /lib/systemd/system/dicod.service
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	WantedBy: multi-user.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: multi-user.target
	After: network.target
	After: system.slice
	After: basic.target
	After: systemd-journald.socket
	After: auditd.service
	References: network.target
	References: system.slice
	References: basic.target
	References: shutdown.target
	References: systemd-journald.socket
	References: auditd.service
	ReferencedBy: multi-user.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: simple
	Restart: on-failure
	NotifyAccess: none
	NotifyState: unknown
	Main PID: 1112
	Main PID Known: yes
	Main PID Alien: no
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	EnvironmentFile: -/etc/default/dicod
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /usr/bin/dicod -f $DAEMON_OPTS
	-> ExecReload:
		Command Line: /bin/kill -HUP $MAINPID
-> Unit rsyslog.service:
	Description: rsyslog.service
	Instance: n/a
	Unit Load State: masked
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: rsyslog.service
	Fragment Path: /dev/null
	WantedBy: multi-user.target
	ReferencedBy: multi-user.target
-> Unit dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.swap:
	Description: /dev/disk/by-uuid/b5647308-33d3-4b33-bbd4-67c47533d596
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.swap
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.swap
	Following: dev-mapper-SSHDCrypt\x2dSWAP.swap
	Following Set Member: dev-SSHDCrypt-SWAP.swap
	Following Set Member: dev-mapper-SSHDCrypt\x2dSWAP.swap
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.swap
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.swap
	Following Set Member: dev-dm\x2d2.swap
	Requires: -.mount
	Wants: system.slice
	Conflicts: umount.target
	Before: umount.target
	After: -.mount
	After: systemd-journald.socket
	After: system.slice
	References: umount.target
	References: -.mount
	References: systemd-journald.socket
	References: system.slice
	RequiresMountsFor: /dev/disk/by-uuid/b5647308-33d3-4b33-bbd4-67c47533d596
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Swap State: active
	Result: success
	What: /dev/disk/by-uuid/b5647308-33d3-4b33-bbd4-67c47533d596
	From /proc/swaps: yes
	From fragment: no
	Device Node: /dev/dm-2
	Priority: -1
	Options: 
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit dev-ttyS1.device:
	Description: /dev/ttyS1
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-ttyS1.device
	Following: sys-devices-platform-serial8250-tty-ttyS1.device
	Following Set Member: sys-devices-platform-serial8250-tty-ttyS1.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/platform/serial8250/tty/ttyS1
-> Unit syslog.service:
	Description: syslog.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: syslog.service
	After: syslog.socket
	TriggeredBy: syslog.socket
	ReferencedBy: syslog.socket
-> Unit sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda6.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB BOOT
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda6.device
	Following Set Member: dev-sda6.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart6.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart6.device
	Following Set Member: dev-disk-by\x2dlabel-BOOT.device
	Following Set Member: dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.device
	Following Set Member: dev-disk-by\x2dpartuuid-0c9648fc\x2db83c\x2d410c\x2d9966\x2d36b4bcf41a62.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda6
-> Unit dev-sda5.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB Windows8_OS
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-sda5.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda5.device
	Following Set Member: dev-disk-by\x2dpartuuid-5616cb41\x2d5424\x2d4969\x2da0e3\x2d950d408f49c9.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda5.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart5.device
	Following Set Member: dev-disk-by\x2dlabel-Windows8_OS.device
	Following Set Member: dev-disk-by\x2duuid-3AEC0E87EC0E3E1F.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart5.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda5
-> Unit dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart1.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB WINRE_DRV
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart1.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
	Following Set Member: dev-disk-by\x2duuid-268003D18003A681.device
	Following Set Member: dev-disk-by\x2dlabel-WINRE_DRV.device
	Following Set Member: dev-disk-by\x2dpartuuid-26145e88\x2dc087\x2d4701\x2da765\x2dd9bc0b1cc602.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
	Following Set Member: dev-sda1.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart1.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1
-> Unit systemd-udevd.service:
	Description: udev Kernel Device Manager
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/systemd-udevd.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: udev.service
	Name: systemd-udevd.service
	Documentation: man:systemd-udevd.service(8)
	Documentation: man:udev(7)
	Fragment Path: /lib/systemd/system/systemd-udevd.service
	ConditionPathIsReadWrite: /sys untested
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Wants: systemd-udevd-control.socket
	Wants: systemd-udevd-kernel.socket
	Wants: system.slice
	WantedBy: sysinit.target
	WantedBy: systemd-udev-settle.service
	WantedBy: systemd-udev-trigger.service
	Before: systemd-networkd.service
	Before: sysinit.target
	Before: keyboard-setup.service
	Before: hdparm.service
	Before: udev-finish.service
	After: systemd-udevd-kernel.socket
	After: systemd-journald.socket
	After: systemd-udevd-control.socket
	After: system.slice
	After: systemd-tmpfiles-setup-dev.service
	After: systemd-sysusers.service
	TriggeredBy: systemd-udevd-control.socket
	TriggeredBy: systemd-udevd-kernel.socket
	References: systemd-udevd-kernel.socket
	References: systemd-journald.socket
	References: systemd-udevd-control.socket
	References: system.slice
	References: sysinit.target
	References: systemd-sysusers.service
	ReferencedBy: keyboard-setup.service
	ReferencedBy: sysinit.target
	ReferencedBy: udev-finish.service
	ReferencedBy: hdparm.service
	ReferencedBy: systemd-udev-trigger.service
	ReferencedBy: systemd-tmpfiles-setup-dev.service
	ReferencedBy: systemd-udev-settle.service
	ReferencedBy: systemd-udevd-kernel.socket
	ReferencedBy: systemd-networkd.service
	ReferencedBy: systemd-udevd-control.socket
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: notify
	Restart: always
	NotifyAccess: main
	NotifyState: unknown
	Main PID: 358
	Main PID Known: yes
	Main PID Alien: no
	KillMode: mixed
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	OOMScoreAdjust: -1000
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-udevd
	Status Text: Processing...
-> Unit sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d7-1\x2d7:1.0-bluetooth-hci0.device:
	Description: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/bluetooth/hci0
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Fri 2015-07-31 21:58:59 IST
	Active Enter Timestamp: Fri 2015-07-31 21:58:59 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d7-1\x2d7:1.0-bluetooth-hci0.device
	Following Set Member: sys-subsystem-bluetooth-devices-hci0.device
	Job Timeout: 1min 30s
	Wants: bluetooth.target
	References: bluetooth.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/bluetooth/hci0
-> Unit sys-subsystem-net-devices-wlan0.device:
	Description: RTL8723BE PCIe Wireless Network Adapter
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-subsystem-net-devices-wlan0.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1c.0-0000:01:00.0-net-wlan0.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1c.0/0000:01:00.0/net/wlan0
-> Unit systemd-ask-password-wall.service:
	Description: Forward Password Requests to Wall
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-ask-password-wall.service
	Documentation: man:systemd-ask-password-console.service(8)
	Fragment Path: /lib/systemd/system/systemd-ask-password-wall.service
	Requires: basic.target
	Wants: system.slice
	Conflicts: shutdown.target
	Before: shutdown.target
	After: system.slice
	After: systemd-ask-password-wall.path
	After: systemd-journald.socket
	After: basic.target
	After: systemd-user-sessions.service
	TriggeredBy: systemd-ask-password-wall.path
	References: system.slice
	References: systemd-journald.socket
	References: basic.target
	References: shutdown.target
	References: systemd-user-sessions.service
	ReferencedBy: systemd-ask-password-wall.path
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: simple
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStartPre:
		Command Line: /bin/systemctl stop systemd-ask-password-console.path systemd-ask-password-console.service systemd-ask-password-plymouth.path systemd-ask-password-plymouth.service
	-> ExecStart:
		Command Line: /bin/systemd-tty-ask-password-agent --wall
-> Unit systemd-journal-flush.service:
	Description: Flush Journal to Persistent Storage
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/systemd-journal-flush.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: systemd-journal-flush.service
	Documentation: man:systemd-journald.service(8)
	Documentation: man:journald.conf(5)
	Fragment Path: /lib/systemd/system/systemd-journal-flush.service
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Requires: -.mount
	Requires: systemd-journald.service
	Wants: system.slice
	WantedBy: sysinit.target
	Before: systemd-tmpfiles-setup.service
	Before: systemd-user-sessions.service
	After: systemd-journald.socket
	After: -.mount
	After: systemd-remount-fs.service
	After: systemd-journald.service
	After: system.slice
	References: systemd-journald.socket
	References: systemd-user-sessions.service
	References: -.mount
	References: systemd-remount-fs.service
	References: systemd-tmpfiles-setup.service
	References: systemd-journald.service
	References: system.slice
	ReferencedBy: sysinit.target
	RequiresMountsFor: /var/log/journal
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /bin/journalctl --flush
-> Unit sys-subsystem-rfkill-devices-rfkill10.device:
	Description: /sys/subsystem/rfkill/devices/rfkill10
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Fri 2015-07-31 21:58:59 IST
	Active Enter Timestamp: Fri 2015-07-31 21:58:59 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-subsystem-rfkill-devices-rfkill10.device
	Following Set Member: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d7-1\x2d7:1.0-bluetooth-hci0-rfkill10.device
	Job Timeout: 1min 30s
	BoundBy: systemd-rfkill at rfkill10.service
	ReferencedBy: systemd-rfkill at rfkill10.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/bluetooth/hci0/rfkill10
-> Unit postgrey.service:
	Description: postgrey.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: postgrey.service
	Before: postfix.service
	ReferencedBy: postfix.service
-> Unit dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart4.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB Microsoft\x20reserved\x20partition
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart4.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda4.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart4.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda4.device
	Following Set Member: dev-disk-by\x2dpartuuid-242faae1\x2daa64\x2d4791\x2da2aa\x2d314cf9e49b51.device
	Following Set Member: dev-sda4.device
	Following Set Member: dev-disk-by\x2dpartlabel-Microsoft\x5cx20reserved\x5cx20partition.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda4
-> Unit dev-disk-by\x2did-dm\x2duuid\x2dCRYPT\x2dLUKS1\x2da1d51c69c438428b8346273abcbf5a52\x2dsda7_crypt.device:
	Description: LVM PV kohKZh-NmaK-NWe0-1v3E-wmUk-K9bT-NOCn0f on /dev/dm-1
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-dm\x2duuid\x2dCRYPT\x2dLUKS1\x2da1d51c69c438428b8346273abcbf5a52\x2dsda7_crypt.device
	Following: sys-devices-virtual-block-dm\x2d1.device
	Following Set Member: sys-devices-virtual-block-dm\x2d1.device
	Following Set Member: dev-block-254:1.device
	Following Set Member: dev-disk-by\x2did-lvm\x2dpv\x2duuid\x2dkohKZh\x2dNmaK\x2dNWe0\x2d1v3E\x2dwmUk\x2dK9bT\x2dNOCn0f.device
	Following Set Member: dev-mapper-sda7_crypt.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dsda7_crypt.device
	Following Set Member: dev-dm\x2d1.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-1
-> Unit acpid.service:
	Description: acpid.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: acpid.service
	Before: lightdm.service
	ReferencedBy: lightdm.service
-> Unit proc-sys-fs-binfmt_misc.mount:
	Description: Arbitrary Executable File Formats File System
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Fri 2015-07-31 14:53:25 IST
	Active Enter Timestamp: Fri 2015-07-31 14:53:25 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/proc-sys-fs-binfmt_misc.mount
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: proc-sys-fs-binfmt_misc.mount
	Documentation: https://www.kernel.org/doc/Documentation/binfmt_misc.txt
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
	Fragment Path: /lib/systemd/system/proc-sys-fs-binfmt_misc.mount
	Condition Timestamp: Fri 2015-07-31 14:53:25 IST
	Condition Result: yes
	Assert Timestamp: Fri 2015-07-31 14:53:25 IST
	Assert Result: yes
	Requires: -.mount
	Wants: system.slice
	After: system.slice
	After: -.mount
	After: proc-sys-fs-binfmt_misc.automount
	After: systemd-journald.socket
	TriggeredBy: proc-sys-fs-binfmt_misc.automount
	References: -.mount
	References: systemd-journald.socket
	References: system.slice
	ReferencedBy: proc-sys-fs-binfmt_misc.automount
	RequiresMountsFor: /proc/sys/fs
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Mount State: mounted
	Result: success
	Where: /proc/sys/fs/binfmt_misc
	What: binfmt_misc
	File System Type: binfmt_misc
	Options: rw,relatime
	From /proc/self/mountinfo: yes
	From fragment: yes
	DirectoryMode: 0755
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit dev-block-254:1.device:
	Description: LVM PV kohKZh-NmaK-NWe0-1v3E-wmUk-K9bT-NOCn0f on /dev/dm-1
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-block-254:1.device
	Following: sys-devices-virtual-block-dm\x2d1.device
	Following Set Member: sys-devices-virtual-block-dm\x2d1.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dCRYPT\x2dLUKS1\x2da1d51c69c438428b8346273abcbf5a52\x2dsda7_crypt.device
	Following Set Member: dev-disk-by\x2did-lvm\x2dpv\x2duuid\x2dkohKZh\x2dNmaK\x2dNWe0\x2d1v3E\x2dwmUk\x2dK9bT\x2dNOCn0f.device
	Following Set Member: dev-mapper-sda7_crypt.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dsda7_crypt.device
	Following Set Member: dev-dm\x2d1.device
	Job Timeout: 1min 30s
	BoundBy: lvm2-pvscan at 254:1.service
	ReferencedBy: lvm2-pvscan at 254:1.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-1
-> Unit resolvconf.service:
	Description: Nameserver information manager
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/resolvconf.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: resolvconf.service
	Documentation: man:resolvconf(8)
	Fragment Path: /lib/systemd/system/resolvconf.service
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Wants: system.slice
	WantedBy: sysinit.target
	Before: networking.service
	After: systemd-journald.socket
	After: system.slice
	References: system.slice
	References: systemd-journald.socket
	References: networking.service
	ReferencedBy: sysinit.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: simple
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStartPre:
		Command Line: /bin/mkdir -p /run/resolvconf/interface
		Command Line: /bin/touch /run/resolvconf/postponed-update
	-> ExecStart:
		Command Line: /sbin/resolvconf --enable-updates
	-> ExecStop:
		Command Line: /sbin/resolvconf --disable-updates
-> Unit systemd-udevd-control.socket:
	Description: udev Control Socket
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-udevd-control.socket
	Documentation: man:systemd-udevd.service(8)
	Documentation: man:udev(7)
	Fragment Path: /lib/systemd/system/systemd-udevd-control.socket
	ConditionPathIsReadWrite: /sys untested
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Requires: -.mount
	Wants: -.slice
	WantedBy: systemd-udevd.service
	WantedBy: sockets.target
	Before: systemd-udevd.service
	Before: sockets.target
	Before: systemd-udev-trigger.service
	After: -.mount
	After: -.slice
	Triggers: systemd-udevd.service
	References: -.slice
	References: systemd-udevd.service
	References: -.mount
	References: sockets.target
	ReferencedBy: systemd-udevd.service
	ReferencedBy: sockets.target
	ReferencedBy: systemd-udev-trigger.service
	RequiresMountsFor: /run/udev/control
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Socket State: running
	Result: success
	BindIPv6Only: default
	Backlog: 128
	SocketMode: 0600
	DirectoryMode: 0755
	KeepAlive: no
	NoDelay: no
	FreeBind: no
	Transparent: no
	Broadcast: no
	PassCredentials: yes
	PassSecurity: no
	TCPCongestion: n/a
	RemoveOnStop: no
	SELinuxContextFromNet: no
	ListenSequentialPacket: /run/udev/control
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit postgresql.service:
	Description: postgresql.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: postgresql.service
	Before: postfix.service
	Before: dovecot.service
	ReferencedBy: postfix.service
	ReferencedBy: dovecot.service
-> Unit dev-ttyS2.device:
	Description: /dev/ttyS2
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-ttyS2.device
	Following: sys-devices-platform-serial8250-tty-ttyS2.device
	Following Set Member: sys-devices-platform-serial8250-tty-ttyS2.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/platform/serial8250/tty/ttyS2
-> Unit dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart6.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB BOOT
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart6.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda6.device
	Following Set Member: dev-sda6.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart6.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda6.device
	Following Set Member: dev-disk-by\x2dlabel-BOOT.device
	Following Set Member: dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.device
	Following Set Member: dev-disk-by\x2dpartuuid-0c9648fc\x2db83c\x2d410c\x2d9966\x2d36b4bcf41a62.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda6
-> Unit dbus.socket:
	Description: D-Bus System Message Bus Socket
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dbus.socket
	Fragment Path: /lib/systemd/system/dbus.socket
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: sysinit.target
	Requires: -.mount
	Wants: -.slice
	RequiredBy: dbus.service
	WantedBy: systemd-logind.service
	WantedBy: sockets.target
	Conflicts: shutdown.target
	Before: sockets.target
	Before: systemd-logind.service
	Before: dbus.service
	Before: shutdown.target
	Before: lightdm.service
	After: sysinit.target
	After: -.mount
	After: -.slice
	Triggers: dbus.service
	References: sockets.target
	References: -.slice
	References: shutdown.target
	References: dbus.service
	References: -.mount
	References: sysinit.target
	ReferencedBy: dbus.service
	ReferencedBy: systemd-logind.service
	ReferencedBy: sockets.target
	ReferencedBy: lightdm.service
	RequiresMountsFor: /var/run/dbus/system_bus_socket
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Socket State: running
	Result: success
	BindIPv6Only: default
	Backlog: 128
	SocketMode: 0666
	DirectoryMode: 0755
	KeepAlive: no
	NoDelay: no
	FreeBind: no
	Transparent: no
	Broadcast: no
	PassCredentials: no
	PassSecurity: no
	TCPCongestion: n/a
	RemoveOnStop: no
	SELinuxContextFromNet: no
	ListenStream: /var/run/dbus/system_bus_socket
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit umount.target:
	Description: Unmount All Filesystems
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: umount.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/umount.target
	ConflictedBy: boot-efi.mount
	ConflictedBy: dev-dm\x2d2.swap
	ConflictedBy: systemd-cryptsetup at sda7_crypt.service
	ConflictedBy: dev-SSHDCrypt-SWAP.swap
	ConflictedBy: media-SSHD.mount
	ConflictedBy: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.swap
	ConflictedBy: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.swap
	ConflictedBy: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.swap
	ConflictedBy: run-user-1000-gvfs.mount
	ConflictedBy: var-lib-machines.mount
	ConflictedBy: boot.mount
	ConflictedBy: dev-mapper-SSHDCrypt\x2dSWAP.swap
	ConflictedBy: run-user-1000.mount
	ConflictedBy: systemd-cryptsetup at sdb_crypt.service
	After: dev-dm\x2d2.swap
	After: boot.mount
	After: var-lib-machines.mount
	After: systemd-cryptsetup at sdb_crypt.service
	After: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.swap
	After: run-user-1000-gvfs.mount
	After: media-SSHD.mount
	After: dev-mapper-SSHDCrypt\x2dSWAP.swap
	After: run-user-1000.mount
	After: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.swap
	After: dev-SSHDCrypt-SWAP.swap
	After: boot-efi.mount
	After: systemd-cryptsetup at sda7_crypt.service
	After: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.swap
	ReferencedBy: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.swap
	ReferencedBy: systemd-cryptsetup at sda7_crypt.service
	ReferencedBy: systemd-cryptsetup at sdb_crypt.service
	ReferencedBy: dev-dm\x2d2.swap
	ReferencedBy: run-user-1000-gvfs.mount
	ReferencedBy: dev-SSHDCrypt-SWAP.swap
	ReferencedBy: boot.mount
	ReferencedBy: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.swap
	ReferencedBy: media-SSHD.mount
	ReferencedBy: var-lib-machines.mount
	ReferencedBy: run-user-1000.mount
	ReferencedBy: boot-efi.mount
	ReferencedBy: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.swap
	ReferencedBy: dev-mapper-SSHDCrypt\x2dSWAP.swap
	StopWhenUnneeded: no
	RefuseManualStart: yes
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: dead
-> Unit remote-fs.target:
	Description: Remote File Systems
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: remote-fs.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/remote-fs.target
	DropIn Path: /run/systemd/generator/remote-fs.target.d/50-insserv.conf.conf
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Wants: remote-fs-pre.target
	WantedBy: multi-user.target
	Conflicts: shutdown.target
	Before: dovecot.service
	Before: mcelog.service
	Before: apport.service
	Before: postfix.service
	Before: virtualbox.service
	Before: dirmngr.service
	Before: speech-dispatcher.service
	Before: systemd-user-sessions.service
	Before: iodined.service
	Before: kbd.service
	Before: console-setup.service
	Before: irqbalance.service
	Before: gdomap.service
	Before: mysql.service
	Before: lightdm.service
	Before: minissdpd.service
	After: local-fs.target
	After: remote-fs-pre.target
	References: local-fs.target
	References: shutdown.target
	References: remote-fs-pre.target
	ReferencedBy: irqbalance.service
	ReferencedBy: dovecot.service
	ReferencedBy: virtualbox.service
	ReferencedBy: dirmngr.service
	ReferencedBy: systemd-user-sessions.service
	ReferencedBy: multi-user.target
	ReferencedBy: gdomap.service
	ReferencedBy: console-setup.service
	ReferencedBy: mcelog.service
	ReferencedBy: minissdpd.service
	ReferencedBy: postfix.service
	ReferencedBy: apport.service
	ReferencedBy: kbd.service
	ReferencedBy: iodined.service
	ReferencedBy: mysql.service
	ReferencedBy: lightdm.service
	ReferencedBy: speech-dispatcher.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit dev-disk-by\x2dlabel-WINRE_DRV.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB WINRE_DRV
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2dlabel-WINRE_DRV.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
	Following Set Member: dev-disk-by\x2duuid-268003D18003A681.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart1.device
	Following Set Member: dev-disk-by\x2dpartuuid-26145e88\x2dc087\x2d4701\x2da765\x2dd9bc0b1cc602.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
	Following Set Member: dev-sda1.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart1.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1
-> Unit sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200076.3.auto-trigger1.device:
	Description: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200076.3.auto/trigger1
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200076.3.auto-trigger1.device
	Job Timeout: 1min 30s
	Wants: iio-sensor-proxy.service
	References: iio-sensor-proxy.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200076.3.auto/trigger1
-> Unit dev-disk-by\x2did-lvm\x2dpv\x2duuid\x2dkohKZh\x2dNmaK\x2dNWe0\x2d1v3E\x2dwmUk\x2dK9bT\x2dNOCn0f.device:
	Description: LVM PV kohKZh-NmaK-NWe0-1v3E-wmUk-K9bT-NOCn0f on /dev/dm-1
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-lvm\x2dpv\x2duuid\x2dkohKZh\x2dNmaK\x2dNWe0\x2d1v3E\x2dwmUk\x2dK9bT\x2dNOCn0f.device
	Following: sys-devices-virtual-block-dm\x2d1.device
	Following Set Member: sys-devices-virtual-block-dm\x2d1.device
	Following Set Member: dev-block-254:1.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dCRYPT\x2dLUKS1\x2da1d51c69c438428b8346273abcbf5a52\x2dsda7_crypt.device
	Following Set Member: dev-mapper-sda7_crypt.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dsda7_crypt.device
	Following Set Member: dev-dm\x2d1.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-1
-> Unit org.freedesktop.network1.busname:
	Description: Network Service Bus Name
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: org.freedesktop.network1.busname
	Documentation: man:systemd-networkd.service(8)
	Fragment Path: /lib/systemd/system/org.freedesktop.network1.busname
	ConditionPathExists: /sys/fs/kdbus/0-system/ untested
	Requires: sysinit.target
	WantedBy: busnames.target
	WantedBy: systemd-networkd.service
	Conflicts: shutdown.target
	Before: busnames.target
	Before: shutdown.target
	Before: systemd-networkd.service
	After: sysinit.target
	Triggers: systemd-networkd.service
	References: sysinit.target
	References: busnames.target
	References: shutdown.target
	References: systemd-networkd.service
	ReferencedBy: busnames.target
	ReferencedBy: systemd-networkd.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Bus Name State: dead
	Result: success
	Name: org.freedesktop.network1
	Activating: yes
	Accept FD: yes
-> Unit lightdm.service:
	Description: LSB: Light Display Manager
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/lightdm.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: lightdm.service
	Documentation: man:systemd-sysv-generator(8)
	Fragment Path: /run/systemd/generator.late/lightdm.service
	Source Path: /etc/init.d/lightdm
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	WantedBy: multi-user.target
	WantedBy: graphical.target
	Conflicts: shutdown.target
	Before: multi-user.target
	Before: shutdown.target
	Before: graphical.target
	After: dbus.socket
	After: hal.service
	After: x11-common.service
	After: consolekit.service
	After: kbd.service
	After: system.slice
	After: local-fs.target
	After: console-screen.service
	After: basic.target
	After: acpid.service
	After: remote-fs.target
	After: systemd-journald.socket
	References: basic.target
	References: hal.service
	References: consolekit.service
	References: system.slice
	References: console-screen.service
	References: local-fs.target
	References: acpid.service
	References: systemd-journald.socket
	References: multi-user.target
	References: dbus.socket
	References: kbd.service
	References: remote-fs.target
	References: x11-common.service
	References: shutdown.target
	References: graphical.target
	ReferencedBy: multi-user.target
	ReferencedBy: graphical.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: no
	Type: forking
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /etc/init.d/lightdm start
	-> ExecReload:
		Command Line: /etc/init.d/lightdm reload
	-> ExecStop:
		Command Line: /etc/init.d/lightdm stop
-> Unit dev-disk-by\x2dpartuuid-e066dcd7\x2d9fbb\x2d4d00\x2da952\x2dee54e59db6f9.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB LRS_ESP
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2dpartuuid-e066dcd7\x2d9fbb\x2d4d00\x2da952\x2dee54e59db6f9.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart3.device
	Following Set Member: dev-sda3.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
	Following Set Member: dev-disk-by\x2duuid-D20A\x2dAF97.device
	Following Set Member: dev-disk-by\x2dlabel-LRS_ESP.device
	Following Set Member: dev-disk-by\x2dpartlabel-Basic\x5cx20data\x5cx20partition.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart3.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda3
-> Unit hal.service:
	Description: hal.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: hal.service
	Before: lightdm.service
	ReferencedBy: lightdm.service
-> Unit dev-SSHDCrypt-SWAP.device:
	Description: /dev/SSHDCrypt/SWAP
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-SSHDCrypt-SWAP.device
	Following: sys-devices-virtual-block-dm\x2d2.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.device
	Following Set Member: sys-devices-virtual-block-dm\x2d2.device
	Following Set Member: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.device
	Following Set Member: dev-dm\x2d2.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.device
	Following Set Member: dev-mapper-SSHDCrypt\x2dSWAP.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-2
-> Unit systemd-hwdb-update.service:
	Description: Rebuild Hardware Database
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-hwdb-update.service
	Documentation: man:hwdb(7)
	Documentation: man:systemd-hwdb(8)
	Fragment Path: /lib/systemd/system/systemd-hwdb-update.service
	ConditionDirectoryNotEmpty: |/etc/udev/hwdb.d/ untested
	ConditionPathExists: |/etc/udev/hwdb.bin untested
	ConditionPathExists: |!/lib/udev/hwdb.bin untested
	ConditionNeedsUpdate: /etc untested
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: no
	Wants: system.slice
	WantedBy: sysinit.target
	Conflicts: shutdown.target
	Before: sysinit.target
	Before: shutdown.target
	Before: systemd-udev-trigger.service
	Before: systemd-update-done.service
	After: systemd-remount-fs.service
	After: systemd-journald.socket
	After: system.slice
	References: system.slice
	References: systemd-remount-fs.service
	References: shutdown.target
	References: sysinit.target
	References: systemd-update-done.service
	References: systemd-journald.socket
	ReferencedBy: sysinit.target
	ReferencedBy: systemd-udev-trigger.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /bin/systemd-hwdb update
-> Unit dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart7.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB 7
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart7.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda7.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda7.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart7.device
	Following Set Member: dev-disk-by\x2duuid-a1d51c69\x2dc438\x2d428b\x2d8346\x2d273abcbf5a52.device
	Following Set Member: dev-sda7.device
	Following Set Member: dev-disk-by\x2dpartuuid-5c76f548\x2dae81\x2d455c\x2d9fef\x2d4ef79ce9b11d.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda7
-> Unit dev-sda2.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB SYSTEM_DRV
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-sda2.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart2.device
	Following Set Member: dev-disk-by\x2duuid-2206\x2d0BF2.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
	Following Set Member: dev-disk-by\x2dlabel-SYSTEM_DRV.device
	Following Set Member: dev-disk-by\x2dpartuuid-cf1d0c57\x2d42fa\x2d4fd7\x2dbfa0\x2ddb8cf69fcd61.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart2.device
	Following Set Member: dev-disk-by\x2dpartlabel-EFI\x5cx20system\x5cx20partition.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda2
-> Unit dev-disk-by\x2dpartlabel-Basic\x5cx20data\x5cx20partition.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB LRS_ESP
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2dpartlabel-Basic\x5cx20data\x5cx20partition.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart3.device
	Following Set Member: dev-sda3.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
	Following Set Member: dev-disk-by\x2duuid-D20A\x2dAF97.device
	Following Set Member: dev-disk-by\x2dlabel-LRS_ESP.device
	Following Set Member: dev-disk-by\x2dpartuuid-e066dcd7\x2d9fbb\x2d4d00\x2da952\x2dee54e59db6f9.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart3.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda3
-> Unit dev-disk-by\x2duuid-D20A\x2dAF97.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB LRS_ESP
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2duuid-D20A\x2dAF97.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart3.device
	Following Set Member: dev-sda3.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
	Following Set Member: dev-disk-by\x2dlabel-LRS_ESP.device
	Following Set Member: dev-disk-by\x2dpartuuid-e066dcd7\x2d9fbb\x2d4d00\x2da952\x2dee54e59db6f9.device
	Following Set Member: dev-disk-by\x2dpartlabel-Basic\x5cx20data\x5cx20partition.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart3.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda3
-> Unit gdm.service:
	Description: GNOME Display Manager
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/gdm.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: gdm3.service
	Name: gdm.service
	Name: display-manager.service
	Fragment Path: /lib/systemd/system/gdm.service
	Condition Timestamp: Wed 2015-07-29 15:29:22 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:22 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	WantedBy: graphical.target
	Conflicts: getty at tty7.service
	Conflicts: shutdown.target
	Conflicts: plymouth-quit.service
	Before: shutdown.target
	Before: graphical.target
	After: plymouth-start.service
	After: systemd-journald.socket
	After: system.slice
	After: plymouth-quit.service
	After: systemd-user-sessions.service
	After: rc-local.service
	After: basic.target
	After: getty at tty7.service
	OnFailure: plymouth-quit.service
	References: plymouth-start.service
	References: systemd-journald.socket
	References: shutdown.target
	References: system.slice
	References: plymouth-quit.service
	References: systemd-user-sessions.service
	References: rc-local.service
	References: basic.target
	References: getty at tty7.service
	ReferencedBy: graphical.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: simple
	Restart: always
	NotifyAccess: none
	NotifyState: unknown
	Main PID: 1309
	Main PID Known: yes
	Main PID Alien: no
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	EnvironmentFile: -/etc/default/locale
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: syslog
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStartPre:
		Command Line: /bin/sh -c '[ "$(cat /etc/X11/default-display-manager 2>/dev/null)" = "/usr/sbin/gdm3" ]'
		Command Line: /usr/share/gdm/generate-config
	-> ExecStart:
		Command Line: /usr/sbin/gdm3
	-> ExecReload:
		Command Line: /bin/kill -HUP $MAINPID
		Command Line: /usr/share/gdm/generate-config
-> Unit dev-disk-by\x2duuid-2206\x2d0BF2.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB SYSTEM_DRV
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2duuid-2206\x2d0BF2.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart2.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
	Following Set Member: dev-disk-by\x2dpartuuid-cf1d0c57\x2d42fa\x2d4fd7\x2dbfa0\x2ddb8cf69fcd61.device
	Following Set Member: dev-disk-by\x2dlabel-SYSTEM_DRV.device
	Following Set Member: dev-sda2.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart2.device
	Following Set Member: dev-disk-by\x2dpartlabel-EFI\x5cx20system\x5cx20partition.device
	Job Timeout: 1min 30s
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Wants: boot-efi.mount
	BoundBy: systemd-fsck at dev-disk-by\x2duuid-2206\x2d0BF2.service
	BoundBy: boot-efi.mount
	Before: systemd-fsck at dev-disk-by\x2duuid-2206\x2d0BF2.service
	Before: boot-efi.mount
	ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-2206\x2d0BF2.service
	ReferencedBy: boot-efi.mount
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda2
-> Unit dev-mqueue.mount:
	Description: POSIX Message Queue File System
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/dev-mqueue.mount
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: dev-mqueue.mount
	Documentation: man:mq_overview(7)
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
	Fragment Path: /lib/systemd/system/dev-mqueue.mount
	ConditionPathExists: /proc/sys/fs/mqueue untested
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Requires: -.mount
	Wants: system.slice
	WantedBy: sysinit.target
	Before: sysinit.target
	After: -.mount
	After: systemd-journald.socket
	After: system.slice
	References: sysinit.target
	References: -.mount
	References: systemd-journald.socket
	References: system.slice
	ReferencedBy: sysinit.target
	RequiresMountsFor: /dev
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Mount State: mounted
	Result: success
	Where: /dev/mqueue
	What: mqueue
	File System Type: mqueue
	Options: rw,relatime
	From /proc/self/mountinfo: yes
	From fragment: yes
	DirectoryMode: 0755
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device
	Following Set Member: dev-sda.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda
-> Unit mcelog.service:
	Description: LSB: Machine Check Exceptions (MCE) collector & decoder
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/mcelog.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: mcelog.service
	Documentation: man:systemd-sysv-generator(8)
	Fragment Path: /run/systemd/generator.late/mcelog.service
	Source Path: /etc/init.d/mcelog
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	WantedBy: multi-user.target
	WantedBy: graphical.target
	Conflicts: shutdown.target
	Before: multi-user.target
	Before: shutdown.target
	Before: graphical.target
	After: systemd-journald.socket
	After: system.slice
	After: basic.target
	After: systemd-journald-dev-log.socket
	After: local-fs.target
	After: remote-fs.target
	References: remote-fs.target
	References: systemd-journald.socket
	References: shutdown.target
	References: system.slice
	References: basic.target
	References: graphical.target
	References: multi-user.target
	References: systemd-journald-dev-log.socket
	References: local-fs.target
	ReferencedBy: multi-user.target
	ReferencedBy: graphical.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: no
	Type: forking
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /etc/init.d/mcelog start
	-> ExecStop:
		Command Line: /etc/init.d/mcelog stop
-> Unit x11-common.service:
	Description: x11-common.service
	Instance: n/a
	Unit Load State: masked
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: x11-common.service
	Fragment Path: /dev/null
	Before: lightdm.service
	ReferencedBy: lightdm.service
-> Unit systemd-fsck-root.service:
	Description: File System Check on Root Device
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-fsck-root.service
	Documentation: man:systemd-fsck-root.service(8)
	Fragment Path: /lib/systemd/system/systemd-fsck-root.service
	ConditionPathExists: !/run/initramfs/fsck-root untested
	ConditionPathIsReadWrite: !/ untested
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: no
	Wants: systemd-fsckd.socket
	Wants: system.slice
	WantedBy: local-fs.target
	Before: systemd-fsck at dev-disk-by\x2duuid-2206\x2d0BF2.service
	Before: local-fs.target
	Before: systemd-remount-fs.service
	Before: shutdown.target
	Before: systemd-fsck at dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.service
	Before: systemd-fsck at dev-mapper-SSHDCrypt\x2dROOT.service
	After: system.slice
	After: systemd-fsckd.socket
	After: systemd-journald.socket
	References: systemd-journald.socket
	References: system.slice
	References: local-fs.target
	References: shutdown.target
	References: systemd-fsckd.socket
	ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-2206\x2d0BF2.service
	ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.service
	ReferencedBy: systemd-remount-fs.service
	ReferencedBy: local-fs.target
	ReferencedBy: systemd-fsck at dev-mapper-SSHDCrypt\x2dROOT.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-fsck
-> Unit dnsmasq.service:
	Description: dnsmasq - A lightweight DHCP and caching DNS server
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/dnsmasq.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: dnsmasq.service
	Fragment Path: /lib/systemd/system/dnsmasq.service
	DropIn Path: /run/systemd/generator/dnsmasq.service.d/50-dnsmasq-$named.conf
	DropIn Path: /run/systemd/generator/dnsmasq.service.d/50-insserv.conf-$named.conf
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: network.target
	Requires: basic.target
	Wants: nss-lookup.target
	Wants: system.slice
	RequiredBy: nss-lookup.target
	WantedBy: multi-user.target
	Conflicts: shutdown.target
	Before: nss-lookup.target
	Before: shutdown.target
	Before: multi-user.target
	After: system.slice
	After: systemd-journald.socket
	After: basic.target
	References: basic.target
	References: shutdown.target
	References: systemd-journald.socket
	References: nss-lookup.target
	References: system.slice
	References: network.target
	ReferencedBy: nss-lookup.target
	ReferencedBy: multi-user.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: forking
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	Main PID: 1226
	Main PID Known: yes
	Main PID Alien: no
	PIDFile: /var/run/dnsmasq/dnsmasq.pid
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStartPre:
		Command Line: /usr/sbin/dnsmasq --test
	-> ExecStart:
		Command Line: /etc/init.d/dnsmasq systemd-exec
	-> ExecStartPost:
		Command Line: /etc/init.d/dnsmasq systemd-start-resolvconf
	-> ExecReload:
		Command Line: /bin/kill -HUP $MAINPID
	-> ExecStop:
		Command Line: /etc/init.d/dnsmasq systemd-stop-resolvconf
-> Unit dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart6.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB BOOT
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart6.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda6.device
	Following Set Member: dev-sda6.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart6.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda6.device
	Following Set Member: dev-disk-by\x2dlabel-BOOT.device
	Following Set Member: dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.device
	Following Set Member: dev-disk-by\x2dpartuuid-0c9648fc\x2db83c\x2d410c\x2d9966\x2d36b4bcf41a62.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda6
-> Unit nslcd.service:
	Description: nslcd.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: nslcd.service
	Before: dovecot.service
	ReferencedBy: dovecot.service
-> Unit busnames.target:
	Description: Bus Names
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: busnames.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/busnames.target
	Wants: org.freedesktop.resolve1.busname
	Wants: org.freedesktop.machine1.busname
	Wants: org.freedesktop.hostname1.busname
	Wants: org.freedesktop.network1.busname
	Wants: org.freedesktop.timedate1.busname
	Wants: org.freedesktop.login1.busname
	Wants: org.freedesktop.systemd1.busname
	Wants: org.freedesktop.locale1.busname
	Conflicts: shutdown.target
	After: org.freedesktop.network1.busname
	After: org.freedesktop.hostname1.busname
	After: org.freedesktop.locale1.busname
	After: org.freedesktop.systemd1.busname
	After: org.freedesktop.login1.busname
	After: org.freedesktop.timedate1.busname
	After: org.freedesktop.machine1.busname
	After: org.freedesktop.resolve1.busname
	References: org.freedesktop.resolve1.busname
	References: org.freedesktop.machine1.busname
	References: org.freedesktop.hostname1.busname
	References: shutdown.target
	References: org.freedesktop.network1.busname
	References: org.freedesktop.timedate1.busname
	References: org.freedesktop.login1.busname
	References: org.freedesktop.systemd1.busname
	References: org.freedesktop.locale1.busname
	ReferencedBy: org.freedesktop.network1.busname
	ReferencedBy: org.freedesktop.hostname1.busname
	ReferencedBy: org.freedesktop.locale1.busname
	ReferencedBy: org.freedesktop.systemd1.busname
	ReferencedBy: org.freedesktop.login1.busname
	ReferencedBy: org.freedesktop.timedate1.busname
	ReferencedBy: org.freedesktop.machine1.busname
	ReferencedBy: org.freedesktop.resolve1.busname
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: dead
-> Unit keymap.service:
	Description: keymap.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: keymap.service
	Before: keyboard-setup.service
	ReferencedBy: keyboard-setup.service
-> Unit systemd-rfkill at rfkill0.service:
	Description: Load/Save RF Kill Switch Status of rfkill0
	Instance: rfkill0
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system-systemd\x2drfkill.slice
	CGroup: /system.slice/system-systemd\x2drfkill.slice/systemd-rfkill at rfkill0.service
	CGroup realized: yes
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-rfkill at rfkill0.service
	Documentation: man:systemd-rfkill at .service(8)
	Fragment Path: /lib/systemd/system/systemd-rfkill at .service
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Requires: -.mount
	Wants: system-systemd\x2drfkill.slice
	BindsTo: sys-subsystem-rfkill-devices-rfkill0.device
	WantedBy: sys-devices-pci0000:00-0000:00:1f.0-PNP0C09:00-VPC2004:00-rfkill-rfkill0.device
	Conflicts: shutdown.target
	Before: sysinit.target
	Before: shutdown.target
	After: systemd-remount-fs.service
	After: system-systemd\x2drfkill.slice
	After: -.mount
	After: systemd-journald.socket
	References: systemd-remount-fs.service
	References: sys-subsystem-rfkill-devices-rfkill0.device
	References: system-systemd\x2drfkill.slice
	References: systemd-journald.socket
	References: sysinit.target
	References: -.mount
	References: shutdown.target
	ReferencedBy: sys-devices-pci0000:00-0000:00:1f.0-PNP0C09:00-VPC2004:00-rfkill-rfkill0.device
	RequiresMountsFor: /var/lib/systemd/rfkill
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-rfkill load %I
	-> ExecStop:
		Command Line: /lib/systemd/systemd-rfkill save %I
-> Unit dev-disk-by\x2did-dm\x2duuid\x2dCRYPT\x2dLUKS1\x2d8f7094e7d2eb453fb2b71a162de14111\x2dsdb_crypt.device:
	Description: /dev/disk/by-id/dm-uuid-CRYPT-LUKS1-8f7094e7d2eb453fb2b71a162de14111-sdb_crypt
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-dm\x2duuid\x2dCRYPT\x2dLUKS1\x2d8f7094e7d2eb453fb2b71a162de14111\x2dsdb_crypt.device
	Following: sys-devices-virtual-block-dm\x2d0.device
	Following Set Member: dev-mapper-sdb_crypt.device
	Following Set Member: dev-disk-by\x2duuid-339197eb\x2d781c\x2d4a32\x2d9265\x2d060536dfa9e0.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dsdb_crypt.device
	Following Set Member: dev-dm\x2d0.device
	Following Set Member: sys-devices-virtual-block-dm\x2d0.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-0
-> Unit dev-sdb.device:
	Description: KINGSTON_SM2280S3120G
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-sdb.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device
	Following Set Member: dev-disk-by\x2duuid-8f7094e7\x2dd2eb\x2d453f\x2db2b7\x2d1a162de14111.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device
	Following Set Member: dev-disk-by\x2did-ata\x2dKINGSTON_SM2280S3120G_50026B7251189BF2.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb
-> Unit gdomap.service:
	Description: LSB: Start the GNUstep distributed object mapper
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/gdomap.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: gdomap.service
	Documentation: man:systemd-sysv-generator(8)
	Fragment Path: /run/systemd/generator.late/gdomap.service
	Source Path: /etc/init.d/gdomap
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	WantedBy: multi-user.target
	WantedBy: graphical.target
	Conflicts: shutdown.target
	Before: multi-user.target
	Before: shutdown.target
	Before: graphical.target
	After: system.slice
	After: basic.target
	After: systemd-journald-dev-log.socket
	After: remote-fs.target
	After: systemd-journald.socket
	References: systemd-journald.socket
	References: shutdown.target
	References: system.slice
	References: basic.target
	References: graphical.target
	References: multi-user.target
	References: systemd-journald-dev-log.socket
	References: remote-fs.target
	ReferencedBy: multi-user.target
	ReferencedBy: graphical.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: no
	Type: forking
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /etc/init.d/gdomap start
	-> ExecStop:
		Command Line: /etc/init.d/gdomap stop
-> Unit plymouth-start.service:
	Description: plymouth-start.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: plymouth-start.service
	Before: gdm.service
	Before: systemd-ask-password-console.service
	Before: rescue.service
	Before: systemd-ask-password-console.path
	ReferencedBy: gdm.service
	ReferencedBy: systemd-ask-password-console.service
	ReferencedBy: rescue.service
	ReferencedBy: systemd-ask-password-console.path
-> Unit lvm2-lvmetad.socket:
	Description: LVM2 metadata daemon socket
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: lvm2-lvmetad.socket
	Documentation: man:lvmetad(8)
	Fragment Path: /lib/systemd/system/lvm2-lvmetad.socket
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Requires: -.mount
	Wants: -.slice
	RequiredBy: lvm2-lvmetad.service
	RequiredBy: lvm2-monitor.service
	RequiredBy: lvm2-pvscan at 254:1.service
	WantedBy: sysinit.target
	Before: lvm2-lvmetad.service
	Before: lvm2-monitor.service
	Before: lvm2-pvscan at 254:1.service
	After: -.mount
	After: -.slice
	Triggers: lvm2-lvmetad.service
	References: lvm2-lvmetad.service
	References: -.mount
	References: -.slice
	ReferencedBy: sysinit.target
	ReferencedBy: lvm2-lvmetad.service
	ReferencedBy: lvm2-monitor.service
	ReferencedBy: lvm2-pvscan at 254:1.service
	RequiresMountsFor: /run/lvm/lvmetad.socket
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Socket State: listening
	Result: success
	BindIPv6Only: default
	Backlog: 128
	SocketMode: 0600
	DirectoryMode: 0755
	KeepAlive: no
	NoDelay: no
	FreeBind: no
	Transparent: no
	Broadcast: no
	PassCredentials: no
	PassSecurity: no
	TCPCongestion: n/a
	RemoveOnStop: yes
	SELinuxContextFromNet: no
	ListenStream: /run/lvm/lvmetad.socket
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit org.freedesktop.timedate1.busname:
	Description: Time & Date Service Bus Name
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: org.freedesktop.timedate1.busname
	Documentation: man:systemd-timedated.service(8)
	Documentation: man:localtime(5)
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/timedated
	Fragment Path: /lib/systemd/system/org.freedesktop.timedate1.busname
	Requires: sysinit.target
	WantedBy: busnames.target
	Conflicts: shutdown.target
	Before: busnames.target
	Before: shutdown.target
	Before: systemd-timedated.service
	After: sysinit.target
	Triggers: systemd-timedated.service
	References: sysinit.target
	References: busnames.target
	References: shutdown.target
	References: systemd-timedated.service
	ReferencedBy: busnames.target
	ReferencedBy: systemd-timedated.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Bus Name State: dead
	Result: success
	Name: org.freedesktop.timedate1
	Activating: yes
	Accept FD: yes
-> Unit swap.target:
	Description: Swap
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: swap.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/swap.target
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Requires: dev-mapper-SSHDCrypt\x2dSWAP.swap
	WantedBy: sysinit.target
	Conflicts: shutdown.target
	Before: sysinit.target
	After: dev-mapper-SSHDCrypt\x2dSWAP.swap
	References: dev-mapper-SSHDCrypt\x2dSWAP.swap
	References: shutdown.target
	ReferencedBy: sysinit.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit dev-mapper-SSHDCrypt\x2dSWAP.swap:
	Description: /dev/mapper/SSHDCrypt-SWAP
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/dev-mapper-SSHDCrypt\x2dSWAP.swap
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: dev-mapper-SSHDCrypt\x2dSWAP.swap
	Documentation: man:fstab(5)
	Documentation: man:systemd-fstab-generator(8)
	Following Set Member: dev-SSHDCrypt-SWAP.swap
	Following Set Member: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.swap
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.swap
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.swap
	Following Set Member: dev-dm\x2d2.swap
	Fragment Path: /run/systemd/generator/dev-mapper-SSHDCrypt\x2dSWAP.swap
	Source Path: /etc/fstab
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Requires: -.mount
	Wants: system.slice
	BindsTo: dev-mapper-SSHDCrypt\x2dSWAP.device
	RequiredBy: swap.target
	WantedBy: dev-mapper-SSHDCrypt\x2dSWAP.device
	Conflicts: umount.target
	Before: umount.target
	Before: swap.target
	After: system.slice
	After: -.mount
	After: systemd-journald.socket
	After: dev-mapper-SSHDCrypt\x2dSWAP.device
	References: umount.target
	References: dev-mapper-SSHDCrypt\x2dSWAP.device
	References: systemd-journald.socket
	References: -.mount
	References: system.slice
	ReferencedBy: swap.target
	RequiresMountsFor: /dev/mapper/SSHDCrypt-SWAP
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Swap State: active
	Result: success
	What: /dev/mapper/SSHDCrypt-SWAP
	From /proc/swaps: yes
	From fragment: yes
	Device Node: /dev/dm-2
	Priority: -1
	Options: 
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit sys-devices-pci0000:00-0000:00:1f.0-PNP0C09:00-VPC2004:00-rfkill-rfkill0.device:
	Description: /sys/devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/rfkill/rfkill0
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:1f.0-PNP0C09:00-VPC2004:00-rfkill-rfkill0.device
	Following Set Member: sys-subsystem-rfkill-devices-rfkill0.device
	Job Timeout: 1min 30s
	Wants: systemd-rfkill at rfkill0.service
	References: systemd-rfkill at rfkill0.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/rfkill/rfkill0
-> Unit dm-event.service:
	Description: Device-mapper event daemon
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dm-event.service
	Documentation: man:dmeventd(8)
	Fragment Path: /lib/systemd/system/dm-event.service
	Requires: dm-event.socket
	Wants: system.slice
	Before: local-fs.target
	After: system.slice
	After: systemd-journald.socket
	After: dm-event.socket
	TriggeredBy: dm-event.socket
	References: system.slice
	References: local-fs.target
	References: systemd-journald.socket
	References: dm-event.socket
	ReferencedBy: dm-event.socket
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: simple
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	PIDFile: /var/run/dmeventd.pid
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	Environment: SD_ACTIVATION=1
	OOMScoreAdjust: -1000
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /sbin/dmeventd -f
-> Unit auditd.service:
	Description: auditd.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: auditd.service
	Before: dicod.service
	Before: systemd-update-utmp.service
	ReferencedBy: dicod.service
	ReferencedBy: systemd-update-utmp.service
-> Unit lxc.service:
	Description: LXC Container Initialization and Autoboot Code
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/lxc.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: lxc.service
	Fragment Path: /lib/systemd/system/lxc.service
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	WantedBy: multi-user.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: multi-user.target
	After: network.target
	After: system.slice
	After: basic.target
	After: systemd-journald.socket
	After: syslog.target
	References: network.target
	References: system.slice
	References: basic.target
	References: shutdown.target
	References: systemd-journald.socket
	References: syslog.target
	ReferencedBy: multi-user.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: syslog
	StandardError: syslog
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStartPre:
		Command Line: /usr/lib/x86_64-linux-gnu/lxc/lxc-devsetup
	-> ExecStart:
		Command Line: /usr/lib/x86_64-linux-gnu/lxc/lxc-autostart-helper start
	-> ExecStop:
		Command Line: /usr/lib/x86_64-linux-gnu/lxc/lxc-autostart-helper stop
-> Unit systemd-machined.service:
	Description: Virtual Machine and Container Registration Service
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: Fri 2015-07-31 13:25:30 IST
	Active Enter Timestamp: Fri 2015-07-31 13:25:30 IST
	Active Exit Timestamp: Fri 2015-07-31 13:26:01 IST
	Inactive Enter Timestamp: Fri 2015-07-31 13:26:01 IST
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-machined.service
	Documentation: man:systemd-machined.service(8)
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/machined
	Fragment Path: /lib/systemd/system/systemd-machined.service
	Condition Timestamp: Fri 2015-07-31 13:25:30 IST
	Condition Result: yes
	Assert Timestamp: Fri 2015-07-31 13:25:30 IST
	Assert Result: yes
	Requires: basic.target
	Wants: machine.slice
	Wants: system.slice
	Conflicts: shutdown.target
	Before: shutdown.target
	After: basic.target
	After: org.freedesktop.machine1.busname
	After: machine.slice
	After: system.slice
	After: systemd-journald.socket
	TriggeredBy: org.freedesktop.machine1.busname
	References: shutdown.target
	References: basic.target
	References: org.freedesktop.machine1.busname
	References: machine.slice
	References: system.slice
	References: systemd-journald.socket
	ReferencedBy: org.freedesktop.machine1.busname
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: dbus
	Restart: no
	NotifyAccess: main
	NotifyState: unknown
	BusName: org.freedesktop.machine1
	Bus Name Good: no
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	CapabilityBoundingSet: cap_dac_override cap_dac_read_search cap_kill cap_setgid cap_sys_chroot cap_sys_ptrace cap_sys_admin
	-> ExecStart:
		Command Line: /lib/systemd/systemd-machined
	Status Text: Processing requests...
-> Unit session-1.scope:
	Description: Session 1 of user rrs
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:58 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:58 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: yes
	Slice: user-1000.slice
	CGroup: /user.slice/user-1000.slice/session-1.scope
	CGroup realized: yes
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: session-1.scope
	DropIn Path: /run/systemd/system/session-1.scope.d/50-After-systemd-logind\x2eservice.conf
	DropIn Path: /run/systemd/system/session-1.scope.d/50-After-systemd-user-sessions\x2eservice.conf
	DropIn Path: /run/systemd/system/session-1.scope.d/50-Description.conf
	DropIn Path: /run/systemd/system/session-1.scope.d/50-SendSIGHUP.conf
	DropIn Path: /run/systemd/system/session-1.scope.d/50-Slice.conf
	Condition Timestamp: Wed 2015-07-29 15:29:58 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:58 IST
	Assert Result: yes
	Wants: user-1000.slice
	Conflicts: shutdown.target
	Before: shutdown.target
	After: systemd-logind.service
	After: systemd-user-sessions.service
	After: user-1000.slice
	References: systemd-logind.service
	References: shutdown.target
	References: systemd-user-sessions.service
	References: user-1000.slice
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Scope State: running
	Result: success
	CPUAccounting=no
	BlockIOAccounting=no
	MemoryAccounting=no
	CPUShares=18446744073709551615
	StartupCPUShares=18446744073709551615
	CPUQuotaPerSecSec=infinity
	BlockIOWeight=18446744073709551615
	StartupBlockIOWeight=18446744073709551615
	MemoryLimit=18446744073709551615
	DevicePolicy=auto
	Delegate=no
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  yes
-> Unit colord.service:
	Description: Manage, Install and Generate Color Profiles
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:24 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:24 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/colord.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: colord.service
	Fragment Path: /lib/systemd/system/colord.service
	Condition Timestamp: Wed 2015-07-29 15:29:24 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:24 IST
	Assert Result: yes
	Requires: -.mount
	Requires: basic.target
	Wants: system.slice
	Conflicts: shutdown.target
	Before: shutdown.target
	After: systemd-journald.socket
	After: -.mount
	After: basic.target
	After: system.slice
	After: org.freedesktop.ColorManager.busname
	References: systemd-journald.socket
	References: -.mount
	References: basic.target
	References: system.slice
	References: shutdown.target
	References: org.freedesktop.ColorManager.busname
	RequiresMountsFor: /tmp /var/tmp
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: dbus
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	Main PID: 6244
	Main PID Known: yes
	Main PID Alien: no
	BusName: org.freedesktop.ColorManager
	Bus Name Good: yes
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: yes
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	User: colord
	-> ExecStart:
		Command Line: /usr/lib/colord/colord
-> Unit dev-mapper-sdb_crypt.device:
	Description: /dev/mapper/sdb_crypt
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-mapper-sdb_crypt.device
	Following: sys-devices-virtual-block-dm\x2d0.device
	Following Set Member: dev-disk-by\x2duuid-339197eb\x2d781c\x2d4a32\x2d9265\x2d060536dfa9e0.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dsdb_crypt.device
	Following Set Member: dev-dm\x2d0.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dCRYPT\x2dLUKS1\x2d8f7094e7d2eb453fb2b71a162de14111\x2dsdb_crypt.device
	Following Set Member: sys-devices-virtual-block-dm\x2d0.device
	DropIn Path: /run/systemd/generator/dev-mapper-sdb_crypt.device.d/90-device-timeout.conf
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Requires: systemd-cryptsetup at sdb_crypt.service
	BoundBy: systemd-cryptsetup at sdb_crypt.service
	References: systemd-cryptsetup at sdb_crypt.service
	ReferencedBy: systemd-cryptsetup at sdb_crypt.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-0
-> Unit kbd.service:
	Description: LSB: Prepare console
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/kbd.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: kbd.service
	Documentation: man:systemd-sysv-generator(8)
	Fragment Path: /run/systemd/generator.late/kbd.service
	Source Path: /etc/init.d/kbd
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Wants: system.slice
	WantedBy: sysinit.target
	Before: sysinit.target
	Before: lightdm.service
	Before: console-setup.service
	After: remote-fs.target
	After: systemd-journald.socket
	After: system.slice
	References: sysinit.target
	References: remote-fs.target
	References: systemd-journald.socket
	References: system.slice
	ReferencedBy: sysinit.target
	ReferencedBy: lightdm.service
	ReferencedBy: console-setup.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: no
	Type: forking
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /etc/init.d/kbd start
	-> ExecStop:
		Command Line: /etc/init.d/kbd stop
-> Unit dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device
	Following Set Member: dev-sda.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda
-> Unit systemd-binfmt.service:
	Description: Set Up Additional Binary Formats
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-binfmt.service
	Documentation: man:systemd-binfmt.service(8)
	Documentation: man:binfmt.d(5)
	Documentation: https://www.kernel.org/doc/Documentation/binfmt_misc.txt
	Fragment Path: /lib/systemd/system/systemd-binfmt.service
	ConditionDirectoryNotEmpty: |/run/binfmt.d untested
	ConditionDirectoryNotEmpty: |/etc/binfmt.d untested
	ConditionDirectoryNotEmpty: |/usr/local/lib/binfmt.d untested
	ConditionDirectoryNotEmpty: |/usr/lib/binfmt.d untested
	ConditionDirectoryNotEmpty: |/lib/binfmt.d untested
	ConditionPathIsReadWrite: /proc/sys/ untested
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: no
	Wants: system.slice
	WantedBy: sysinit.target
	Conflicts: shutdown.target
	Before: sysinit.target
	Before: shutdown.target
	After: system.slice
	After: proc-sys-fs-binfmt_misc.automount
	After: systemd-journald.socket
	References: shutdown.target
	References: systemd-journald.socket
	References: system.slice
	References: proc-sys-fs-binfmt_misc.automount
	References: sysinit.target
	ReferencedBy: sysinit.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-binfmt
-> Unit dev-disk-by\x2dpartlabel-EFI\x5cx20system\x5cx20partition.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB SYSTEM_DRV
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2dpartlabel-EFI\x5cx20system\x5cx20partition.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart2.device
	Following Set Member: dev-disk-by\x2duuid-2206\x2d0BF2.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
	Following Set Member: dev-sda2.device
	Following Set Member: dev-disk-by\x2dlabel-SYSTEM_DRV.device
	Following Set Member: dev-disk-by\x2dpartuuid-cf1d0c57\x2d42fa\x2d4fd7\x2dbfa0\x2ddb8cf69fcd61.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart2.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda2
-> Unit machine.slice:
	Description: Virtual Machine and Container Slice
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Fri 2015-07-31 12:21:13 IST
	Active Enter Timestamp: Fri 2015-07-31 12:21:13 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: -.slice
	CGroup: /machine.slice
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: machine.slice
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/machine.slice
	Condition Timestamp: Fri 2015-07-31 12:21:13 IST
	Condition Result: yes
	Assert Timestamp: Fri 2015-07-31 12:21:13 IST
	Assert Result: yes
	Wants: -.slice
	WantedBy: systemd-machined.service
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: systemd-machined.service
	Before: slices.target
	After: -.slice
	References: -.slice
	References: shutdown.target
	References: slices.target
	ReferencedBy: systemd-machined.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Slice State: active
	CPUAccounting=no
	BlockIOAccounting=no
	MemoryAccounting=no
	CPUShares=18446744073709551615
	StartupCPUShares=18446744073709551615
	CPUQuotaPerSecSec=infinity
	BlockIOWeight=18446744073709551615
	StartupBlockIOWeight=18446744073709551615
	MemoryLimit=18446744073709551615
	DevicePolicy=auto
	Delegate=no
-> Unit console-screen.service:
	Description: console-screen.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: console-screen.service
	Before: lightdm.service
	Before: console-setup.service
	ReferencedBy: lightdm.service
	ReferencedBy: console-setup.service
-> Unit atd.service:
	Description: Deferred execution scheduler
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/atd.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: atd.service
	Documentation: man:atd(8)
	Fragment Path: /lib/systemd/system/atd.service
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	WantedBy: multi-user.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: multi-user.target
	After: system.slice
	After: systemd-journald.socket
	After: basic.target
	References: system.slice
	References: shutdown.target
	References: systemd-journald.socket
	References: basic.target
	ReferencedBy: multi-user.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: simple
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	Main PID: 1086
	Main PID Known: yes
	Main PID Alien: no
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /usr/sbin/atd -f
-> Unit sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200073.2.auto-trigger0.device:
	Description: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200073.2.auto/trigger0
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200073.2.auto-trigger0.device
	Job Timeout: 1min 30s
	Wants: iio-sensor-proxy.service
	References: iio-sensor-proxy.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200073.2.auto/trigger0
-> Unit org.freedesktop.NetworkManager.busname:
	Description: org.freedesktop.NetworkManager.busname
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: org.freedesktop.NetworkManager.busname
	Before: NetworkManager.service
	ReferencedBy: NetworkManager.service
-> Unit systemd-update-utmp.service:
	Description: Update UTMP about System Boot/Shutdown
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/systemd-update-utmp.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: systemd-update-utmp.service
	Documentation: man:systemd-update-utmp.service(8)
	Documentation: man:utmp(5)
	Fragment Path: /lib/systemd/system/systemd-update-utmp.service
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: -.mount
	Wants: system.slice
	RequisiteOf: systemd-update-utmp-runlevel.service
	WantedBy: sysinit.target
	Conflicts: shutdown.target
	Before: sysinit.target
	Before: shutdown.target
	Before: systemd-update-utmp-runlevel.service
	After: systemd-tmpfiles-setup.service
	After: -.mount
	After: systemd-remount-fs.service
	After: systemd-journald.socket
	After: auditd.service
	After: system.slice
	References: system.slice
	References: systemd-tmpfiles-setup.service
	References: sysinit.target
	References: -.mount
	References: systemd-journald.socket
	References: systemd-remount-fs.service
	References: shutdown.target
	References: auditd.service
	ReferencedBy: sysinit.target
	ReferencedBy: systemd-update-utmp-runlevel.service
	RequiresMountsFor: /var/log/wtmp
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-update-utmp reboot
	-> ExecStop:
		Command Line: /lib/systemd/systemd-update-utmp shutdown
-> Unit kmod-static-nodes.service:
	Description: Create list of required static device nodes for the current kernel
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/kmod-static-nodes.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: kmod-static-nodes.service
	Fragment Path: /lib/systemd/system/kmod-static-nodes.service
	ConditionPathExists: /lib/modules/4.0.9+/modules.devname untested
	ConditionCapability: CAP_SYS_MODULE untested
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Wants: system.slice
	WantedBy: sysinit.target
	Before: sysinit.target
	Before: systemd-tmpfiles-setup-dev.service
	After: systemd-journald.socket
	After: system.slice
	References: sysinit.target
	References: systemd-tmpfiles-setup-dev.service
	References: systemd-journald.socket
	References: system.slice
	ReferencedBy: sysinit.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /bin/kmod static-nodes --format=tmpfiles --output=/run/tmpfiles.d/kmod.conf
-> Unit inetd.service:
	Description: Internet superserver
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/inetd.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: inetd.service
	Documentation: man:inetd(8)
	Fragment Path: /lib/systemd/system/inetd.service
	ConditionPathExists: /etc/inetd.conf untested
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	WantedBy: multi-user.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: multi-user.target
	After: system.slice
	After: systemd-journald.socket
	After: basic.target
	References: system.slice
	References: shutdown.target
	References: systemd-journald.socket
	References: basic.target
	ReferencedBy: multi-user.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: simple
	Restart: on-failure
	NotifyAccess: none
	NotifyState: unknown
	Main PID: 1085
	Main PID Known: yes
	Main PID Alien: no
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /usr/sbin/inetd -i
-> Unit dm-event.socket:
	Description: Device-mapper event daemon FIFOs
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dm-event.socket
	Documentation: man:dmeventd(8)
	Fragment Path: /lib/systemd/system/dm-event.socket
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Requires: -.mount
	Wants: -.slice
	RequiredBy: lvm2-monitor.service
	RequiredBy: dm-event.service
	WantedBy: sockets.target
	Before: lvm2-monitor.service
	Before: dm-event.service
	After: -.mount
	After: -.slice
	Triggers: dm-event.service
	References: -.slice
	References: -.mount
	References: dm-event.service
	ReferencedBy: lvm2-monitor.service
	ReferencedBy: sockets.target
	ReferencedBy: dm-event.service
	RequiresMountsFor: /var/run/dmeventd-server /var/run/dmeventd-client
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Socket State: listening
	Result: success
	BindIPv6Only: default
	Backlog: 128
	SocketMode: 0600
	DirectoryMode: 0755
	KeepAlive: no
	NoDelay: no
	FreeBind: no
	Transparent: no
	Broadcast: no
	PassCredentials: no
	PassSecurity: no
	TCPCongestion: n/a
	RemoveOnStop: yes
	SELinuxContextFromNet: no
	ListenFIFO: /var/run/dmeventd-server
	ListenFIFO: /var/run/dmeventd-client
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit lvm2-monitor.service:
	Description: Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/lvm2-monitor.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: lvm2-monitor.service
	Documentation: man:dmeventd(8)
	Documentation: man:lvcreate(8)
	Documentation: man:lvchange(8)
	Documentation: man:vgchange(8)
	Fragment Path: /lib/systemd/system/lvm2-monitor.service
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: lvm2-lvmetad.socket
	Requires: dm-event.socket
	Wants: system.slice
	WantedBy: sysinit.target
	Conflicts: shutdown.target
	Before: local-fs.target
	After: systemd-journald.socket
	After: system.slice
	After: lvm2-lvmetad.socket
	After: lvm2-activation.service
	After: lvm2-lvmetad.service
	After: dm-event.socket
	References: systemd-journald.socket
	References: system.slice
	References: lvm2-lvmetad.socket
	References: lvm2-activation.service
	References: lvm2-lvmetad.service
	References: dm-event.socket
	References: shutdown.target
	References: local-fs.target
	ReferencedBy: sysinit.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	Environment: LVM_SUPPRESS_LOCKING_FAILURE_MESSAGES=1
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /sbin/lvm vgchange --monitor y --ignoreskippedcluster
	-> ExecStop:
		Command Line: /sbin/lvm vgchange --monitor n --config global{use_lvmetad=0} --ignoreskippedcluster
-> Unit console-setup.service:
	Description: LSB: Set console font and keymap
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/console-setup.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: console-setup.service
	Documentation: man:systemd-sysv-generator(8)
	Fragment Path: /run/systemd/generator.late/console-setup.service
	Source Path: /etc/init.d/console-setup
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Wants: system.slice
	WantedBy: sysinit.target
	Before: sysinit.target
	After: system.slice
	After: kbd.service
	After: remote-fs.target
	After: systemd-journald.socket
	After: console-screen.service
	References: sysinit.target
	References: system.slice
	References: kbd.service
	References: remote-fs.target
	References: systemd-journald.socket
	References: console-screen.service
	ReferencedBy: sysinit.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: no
	Type: forking
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /etc/init.d/console-setup start
	-> ExecReload:
		Command Line: /etc/init.d/console-setup reload
	-> ExecStop:
		Command Line: /etc/init.d/console-setup stop
-> Unit hdparm.service:
	Description: LSB: Tune IDE hard disks
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/hdparm.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: hdparm.service
	Documentation: man:systemd-sysv-generator(8)
	Fragment Path: /run/systemd/generator.late/hdparm.service
	Source Path: /etc/init.d/hdparm
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Wants: system.slice
	WantedBy: sysinit.target
	Before: sysinit.target
	After: system.slice
	After: systemd-udevd.service
	After: mountdevsubfs.service
	After: systemd-journald.socket
	References: sysinit.target
	References: system.slice
	References: mountdevsubfs.service
	References: systemd-udevd.service
	References: systemd-journald.socket
	ReferencedBy: sysinit.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: no
	Type: forking
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /etc/init.d/hdparm start
	-> ExecReload:
		Command Line: /etc/init.d/hdparm reload
	-> ExecStop:
		Command Line: /etc/init.d/hdparm stop
-> Unit sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200076.3.auto-iio:device1.device:
	Description: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200076.3.auto/iio:device1
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200076.3.auto-iio:device1.device
	Following Set Member: dev-iio:device1.device
	Job Timeout: 1min 30s
	Wants: iio-sensor-proxy.service
	References: iio-sensor-proxy.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200076.3.auto/iio:device1
-> Unit dev-disk-by\x2did-dm\x2dname\x2dsda7_crypt.device:
	Description: LVM PV kohKZh-NmaK-NWe0-1v3E-wmUk-K9bT-NOCn0f on /dev/dm-1
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-dm\x2dname\x2dsda7_crypt.device
	Following: sys-devices-virtual-block-dm\x2d1.device
	Following Set Member: sys-devices-virtual-block-dm\x2d1.device
	Following Set Member: dev-block-254:1.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dCRYPT\x2dLUKS1\x2da1d51c69c438428b8346273abcbf5a52\x2dsda7_crypt.device
	Following Set Member: dev-disk-by\x2did-lvm\x2dpv\x2duuid\x2dkohKZh\x2dNmaK\x2dNWe0\x2d1v3E\x2dwmUk\x2dK9bT\x2dNOCn0f.device
	Following Set Member: dev-mapper-sda7_crypt.device
	Following Set Member: dev-dm\x2d1.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-1
-> Unit avahi-daemon.service:
	Description: Avahi mDNS/DNS-SD Stack
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Thu 2015-07-30 12:32:37 IST
	Active Enter Timestamp: Thu 2015-07-30 12:32:37 IST
	Active Exit Timestamp: Thu 2015-07-30 12:32:37 IST
	Inactive Enter Timestamp: Thu 2015-07-30 12:32:37 IST
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/avahi-daemon.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: avahi-daemon.service
	Fragment Path: /lib/systemd/system/avahi-daemon.service
	Condition Timestamp: Thu 2015-07-30 12:32:37 IST
	Condition Result: yes
	Assert Timestamp: Thu 2015-07-30 12:32:37 IST
	Assert Result: yes
	Requires: avahi-daemon.socket
	Requires: basic.target
	Wants: system.slice
	WantedBy: multi-user.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: multi-user.target
	After: basic.target
	After: system.slice
	After: org.freedesktop.Avahi.busname
	After: avahi-daemon.socket
	After: systemd-journald.socket
	TriggeredBy: avahi-daemon.socket
	References: basic.target
	References: shutdown.target
	References: system.slice
	References: org.freedesktop.Avahi.busname
	References: avahi-daemon.socket
	References: systemd-journald.socket
	ReferencedBy: avahi-daemon.socket
	ReferencedBy: multi-user.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: dbus
	Restart: no
	NotifyAccess: main
	NotifyState: unknown
	Main PID: 28681
	Main PID Known: yes
	Main PID Alien: no
	BusName: org.freedesktop.Avahi
	Bus Name Good: yes
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /usr/sbin/avahi-daemon -s
	-> ExecReload:
		Command Line: /usr/sbin/avahi-daemon -r
	Status Text: avahi-daemon 0.6.31 starting up.
-> Unit systemd-timesyncd.service:
	Description: Network Time Synchronization
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/systemd-timesyncd.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: systemd-timesyncd.service
	Documentation: man:systemd-timesyncd.service(8)
	Fragment Path: /lib/systemd/system/systemd-timesyncd.service
	DropIn Path: /lib/systemd/system/systemd-timesyncd.service.d/disable-with-time-daemon.conf
	ConditionFileIsExecutable: !/usr/sbin/chronyd untested
	ConditionFileIsExecutable: !/usr/sbin/openntpd untested
	ConditionFileIsExecutable: !/usr/sbin/ntpd untested
	ConditionVirtualization: !container untested
	ConditionCapability: CAP_SYS_TIME untested
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: -.mount
	Wants: system.slice
	Wants: time-sync.target
	WantedBy: sysinit.target
	Conflicts: shutdown.target
	Before: sysinit.target
	Before: shutdown.target
	Before: time-sync.target
	After: systemd-remount-fs.service
	After: systemd-sysusers.service
	After: systemd-tmpfiles-setup.service
	After: systemd-journald.socket
	After: system.slice
	After: -.mount
	References: systemd-remount-fs.service
	References: systemd-sysusers.service
	References: systemd-tmpfiles-setup.service
	References: systemd-journald.socket
	References: system.slice
	References: sysinit.target
	References: time-sync.target
	References: shutdown.target
	References: -.mount
	ReferencedBy: sysinit.target
	RequiresMountsFor: /var/lib/systemd/clock /tmp /var/tmp
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: notify
	Restart: always
	NotifyAccess: main
	NotifyState: unknown
	Main PID: 872
	Main PID Known: yes
	Main PID Alien: no
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: yes
	PrivateNetwork: no
	PrivateDevices: yes
	ProtectHome: yes
	ProtectSystem: full
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	CapabilityBoundingSet: cap_chown cap_dac_override cap_fowner cap_setgid cap_setuid cap_setpcap cap_sys_time
	-> ExecStart:
		Command Line: /lib/systemd/systemd-timesyncd
	Status Text: Synchronized to time server 120.88.46.10:123 (2.debian.pool.ntp.org).
-> Unit proc-sys-fs-binfmt_misc.automount:
	Description: Arbitrary Executable File Formats File System Automount Point
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: proc-sys-fs-binfmt_misc.automount
	Documentation: https://www.kernel.org/doc/Documentation/binfmt_misc.txt
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
	Fragment Path: /lib/systemd/system/proc-sys-fs-binfmt_misc.automount
	ConditionPathIsReadWrite: /proc/sys/ untested
	ConditionPathExists: /proc/sys/fs/binfmt_misc/ untested
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Requires: -.mount
	WantedBy: sysinit.target
	Before: sysinit.target
	Before: systemd-binfmt.service
	Before: proc-sys-fs-binfmt_misc.mount
	After: -.mount
	Triggers: proc-sys-fs-binfmt_misc.mount
	References: sysinit.target
	References: proc-sys-fs-binfmt_misc.mount
	References: -.mount
	ReferencedBy: sysinit.target
	ReferencedBy: systemd-binfmt.service
	RequiresMountsFor: /proc/sys/fs
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Automount State: running
	Result: success
	Where: /proc/sys/fs/binfmt_misc
	DirectoryMode: 0755
	TimeoutIdleUSec: 0
-> Unit sys-devices-virtual-net-lxcbr0.device:
	Description: /sys/devices/virtual/net/lxcbr0
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-virtual-net-lxcbr0.device
	Following Set Member: sys-subsystem-net-devices-lxcbr0.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/net/lxcbr0
-> Unit systemd-udev-settle.service:
	Description: udev Wait for Complete Device Initialization
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/systemd-udev-settle.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: systemd-udev-settle.service
	Documentation: man:udev(7)
	Documentation: man:systemd-udevd.service(8)
	Fragment Path: /lib/systemd/system/systemd-udev-settle.service
	ConditionPathIsReadWrite: /sys untested
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Wants: systemd-udevd.service
	Wants: system.slice
	WantedBy: lvm2-activation.service
	WantedBy: lvm2-activation-early.service
	Before: sysinit.target
	Before: udev-finish.service
	Before: lvm2-activation-early.service
	After: system.slice
	After: systemd-udev-trigger.service
	After: systemd-journald.socket
	References: system.slice
	References: sysinit.target
	References: systemd-udev-trigger.service
	References: systemd-udevd.service
	References: systemd-journald.socket
	ReferencedBy: udev-finish.service
	ReferencedBy: lvm2-activation.service
	ReferencedBy: lvm2-activation-early.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /bin/udevadm settle
-> Unit systemd-tmpfiles-setup-dev.service:
	Description: Create Static Device Nodes in /dev
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/systemd-tmpfiles-setup-dev.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: systemd-tmpfiles-setup-dev.service
	Documentation: man:tmpfiles.d(5)
	Documentation: man:systemd-tmpfiles(8)
	Fragment Path: /lib/systemd/system/systemd-tmpfiles-setup-dev.service
	ConditionCapability: CAP_SYS_MODULE untested
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Wants: system.slice
	WantedBy: sysinit.target
	Conflicts: shutdown.target
	Before: sysinit.target
	Before: local-fs-pre.target
	Before: systemd-udevd.service
	Before: shutdown.target
	After: kmod-static-nodes.service
	After: systemd-sysusers.service
	After: systemd-journald.socket
	After: system.slice
	References: local-fs-pre.target
	References: shutdown.target
	References: systemd-journald.socket
	References: systemd-sysusers.service
	References: system.slice
	References: systemd-udevd.service
	References: sysinit.target
	ReferencedBy: sysinit.target
	ReferencedBy: kmod-static-nodes.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /bin/systemd-tmpfiles --prefix=/dev --create --boot
-> Unit sys-devices-pci0000:00-0000:00:1c.0-0000:01:00.0-net-wlan0.device:
	Description: RTL8723BE PCIe Wireless Network Adapter
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:1c.0-0000:01:00.0-net-wlan0.device
	Following Set Member: sys-subsystem-net-devices-wlan0.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1c.0/0000:01:00.0/net/wlan0
-> Unit network-online.target:
	Description: Network is Online
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: network-online.target
	Documentation: man:systemd.special(7)
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/NetworkTarget
	Fragment Path: /lib/systemd/system/network-online.target
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	WantedBy: iodined.service
	WantedBy: apport.service
	WantedBy: virtualbox.service
	WantedBy: dovecot.service
	WantedBy: mysql.service
	WantedBy: dirmngr.service
	WantedBy: postfix.service
	WantedBy: minissdpd.service
	Conflicts: shutdown.target
	Before: iodined.service
	Before: apport.service
	Before: virtualbox.service
	Before: rc-local.service
	Before: dovecot.service
	Before: mysql.service
	Before: dirmngr.service
	Before: postfix.service
	Before: minissdpd.service
	After: network.target
	References: network.target
	References: shutdown.target
	ReferencedBy: iodined.service
	ReferencedBy: apport.service
	ReferencedBy: virtualbox.service
	ReferencedBy: rc-local.service
	ReferencedBy: dovecot.service
	ReferencedBy: mysql.service
	ReferencedBy: dirmngr.service
	ReferencedBy: postfix.service
	ReferencedBy: minissdpd.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit systemd-journald.socket:
	Description: Journal Socket
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-journald.socket
	Documentation: man:systemd-journald.service(8)
	Documentation: man:journald.conf(5)
	Fragment Path: /lib/systemd/system/systemd-journald.socket
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Requires: -.mount
	Wants: -.slice
	RequiredBy: systemd-journald.service
	WantedBy: systemd-journald.service
	WantedBy: sockets.target
	Before: systemd-tmpfiles-setup-dev.service
	Before: systemd-hwdb-update.service
	Before: media-SSHD.mount
	Before: systemd-udevd.service
	Before: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.swap
	Before: systemd-fsck at dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.service
	Before: dev-mapper-SSHDCrypt\x2dSWAP.swap
	Before: dicod.service
	Before: var-lib-machines.mount
	Before: systemd-networkd.service
	Before: dev-hugepages.mount
	Before: gdomap.service
	Before: systemd-cryptsetup at sda7_crypt.service
	Before: dev-SSHDCrypt-SWAP.swap
	Before: alsa-state.service
	Before: resolvconf.service
	Before: systemd-journald.service
	Before: NetworkManager.service
	Before: getty at tty7.service
	Before: boot-efi.mount
	Before: packagekit.service
	Before: alsa-restore.service
	Before: systemd-timedated.service
	Before: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.swap
	Before: hdparm.service
	Before: debian-fixup.service
	Before: mcelog.service
	Before: systemd-random-seed.service
	Before: lvm2-activation.service
	Before: polkitd.service
	Before: lightdm.service
	Before: sys-kernel-config.mount
	Before: systemd-logind.service
	Before: systemd-tmpfiles-setup.service
	Before: networking.service
	Before: systemd-localed.service
	Before: proc-sys-fs-binfmt_misc.mount
	Before: wpa_supplicant.service
	Before: user at 1000.service
	Before: systemd-rfkill at rfkill1.service
	Before: tor.service
	Before: thermald.service
	Before: rc-local.service
	Before: systemd-rfkill at rfkill2.service
	Before: virtualbox.service
	Before: dovecot.service
	Before: systemd-udev-trigger.service
	Before: irqbalance.service
	Before: boot.mount
	Before: systemd-fsck at dev-mapper-SSHDCrypt\x2dROOT.service
	Before: getty at tty1.service
	Before: lvm2-pvscan at 254:1.service
	Before: sockets.target
	Before: systemd-modules-load.service
	Before: systemd-journal-flush.service
	Before: ModemManager.service
	Before: systemd-timesyncd.service
	Before: systemd-update-utmp-runlevel.service
	Before: systemd-user-sessions.service
	Before: systemd-ask-password-console.service
	Before: run-user-1000-gvfs.mount
	Before: pppd-dns.service
	Before: systemd-remount-fs.service
	Before: apport.service
	Before: iodined.service
	Before: keyboard-setup.service
	Before: postfix.service
	Before: iio-sensor-proxy.service
	Before: getty-static.service
	Before: systemd-update-utmp.service
	Before: kmod-static-nodes.service
	Before: udisks2.service
	Before: systemd-hostnamed.service
	Before: systemd-sysctl.service
	Before: speech-dispatcher.service
	Before: dnsmasq.service
	Before: inetd.service
	Before: kbd.service
	Before: avahi-daemon.service
	Before: anacron.service
	Before: systemd-ask-password-wall.service
	Before: sys-fs-fuse-connections.mount
	Before: systemd-fsck-root.service
	Before: bluetooth.service
	Before: systemd-rfkill at rfkill10.service
	Before: gdm.service
	Before: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.swap
	Before: run-user-1000.mount
	Before: systemd-resolved.service
	Before: systemd-tmpfiles-clean.service
	Before: systemd-binfmt.service
	Before: systemd-cryptsetup at sdb_crypt.service
	Before: sys-kernel-debug.mount
	Before: systemd-fsckd.service
	Before: systemd-fsck at dev-disk-by\x2duuid-2206\x2d0BF2.service
	Before: rtkit-daemon.service
	Before: alsa-store.service
	Before: systemd-initctl.service
	Before: cron.service
	Before: lvm2-activation-early.service
	Before: systemd-backlight at backlight:intel_backlight.service
	Before: upower.service
	Before: dev-dm\x2d2.swap
	Before: lvm2-monitor.service
	Before: lvm2-lvmetad.service
	Before: systemd-rfkill at rfkill0.service
	Before: atd.service
	Before: dev-mqueue.mount
	Before: accounts-daemon.service
	Before: geoclue.service
	Before: udev-finish.service
	Before: dm-event.service
	Before: mysql.service
	Before: systemd-machine-id-commit.service
	Before: lxc.service
	Before: dirmngr.service
	Before: uuidd.service
	Before: dbus.service
	Before: systemd-machined.service
	Before: colord.service
	Before: console-setup.service
	Before: minissdpd.service
	Before: systemd-udev-settle.service
	After: -.mount
	After: -.slice
	Triggers: systemd-journald.service
	References: -.slice
	References: -.mount
	References: sockets.target
	References: systemd-journald.service
	ReferencedBy: debian-fixup.service
	ReferencedBy: console-setup.service
	ReferencedBy: systemd-timesyncd.service
	ReferencedBy: minissdpd.service
	ReferencedBy: bluetooth.service
	ReferencedBy: atd.service
	ReferencedBy: systemd-localed.service
	ReferencedBy: systemd-networkd.service
	ReferencedBy: wpa_supplicant.service
	ReferencedBy: apport.service
	ReferencedBy: systemd-ask-password-console.service
	ReferencedBy: rtkit-daemon.service
	ReferencedBy: dicod.service
	ReferencedBy: proc-sys-fs-binfmt_misc.mount
	ReferencedBy: systemd-rfkill at rfkill2.service
	ReferencedBy: lvm2-pvscan at 254:1.service
	ReferencedBy: systemd-hostnamed.service
	ReferencedBy: iio-sensor-proxy.service
	ReferencedBy: getty-static.service
	ReferencedBy: NetworkManager.service
	ReferencedBy: alsa-restore.service
	ReferencedBy: lvm2-activation.service
	ReferencedBy: anacron.service
	ReferencedBy: colord.service
	ReferencedBy: lxc.service
	ReferencedBy: run-user-1000.mount
	ReferencedBy: sockets.target
	ReferencedBy: systemd-rfkill at rfkill0.service
	ReferencedBy: iodined.service
	ReferencedBy: mcelog.service
	ReferencedBy: var-lib-machines.mount
	ReferencedBy: sys-kernel-config.mount
	ReferencedBy: systemd-tmpfiles-setup.service
	ReferencedBy: alsa-state.service
	ReferencedBy: systemd-machined.service
	ReferencedBy: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.swap
	ReferencedBy: systemd-update-utmp.service
	ReferencedBy: dm-event.service
	ReferencedBy: systemd-timedated.service
	ReferencedBy: gdomap.service
	ReferencedBy: packagekit.service
	ReferencedBy: lvm2-monitor.service
	ReferencedBy: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.swap
	ReferencedBy: ModemManager.service
	ReferencedBy: systemd-tmpfiles-setup-dev.service
	ReferencedBy: dovecot.service
	ReferencedBy: systemd-rfkill at rfkill1.service
	ReferencedBy: resolvconf.service
	ReferencedBy: dev-mqueue.mount
	ReferencedBy: postfix.service
	ReferencedBy: boot-efi.mount
	ReferencedBy: systemd-fsck-root.service
	ReferencedBy: dev-SSHDCrypt-SWAP.swap
	ReferencedBy: rc-local.service
	ReferencedBy: sys-fs-fuse-connections.mount
	ReferencedBy: systemd-backlight at backlight:intel_backlight.service
	ReferencedBy: systemd-random-seed.service
	ReferencedBy: systemd-fsckd.service
	ReferencedBy: systemd-hwdb-update.service
	ReferencedBy: systemd-sysctl.service
	ReferencedBy: mysql.service
	ReferencedBy: uuidd.service
	ReferencedBy: systemd-initctl.service
	ReferencedBy: boot.mount
	ReferencedBy: alsa-store.service
	ReferencedBy: avahi-daemon.service
	ReferencedBy: tor.service
	ReferencedBy: systemd-journald.service
	ReferencedBy: accounts-daemon.service
	ReferencedBy: systemd-binfmt.service
	ReferencedBy: dev-mapper-SSHDCrypt\x2dSWAP.swap
	ReferencedBy: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.swap
	ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.service
	ReferencedBy: systemd-modules-load.service
	ReferencedBy: systemd-journal-flush.service
	ReferencedBy: getty at tty7.service
	ReferencedBy: keyboard-setup.service
	ReferencedBy: upower.service
	ReferencedBy: speech-dispatcher.service
	ReferencedBy: media-SSHD.mount
	ReferencedBy: kmod-static-nodes.service
	ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-2206\x2d0BF2.service
	ReferencedBy: udev-finish.service
	ReferencedBy: irqbalance.service
	ReferencedBy: polkitd.service
	ReferencedBy: run-user-1000-gvfs.mount
	ReferencedBy: cron.service
	ReferencedBy: dev-dm\x2d2.swap
	ReferencedBy: systemd-udevd.service
	ReferencedBy: systemd-fsck at dev-mapper-SSHDCrypt\x2dROOT.service
	ReferencedBy: thermald.service
	ReferencedBy: lvm2-lvmetad.service
	ReferencedBy: systemd-logind.service
	ReferencedBy: lightdm.service
	ReferencedBy: virtualbox.service
	ReferencedBy: hdparm.service
	ReferencedBy: geoclue.service
	ReferencedBy: user at 1000.service
	ReferencedBy: systemd-rfkill at rfkill10.service
	ReferencedBy: systemd-ask-password-wall.service
	ReferencedBy: systemd-remount-fs.service
	ReferencedBy: networking.service
	ReferencedBy: systemd-tmpfiles-clean.service
	ReferencedBy: dbus.service
	ReferencedBy: dev-hugepages.mount
	ReferencedBy: dnsmasq.service
	ReferencedBy: lvm2-activation-early.service
	ReferencedBy: systemd-user-sessions.service
	ReferencedBy: systemd-cryptsetup at sdb_crypt.service
	ReferencedBy: systemd-update-utmp-runlevel.service
	ReferencedBy: systemd-udev-settle.service
	ReferencedBy: systemd-cryptsetup at sda7_crypt.service
	ReferencedBy: getty at tty1.service
	ReferencedBy: sys-kernel-debug.mount
	ReferencedBy: dirmngr.service
	ReferencedBy: systemd-resolved.service
	ReferencedBy: udisks2.service
	ReferencedBy: gdm.service
	ReferencedBy: inetd.service
	ReferencedBy: systemd-udev-trigger.service
	ReferencedBy: pppd-dns.service
	ReferencedBy: kbd.service
	ReferencedBy: systemd-machine-id-commit.service
	RequiresMountsFor: /run/systemd/journal/stdout /run/systemd/journal/socket
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Socket State: running
	Result: success
	BindIPv6Only: default
	Backlog: 128
	SocketMode: 0666
	DirectoryMode: 0755
	KeepAlive: no
	NoDelay: no
	FreeBind: no
	Transparent: no
	Broadcast: no
	PassCredentials: yes
	PassSecurity: yes
	TCPCongestion: n/a
	RemoveOnStop: no
	SELinuxContextFromNet: no
	ReceiveBuffer: 8388608
	ListenStream: /run/systemd/journal/stdout
	ListenDatagram: /run/systemd/journal/socket
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit lvm2-activation-early.service:
	Description: Activation of LVM2 logical volumes
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: lvm2-activation-early.service
	Documentation: man:lvm(8)
	Documentation: man:vgchange(8)
	Fragment Path: /lib/systemd/system/lvm2-activation-early.service
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Wants: systemd-udev-settle.service
	Wants: system.slice
	WantedBy: local-fs.target
	Before: lvm2-activation.service
	Before: cryptsetup.target
	Before: local-fs.target
	Before: shutdown.target
	After: system.slice
	After: systemd-udev-settle.service
	After: systemd-journald.socket
	References: systemd-journald.socket
	References: system.slice
	References: local-fs.target
	References: shutdown.target
	References: cryptsetup.target
	References: systemd-udev-settle.service
	ReferencedBy: local-fs.target
	ReferencedBy: lvm2-activation.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /sbin/lvm vgchange -aay --sysinit
-> Unit sys-devices-pci0000:00-0000:00:1b.0-sound-card1.device:
	Description: 8 Series HD Audio Controller
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:1b.0-sound-card1.device
	Job Timeout: 1min 30s
	Wants: sound.target
	References: sound.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1b.0/sound/card1
-> Unit systemd-journald.service:
	Description: Journal Service
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/systemd-journald.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: systemd-journald.service
	Documentation: man:systemd-journald.service(8)
	Documentation: man:journald.conf(5)
	Fragment Path: /lib/systemd/system/systemd-journald.service
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Requires: systemd-journald.socket
	Wants: system.slice
	Wants: systemd-journald-dev-log.socket
	Wants: systemd-journald.socket
	Wants: systemd-journald-audit.socket
	RequiredBy: systemd-journal-flush.service
	WantedBy: sysinit.target
	Before: sysinit.target
	Before: systemd-journal-flush.service
	After: syslog.socket
	After: systemd-journald.socket
	After: system.slice
	After: systemd-journald-audit.socket
	After: systemd-journald-dev-log.socket
	TriggeredBy: systemd-journald-dev-log.socket
	TriggeredBy: systemd-journald.socket
	TriggeredBy: systemd-journald-audit.socket
	References: syslog.socket
	References: systemd-journald.socket
	References: system.slice
	References: systemd-journald-audit.socket
	References: systemd-journald-dev-log.socket
	References: sysinit.target
	ReferencedBy: sysinit.target
	ReferencedBy: systemd-journald.socket
	ReferencedBy: systemd-journal-flush.service
	ReferencedBy: systemd-journald-dev-log.socket
	ReferencedBy: systemd-journald-audit.socket
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: notify
	Restart: always
	NotifyAccess: all
	NotifyState: unknown
	Main PID: 333
	Main PID Known: yes
	Main PID Alien: no
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 16384
	StandardInput: null
	StandardOutput: null
	StandardError: inherit
	CapabilityBoundingSet: cap_chown cap_dac_override cap_dac_read_search cap_fowner cap_setgid cap_setuid cap_sys_ptrace cap_sys_admin cap_audit_control cap_mac_override cap_syslog cap_audit_read
	-> ExecStart:
		Command Line: /lib/systemd/systemd-journald
	Status Text: Processing requests...
	File Descriptor Store Max: 1024
	File Descriptor Store Current: 0
-> Unit nss-user-lookup.target:
	Description: User and Group Name Lookups
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: nss-user-lookup.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/nss-user-lookup.target
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	WantedBy: accounts-daemon.service
	Conflicts: shutdown.target
	Before: systemd-logind.service
	Before: systemd-user-sessions.service
	Before: accounts-daemon.service
	References: shutdown.target
	ReferencedBy: systemd-logind.service
	ReferencedBy: systemd-user-sessions.service
	ReferencedBy: accounts-daemon.service
	StopWhenUnneeded: no
	RefuseManualStart: yes
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit systemd-journald-audit.socket:
	Description: Journal Audit Socket
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-journald-audit.socket
	Documentation: man:systemd-journald.service(8)
	Documentation: man:journald.conf(5)
	Fragment Path: /lib/systemd/system/systemd-journald-audit.socket
	ConditionCapability: CAP_AUDIT_READ untested
	ConditionSecurity: audit untested
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Wants: -.slice
	WantedBy: systemd-journald.service
	WantedBy: sockets.target
	Before: systemd-journald.service
	Before: sockets.target
	After: -.slice
	Triggers: systemd-journald.service
	References: -.slice
	References: sockets.target
	References: systemd-journald.service
	ReferencedBy: systemd-journald.service
	ReferencedBy: sockets.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Socket State: running
	Result: success
	BindIPv6Only: default
	Backlog: 128
	SocketMode: 0666
	DirectoryMode: 0755
	KeepAlive: no
	NoDelay: no
	FreeBind: no
	Transparent: no
	Broadcast: no
	PassCredentials: yes
	PassSecurity: no
	TCPCongestion: n/a
	RemoveOnStop: no
	SELinuxContextFromNet: no
	ReceiveBuffer: 134217728
	ListenNetlink: audit 1
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit sys-subsystem-rfkill-devices-rfkill1.device:
	Description: /sys/subsystem/rfkill/devices/rfkill1
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-subsystem-rfkill-devices-rfkill1.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.0-PNP0C09:00-VPC2004:00-rfkill-rfkill1.device
	Job Timeout: 1min 30s
	BoundBy: systemd-rfkill at rfkill1.service
	ReferencedBy: systemd-rfkill at rfkill1.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/rfkill/rfkill1
-> Unit systemd-random-seed.service:
	Description: Load/Save Random Seed
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/systemd-random-seed.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: systemd-random-seed.service
	Name: urandom.service
	Documentation: man:systemd-random-seed.service(8)
	Documentation: man:random(4)
	Fragment Path: /lib/systemd/system/systemd-random-seed.service
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Requires: -.mount
	Wants: system.slice
	WantedBy: sysinit.target
	Conflicts: shutdown.target
	Before: sysinit.target
	Before: shutdown.target
	Before: networking.service
	After: systemd-remount-fs.service
	After: -.mount
	After: systemd-journald.socket
	After: system.slice
	References: -.mount
	References: sysinit.target
	References: shutdown.target
	References: systemd-remount-fs.service
	References: system.slice
	References: systemd-journald.socket
	ReferencedBy: sysinit.target
	ReferencedBy: networking.service
	RequiresMountsFor: /var/lib/systemd/random-seed
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-random-seed load
	-> ExecStop:
		Command Line: /lib/systemd/systemd-random-seed save
-> Unit systemd-initctl.service:
	Description: /dev/initctl Compatibility Daemon
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-initctl.service
	Documentation: man:systemd-initctl.service(8)
	Fragment Path: /lib/systemd/system/systemd-initctl.service
	Wants: system.slice
	After: systemd-initctl.socket
	After: systemd-journald.socket
	After: system.slice
	TriggeredBy: systemd-initctl.socket
	References: systemd-journald.socket
	References: system.slice
	ReferencedBy: systemd-initctl.socket
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: simple
	Restart: no
	NotifyAccess: all
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-initctl
-> Unit dev-disk-by\x2dpartuuid-242faae1\x2daa64\x2d4791\x2da2aa\x2d314cf9e49b51.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB Microsoft\x20reserved\x20partition
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2dpartuuid-242faae1\x2daa64\x2d4791\x2da2aa\x2d314cf9e49b51.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda4.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart4.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda4.device
	Following Set Member: dev-sda4.device
	Following Set Member: dev-disk-by\x2dpartlabel-Microsoft\x5cx20reserved\x5cx20partition.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart4.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda4
-> Unit dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.device:
	Description: /dev/disk/by-id/dm-name-SSHDCrypt-SWAP
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.device
	Following: sys-devices-virtual-block-dm\x2d2.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.device
	Following Set Member: sys-devices-virtual-block-dm\x2d2.device
	Following Set Member: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.device
	Following Set Member: dev-dm\x2d2.device
	Following Set Member: dev-SSHDCrypt-SWAP.device
	Following Set Member: dev-mapper-SSHDCrypt\x2dSWAP.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-2
-> Unit systemd-hostnamed.service:
	Description: Hostname Service
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: Fri 2015-07-31 22:04:35 IST
	Active Enter Timestamp: Fri 2015-07-31 22:04:35 IST
	Active Exit Timestamp: Fri 2015-07-31 22:05:05 IST
	Inactive Enter Timestamp: Fri 2015-07-31 22:05:05 IST
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dbus-org.freedesktop.hostname1.service
	Name: systemd-hostnamed.service
	Documentation: man:systemd-hostnamed.service(8)
	Documentation: man:hostname(5)
	Documentation: man:machine-info(5)
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/hostnamed
	Fragment Path: /lib/systemd/system/systemd-hostnamed.service
	Condition Timestamp: Fri 2015-07-31 22:04:35 IST
	Condition Result: yes
	Assert Timestamp: Fri 2015-07-31 22:04:35 IST
	Assert Result: yes
	Requires: -.mount
	Requires: basic.target
	Wants: system.slice
	Conflicts: shutdown.target
	Before: shutdown.target
	After: basic.target
	After: org.freedesktop.hostname1.busname
	After: -.mount
	After: systemd-journald.socket
	After: system.slice
	TriggeredBy: org.freedesktop.hostname1.busname
	References: basic.target
	References: org.freedesktop.hostname1.busname
	References: shutdown.target
	References: -.mount
	References: systemd-journald.socket
	References: system.slice
	ReferencedBy: org.freedesktop.hostname1.busname
	RequiresMountsFor: /tmp /var/tmp
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: dbus
	Restart: no
	NotifyAccess: main
	NotifyState: stopping
	BusName: org.freedesktop.hostname1
	Bus Name Good: no
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: yes
	PrivateNetwork: yes
	PrivateDevices: yes
	ProtectHome: yes
	ProtectSystem: yes
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	CapabilityBoundingSet: cap_sys_admin
	-> ExecStart:
		Command Line: /lib/systemd/systemd-hostnamed
			PID: 15377
			Start Timestamp: Fri 2015-07-31 22:04:35 IST
			Exit Timestamp: Fri 2015-07-31 22:05:05 IST
			Exit Code: exited
			Exit Status: 0
-> Unit sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB WINRE_DRV
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
	Following Set Member: dev-disk-by\x2duuid-268003D18003A681.device
	Following Set Member: dev-disk-by\x2dlabel-WINRE_DRV.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart1.device
	Following Set Member: dev-disk-by\x2dpartuuid-26145e88\x2dc087\x2d4701\x2da765\x2dd9bc0b1cc602.device
	Following Set Member: dev-sda1.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart1.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1
-> Unit multi-user.target:
	Description: Multi-User System
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:23 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:23 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: multi-user.target
	Name: runlevel4.target
	Name: runlevel3.target
	Name: runlevel2.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/multi-user.target
	Condition Timestamp: Wed 2015-07-29 15:29:23 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:23 IST
	Assert Result: yes
	Requires: basic.target
	Wants: apport.service
	Wants: avahi-daemon.service
	Wants: lightdm.service
	Wants: getty.target
	Wants: postfix.service
	Wants: systemd-user-sessions.service
	Wants: dbus.service
	Wants: mcelog.service
	Wants: inetd.service
	Wants: systemd-logind.service
	Wants: thermald.service
	Wants: NetworkManager.service
	Wants: cron.service
	Wants: remote-fs.target
	Wants: dirmngr.service
	Wants: rsyslog.service
	Wants: pppd-dns.service
	Wants: rc-local.service
	Wants: speech-dispatcher.service
	Wants: laptop-mode.timer
	Wants: laptop-mode.service
	Wants: lxc.service
	Wants: dnsmasq.service
	Wants: iodined.service
	Wants: anacron.service
	Wants: irqbalance.service
	Wants: atd.service
	Wants: dicod.service
	Wants: virtualbox.service
	Wants: gdomap.service
	Wants: systemd-update-utmp-runlevel.service
	Wants: ModemManager.service
	Wants: minissdpd.service
	Wants: systemd-ask-password-wall.path
	Wants: tor.service
	RequiredBy: graphical.target
	Conflicts: shutdown.target
	Conflicts: rescue.service
	Conflicts: rescue.target
	Before: graphical.target
	Before: systemd-update-utmp-runlevel.service
	After: rc-local.service
	After: rescue.service
	After: rescue.target
	After: systemd-logind.service
	After: lightdm.service
	After: NetworkManager.service
	After: virtualbox.service
	After: inetd.service
	After: minissdpd.service
	After: basic.target
	After: ModemManager.service
	After: getty.target
	After: atd.service
	After: lxc.service
	After: tor.service
	After: dbus.service
	After: gdomap.service
	After: mcelog.service
	After: apport.service
	After: systemd-networkd.service
	After: iodined.service
	After: avahi-daemon.service
	After: dicod.service
	After: dnsmasq.service
	After: thermald.service
	After: laptop-mode.timer
	After: postfix.service
	After: anacron.service
	After: pppd-dns.service
	After: dirmngr.service
	After: cron.service
	After: laptop-mode.service
	After: irqbalance.service
	After: systemd-user-sessions.service
	After: speech-dispatcher.service
	References: pppd-dns.service
	References: anacron.service
	References: laptop-mode.service
	References: dicod.service
	References: rc-local.service
	References: ModemManager.service
	References: mcelog.service
	References: tor.service
	References: gdomap.service
	References: rescue.target
	References: laptop-mode.timer
	References: rescue.service
	References: atd.service
	References: dnsmasq.service
	References: irqbalance.service
	References: rsyslog.service
	References: basic.target
	References: systemd-logind.service
	References: apport.service
	References: minissdpd.service
	References: iodined.service
	References: avahi-daemon.service
	References: thermald.service
	References: cron.service
	References: virtualbox.service
	References: postfix.service
	References: dirmngr.service
	References: systemd-user-sessions.service
	References: speech-dispatcher.service
	References: lightdm.service
	References: shutdown.target
	References: inetd.service
	References: systemd-update-utmp-runlevel.service
	References: systemd-ask-password-wall.path
	References: remote-fs.target
	References: lxc.service
	References: NetworkManager.service
	References: getty.target
	References: dbus.service
	ReferencedBy: systemd-networkd.service
	ReferencedBy: postfix.service
	ReferencedBy: mcelog.service
	ReferencedBy: lightdm.service
	ReferencedBy: apport.service
	ReferencedBy: iodined.service
	ReferencedBy: virtualbox.service
	ReferencedBy: irqbalance.service
	ReferencedBy: dirmngr.service
	ReferencedBy: minissdpd.service
	ReferencedBy: systemd-update-utmp-runlevel.service
	ReferencedBy: graphical.target
	ReferencedBy: speech-dispatcher.service
	ReferencedBy: gdomap.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart5.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB Windows8_OS
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart5.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda5.device
	Following Set Member: dev-disk-by\x2dpartuuid-5616cb41\x2d5424\x2d4969\x2da0e3\x2d950d408f49c9.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda5.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart5.device
	Following Set Member: dev-disk-by\x2dlabel-Windows8_OS.device
	Following Set Member: dev-disk-by\x2duuid-3AEC0E87EC0E3E1F.device
	Following Set Member: dev-sda5.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda5
-> Unit getty at tty7.service:
	Description: Getty on tty7
	Instance: tty7
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system-getty.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: getty at tty7.service
	Documentation: man:agetty(8)
	Documentation: man:systemd-getty-generator(8)
	Documentation: http://0pointer.de/blog/projects/serial-console.html
	Fragment Path: /lib/systemd/system/getty at .service
	ConditionPathExists: /dev/tty0 untested
	Requires: basic.target
	Wants: system-getty.slice
	Conflicts: shutdown.target
	ConflictedBy: gdm.service
	Before: getty.target
	Before: shutdown.target
	Before: gdm.service
	After: systemd-journald.socket
	After: systemd-user-sessions.service
	After: rc-local.service
	After: basic.target
	After: system-getty.slice
	After: plymouth-quit-wait.service
	References: getty.target
	References: systemd-journald.socket
	References: shutdown.target
	References: systemd-user-sessions.service
	References: rc-local.service
	References: basic.target
	References: system-getty.slice
	References: plymouth-quit-wait.service
	ReferencedBy: gdm.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: idle
	Restart: always
	NotifyAccess: none
	NotifyState: unknown
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  yes
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	Environment: LANG=
	Environment: LANGUAGE=
	Environment: LC_CTYPE=
	Environment: LC_NUMERIC=
	Environment: LC_TIME=
	Environment: LC_COLLATE=
	Environment: LC_MONETARY=
	Environment: LC_MESSAGES=
	Environment: LC_PAPER=
	Environment: LC_NAME=
	Environment: LC_ADDRESS=
	Environment: LC_TELEPHONE=
	Environment: LC_MEASUREMENT=
	Environment: LC_IDENTIFICATION=
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	TTYPath: /dev/tty7
	TTYReset: yes
	TTYVHangup: yes
	TTYVTDisallocate: yes
	SyslogFacility: daemon
	SyslogLevel: info
	UtmpIdentifier: tty7
	-> ExecStart:
		Command Line: /sbin/agetty --noclear %I $TERM
-> Unit dev-iio:device4.device:
	Description: /dev/iio:device4
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-iio:device4.device
	Following: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d20008a.6.auto-iio:device4.device
	Following Set Member: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d20008a.6.auto-iio:device4.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-20008a.6.auto/iio:device4
-> Unit media-SSHD.mount:
	Description: /media/SSHD
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/media-SSHD.mount
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: media-SSHD.mount
	Documentation: man:fstab(5)
	Documentation: man:systemd-fstab-generator(8)
	Fragment Path: /run/systemd/generator/media-SSHD.mount
	Source Path: /etc/fstab
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Requires: -.mount
	RequiresOverridable: systemd-fsck at dev-mapper-SSHDCrypt\x2dROOT.service
	Wants: system.slice
	BindsTo: dev-mapper-SSHDCrypt\x2dROOT.device
	RequiredBy: local-fs.target
	WantedBy: dev-mapper-SSHDCrypt\x2dROOT.device
	Conflicts: umount.target
	Before: umount.target
	Before: local-fs.target
	After: systemd-journald.socket
	After: system.slice
	After: -.mount
	After: dev-mapper-SSHDCrypt\x2dROOT.device
	After: local-fs-pre.target
	After: systemd-fsck at dev-mapper-SSHDCrypt\x2dROOT.service
	References: systemd-journald.socket
	References: system.slice
	References: umount.target
	References: local-fs.target
	References: -.mount
	References: dev-mapper-SSHDCrypt\x2dROOT.device
	References: local-fs-pre.target
	References: systemd-fsck at dev-mapper-SSHDCrypt\x2dROOT.service
	ReferencedBy: local-fs.target
	RequiresMountsFor: /media /dev/mapper/SSHDCrypt-ROOT
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Mount State: mounted
	Result: success
	Where: /media/SSHD
	What: /dev/mapper/SSHDCrypt-ROOT
	File System Type: ext4
	Options: rw,relatime,errors=remount-ro,commit=600,data=ordered
	From /proc/self/mountinfo: yes
	From fragment: yes
	DirectoryMode: 0755
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit sys-devices-virtual-block-dm\x2d2.device:
	Description: /sys/devices/virtual/block/dm-2
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-virtual-block-dm\x2d2.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.device
	Following Set Member: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.device
	Following Set Member: dev-dm\x2d2.device
	Following Set Member: dev-SSHDCrypt-SWAP.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.device
	Following Set Member: dev-mapper-SSHDCrypt\x2dSWAP.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-2
-> Unit systemd-update-utmp-runlevel.service:
	Description: Update UTMP about System Runlevel Changes
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:23 IST
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: Wed 2015-07-29 15:29:23 IST
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-update-utmp-runlevel.service
	Documentation: man:systemd-update-utmp.service(8)
	Documentation: man:utmp(5)
	Fragment Path: /lib/systemd/system/systemd-update-utmp-runlevel.service
	Condition Timestamp: Wed 2015-07-29 15:29:23 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:23 IST
	Assert Result: yes
	Requires: -.mount
	Requisite: systemd-update-utmp.service
	Wants: system.slice
	WantedBy: multi-user.target
	WantedBy: graphical.target
	WantedBy: rescue.target
	Conflicts: shutdown.target
	Before: shutdown.target
	After: rescue.target
	After: systemd-update-utmp.service
	After: graphical.target
	After: system.slice
	After: multi-user.target
	After: systemd-journald.socket
	After: -.mount
	References: rescue.target
	References: systemd-update-utmp.service
	References: graphical.target
	References: shutdown.target
	References: system.slice
	References: multi-user.target
	References: systemd-journald.socket
	References: -.mount
	ReferencedBy: multi-user.target
	ReferencedBy: graphical.target
	ReferencedBy: rescue.target
	RequiresMountsFor: /var/log/wtmp
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-update-utmp runlevel
-> Unit system-lvm2\x2dpvscan.slice:
	Description: system-lvm2\x2dpvscan.slice
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/system-lvm2\x2dpvscan.slice
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: system-lvm2\x2dpvscan.slice
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Wants: system.slice
	WantedBy: lvm2-pvscan at 254:1.service
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: lvm2-pvscan at 254:1.service
	After: system.slice
	References: shutdown.target
	References: system.slice
	ReferencedBy: lvm2-pvscan at 254:1.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Slice State: active
	CPUAccounting=no
	BlockIOAccounting=no
	MemoryAccounting=no
	CPUShares=18446744073709551615
	StartupCPUShares=18446744073709551615
	CPUQuotaPerSecSec=infinity
	BlockIOWeight=18446744073709551615
	StartupBlockIOWeight=18446744073709551615
	MemoryLimit=18446744073709551615
	DevicePolicy=auto
	Delegate=no
-> Unit plymouth-quit.service:
	Description: plymouth-quit.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: plymouth-quit.service
	ConflictedBy: gdm.service
	Before: gdm.service
	ReferencedBy: gdm.service
-> Unit dirmngr.service:
	Description: LSB: start DirMngr daemon
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/dirmngr.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: dirmngr.service
	Documentation: man:systemd-sysv-generator(8)
	Fragment Path: /run/systemd/generator.late/dirmngr.service
	Source Path: /etc/init.d/dirmngr
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	Wants: network-online.target
	WantedBy: multi-user.target
	WantedBy: graphical.target
	Conflicts: shutdown.target
	Before: multi-user.target
	Before: shutdown.target
	Before: graphical.target
	After: remote-fs.target
	After: local-fs.target
	After: systemd-journald.socket
	After: system.slice
	After: basic.target
	After: network-online.target
	References: remote-fs.target
	References: multi-user.target
	References: local-fs.target
	References: systemd-journald.socket
	References: shutdown.target
	References: system.slice
	References: graphical.target
	References: basic.target
	References: network-online.target
	ReferencedBy: multi-user.target
	ReferencedBy: graphical.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: no
	Type: forking
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /etc/init.d/dirmngr start
	-> ExecReload:
		Command Line: /etc/init.d/dirmngr reload
	-> ExecStop:
		Command Line: /etc/init.d/dirmngr stop
-> Unit sockets.target:
	Description: Sockets
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sockets.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/sockets.target
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Wants: systemd-udevd-kernel.socket
	Wants: systemd-journald.socket
	Wants: uuidd.socket
	Wants: systemd-udevd-control.socket
	Wants: avahi-daemon.socket
	Wants: dbus.socket
	Wants: dm-event.socket
	Wants: systemd-journald-audit.socket
	Wants: systemd-journald-dev-log.socket
	Wants: systemd-initctl.socket
	WantedBy: basic.target
	Conflicts: shutdown.target
	Before: basic.target
	After: systemd-udevd-kernel.socket
	After: systemd-journald.socket
	After: syslog.socket
	After: systemd-udevd-control.socket
	After: uuidd.socket
	After: avahi-daemon.socket
	After: dbus.socket
	After: systemd-journald-audit.socket
	After: systemd-journald-dev-log.socket
	After: systemd-initctl.socket
	References: systemd-udevd-kernel.socket
	References: systemd-journald.socket
	References: uuidd.socket
	References: systemd-udevd-control.socket
	References: avahi-daemon.socket
	References: dbus.socket
	References: dm-event.socket
	References: shutdown.target
	References: systemd-journald-audit.socket
	References: systemd-journald-dev-log.socket
	References: systemd-initctl.socket
	ReferencedBy: systemd-udevd-kernel.socket
	ReferencedBy: systemd-journald.socket
	ReferencedBy: syslog.socket
	ReferencedBy: systemd-udevd-control.socket
	ReferencedBy: uuidd.socket
	ReferencedBy: avahi-daemon.socket
	ReferencedBy: basic.target
	ReferencedBy: dbus.socket
	ReferencedBy: systemd-journald-audit.socket
	ReferencedBy: systemd-journald-dev-log.socket
	ReferencedBy: systemd-initctl.socket
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit alsa-restore.service:
	Description: Restore Sound Card State
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: alsa-restore.service
	Fragment Path: /lib/systemd/system/alsa-restore.service
	ConditionPathExists: /var/lib/alsa/asound.state untested
	ConditionPathExists: !/etc/alsa/state-daemon.conf untested
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Wants: system.slice
	WantedBy: basic.target
	Conflicts: shutdown.target
	Before: shutdown.target
	After: system.slice
	After: systemd-journald.socket
	After: alsa-state.service
	References: system.slice
	References: shutdown.target
	References: systemd-journald.socket
	References: alsa-state.service
	ReferencedBy: basic.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /usr/sbin/alsactl -E HOME=/var/run/alsa restore
-> Unit dbus.service:
	Description: D-Bus System Message Bus
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/dbus.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: dbus.service
	Documentation: man:dbus-daemon(1)
	Fragment Path: /lib/systemd/system/dbus.service
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: dbus.socket
	Requires: basic.target
	Wants: system.slice
	WantedBy: multi-user.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: multi-user.target
	Before: systemd-networkd.service
	After: system.slice
	After: dbus.socket
	After: systemd-journald.socket
	After: basic.target
	TriggeredBy: dbus.socket
	References: systemd-journald.socket
	References: system.slice
	References: dbus.socket
	References: basic.target
	References: shutdown.target
	ReferencedBy: dbus.socket
	ReferencedBy: multi-user.target
	ReferencedBy: systemd-networkd.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: simple
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	Main PID: 1120
	Main PID Known: yes
	Main PID Alien: no
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	OOMScoreAdjust: -900
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation
	-> ExecReload:
		Command Line: /usr/bin/dbus-send --print-reply --system --type=method_call --dest=org.freedesktop.DBus / org.freedesktop.DBus.ReloadConfig
-> Unit systemd-fsck at dev-mapper-SSHDCrypt\x2dROOT.service:
	Description: File System Check on /dev/mapper/SSHDCrypt-ROOT
	Instance: dev-mapper-SSHDCrypt\x2dROOT
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system-systemd\x2dfsck.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-fsck at dev-mapper-SSHDCrypt\x2dROOT.service
	Documentation: man:systemd-fsck at .service(8)
	Fragment Path: /lib/systemd/system/systemd-fsck at .service
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Wants: system-systemd\x2dfsck.slice
	Wants: systemd-fsckd.socket
	BindsTo: dev-mapper-SSHDCrypt\x2dROOT.device
	RequiredByOverridable: media-SSHD.mount
	Before: media-SSHD.mount
	Before: shutdown.target
	After: systemd-journald.socket
	After: systemd-fsck-root.service
	After: systemd-fsckd.socket
	After: system-systemd\x2dfsck.slice
	After: dev-mapper-SSHDCrypt\x2dROOT.device
	After: local-fs-pre.target
	References: systemd-journald.socket
	References: systemd-fsck-root.service
	References: systemd-fsckd.socket
	References: shutdown.target
	References: system-systemd\x2dfsck.slice
	References: dev-mapper-SSHDCrypt\x2dROOT.device
	References: local-fs-pre.target
	ReferencedBy: media-SSHD.mount
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-fsck %f
-> Unit dev-disk-by\x2dlabel-BOOT.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB BOOT
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2dlabel-BOOT.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda6.device
	Following Set Member: dev-sda6.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart6.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart6.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda6.device
	Following Set Member: dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.device
	Following Set Member: dev-disk-by\x2dpartuuid-0c9648fc\x2db83c\x2d410c\x2d9966\x2d36b4bcf41a62.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda6
-> Unit org.freedesktop.hostname1.busname:
	Description: Hostname Service Bus Name
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: org.freedesktop.hostname1.busname
	Documentation: man:systemd-hostnamed.service(8)
	Documentation: man:hostname(5)
	Documentation: man:machine-info(5)
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/hostnamed
	Fragment Path: /lib/systemd/system/org.freedesktop.hostname1.busname
	Requires: sysinit.target
	WantedBy: busnames.target
	Conflicts: shutdown.target
	Before: busnames.target
	Before: shutdown.target
	Before: systemd-hostnamed.service
	After: sysinit.target
	Triggers: systemd-hostnamed.service
	References: sysinit.target
	References: busnames.target
	References: shutdown.target
	References: systemd-hostnamed.service
	ReferencedBy: busnames.target
	ReferencedBy: systemd-hostnamed.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Bus Name State: dead
	Result: success
	Name: org.freedesktop.hostname1
	Activating: yes
	Accept FD: yes
-> Unit systemd-setup-dgram-qlen.service:
	Description: Increase datagram queue length
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-setup-dgram-qlen.service
	Fragment Path: /lib/systemd/system/systemd-setup-dgram-qlen.service
	ConditionPathIsReadWrite: /proc/sys/net/unix/max_dgram_qlen untested
	Wants: system.slice
	WantedBy: syslog.socket
	Before: syslog.socket
	After: system.slice
	References: syslog.socket
	References: system.slice
	ReferencedBy: syslog.socket
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: null
	StandardError: inherit
	-> ExecStart:
		Command Line: /sbin/sysctl -w net.unix.max_dgram_qlen=512
-> Unit plymouth-quit-wait.service:
	Description: plymouth-quit-wait.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: plymouth-quit-wait.service
	Before: getty at tty7.service
	Before: getty at tty1.service
	ReferencedBy: getty at tty7.service
	ReferencedBy: getty at tty1.service
-> Unit dev-disk-by\x2dpartlabel-Microsoft\x5cx20reserved\x5cx20partition.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB Microsoft\x20reserved\x20partition
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2dpartlabel-Microsoft\x5cx20reserved\x5cx20partition.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda4.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart4.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda4.device
	Following Set Member: dev-disk-by\x2dpartuuid-242faae1\x2daa64\x2d4791\x2da2aa\x2d314cf9e49b51.device
	Following Set Member: dev-sda4.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart4.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda4
-> Unit var-lib-machines.mount:
	Description: Virtual Machine and Container Storage
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: var-lib-machines.mount
	Fragment Path: /lib/systemd/system/var-lib-machines.mount
	ConditionPathExists: /var/lib/machines.raw untested
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: no
	Requires: -.mount
	Wants: system.slice
	WantedBy: local-fs.target
	Conflicts: umount.target
	Before: umount.target
	After: system.slice
	After: local-fs-pre.target
	After: -.mount
	After: systemd-journald.socket
	References: -.mount
	References: systemd-journald.socket
	References: local-fs-pre.target
	References: umount.target
	References: system.slice
	ReferencedBy: local-fs.target
	RequiresMountsFor: /var/lib /var/lib/machines.raw
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Mount State: dead
	Result: success
	Where: /var/lib/machines
	What: /var/lib/machines.raw
	File System Type: btrfs
	Options: loop
	From /proc/self/mountinfo: no
	From fragment: yes
	DirectoryMode: 0755
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit dev-SSHDCrypt-SWAP.swap:
	Description: /dev/SSHDCrypt/SWAP
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/dev-SSHDCrypt-SWAP.swap
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: dev-SSHDCrypt-SWAP.swap
	Following: dev-mapper-SSHDCrypt\x2dSWAP.swap
	Following Set Member: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.swap
	Following Set Member: dev-mapper-SSHDCrypt\x2dSWAP.swap
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.swap
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.swap
	Following Set Member: dev-dm\x2d2.swap
	Requires: -.mount
	Wants: system.slice
	Conflicts: umount.target
	Before: umount.target
	After: -.mount
	After: systemd-journald.socket
	After: system.slice
	References: umount.target
	References: -.mount
	References: systemd-journald.socket
	References: system.slice
	RequiresMountsFor: /dev/SSHDCrypt/SWAP
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Swap State: active
	Result: success
	What: /dev/SSHDCrypt/SWAP
	From /proc/swaps: yes
	From fragment: no
	Device Node: /dev/dm-2
	Priority: -1
	Options: 
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit systemd-backlight at backlight:intel_backlight.service:
	Description: Load/Save Screen Backlight Brightness of backlight:intel_backlight
	Instance: backlight:intel_backlight
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system-systemd\x2dbacklight.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-backlight at backlight:intel_backlight.service
	Documentation: man:systemd-backlight at .service(8)
	Fragment Path: /lib/systemd/system/systemd-backlight at .service
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Requires: -.mount
	Wants: system-systemd\x2dbacklight.slice
	WantedBy: sys-devices-pci0000:00-0000:00:02.0-drm-card0-card0\x2deDP\x2d1-intel_backlight.device
	Conflicts: shutdown.target
	Before: sysinit.target
	Before: shutdown.target
	After: systemd-remount-fs.service
	After: -.mount
	After: systemd-journald.socket
	After: system-systemd\x2dbacklight.slice
	References: systemd-journald.socket
	References: system-systemd\x2dbacklight.slice
	References: systemd-remount-fs.service
	References: shutdown.target
	References: -.mount
	References: sysinit.target
	ReferencedBy: sys-devices-pci0000:00-0000:00:02.0-drm-card0-card0\x2deDP\x2d1-intel_backlight.device
	RequiresMountsFor: /var/lib/systemd/backlight
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-backlight load %i
	-> ExecStop:
		Command Line: /lib/systemd/systemd-backlight save %i
-> Unit sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d20008a.6.auto-trigger4.device:
	Description: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-20008a.6.auto/trigger4
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d20008a.6.auto-trigger4.device
	Job Timeout: 1min 30s
	Wants: iio-sensor-proxy.service
	References: iio-sensor-proxy.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-20008a.6.auto/trigger4
-> Unit pppd-dns.service:
	Description: Restore /etc/resolv.conf if the system crashed before the ppp link was shut down.
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: pppd-dns.service
	Fragment Path: /lib/systemd/system/pppd-dns.service
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	WantedBy: multi-user.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: multi-user.target
	After: system.slice
	After: systemd-journald.socket
	After: basic.target
	References: system.slice
	References: shutdown.target
	References: systemd-journald.socket
	References: basic.target
	ReferencedBy: multi-user.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /etc/ppp/ip-down.d/0000usepeerdns
-> Unit rc-local.service:
	Description: /etc/rc.local Compatibility
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/rc-local.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: rc-local.service
	Fragment Path: /lib/systemd/system/rc-local.service
	DropIn Path: /lib/systemd/system/rc-local.service.d/debian.conf
	ConditionFileIsExecutable: /etc/rc.local untested
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	WantedBy: multi-user.target
	Conflicts: shutdown.target
	Before: multi-user.target
	Before: gdm.service
	Before: getty at tty1.service
	Before: getty at tty7.service
	Before: shutdown.target
	After: network.target
	After: network-online.target
	After: systemd-journald.socket
	After: system.slice
	After: basic.target
	References: network.target
	References: shutdown.target
	References: network-online.target
	References: systemd-journald.socket
	References: system.slice
	References: basic.target
	ReferencedBy: getty at tty7.service
	ReferencedBy: multi-user.target
	ReferencedBy: gdm.service
	ReferencedBy: getty at tty1.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: forking
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal+console
	StandardError: journal+console
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /etc/rc.local start
-> Unit sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200083.4.auto-iio:device2.device:
	Description: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200083.4.auto/iio:device2
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200083.4.auto-iio:device2.device
	Following Set Member: dev-iio:device2.device
	Job Timeout: 1min 30s
	Wants: iio-sensor-proxy.service
	References: iio-sensor-proxy.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200083.4.auto/iio:device2
-> Unit anacron.service:
	Description: Run anacron jobs
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: Wed 2015-07-29 15:39:50 IST
	Inactive Enter Timestamp: Wed 2015-07-29 15:39:50 IST
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: anacron.service
	Fragment Path: /lib/systemd/system/anacron.service
	ConditionACPower: true untested
	Condition Timestamp: Wed 2015-07-29 15:29:22 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:22 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	WantedBy: multi-user.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: multi-user.target
	After: time-sync.target
	After: system.slice
	After: systemd-journald.socket
	After: basic.target
	References: system.slice
	References: basic.target
	References: shutdown.target
	References: systemd-journald.socket
	References: time-sync.target
	ReferencedBy: multi-user.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: simple
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /usr/sbin/anacron -dsq
-> Unit dev-sda4.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB Microsoft\x20reserved\x20partition
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-sda4.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda4.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart4.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda4.device
	Following Set Member: dev-disk-by\x2dpartuuid-242faae1\x2daa64\x2d4791\x2da2aa\x2d314cf9e49b51.device
	Following Set Member: dev-disk-by\x2dpartlabel-Microsoft\x5cx20reserved\x5cx20partition.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart4.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda4
-> Unit run-user-1000.mount:
	Description: /run/user/1000
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:58 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:58 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/run-user-1000.mount
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: run-user-1000.mount
	Source Path: /proc/self/mountinfo
	Requires: -.mount
	Wants: system.slice
	Conflicts: umount.target
	Before: run-user-1000-gvfs.mount
	Before: umount.target
	Before: local-fs.target
	After: system.slice
	After: local-fs-pre.target
	After: -.mount
	After: systemd-journald.socket
	References: local-fs.target
	References: local-fs-pre.target
	References: -.mount
	References: umount.target
	References: systemd-journald.socket
	References: system.slice
	ReferencedBy: run-user-1000-gvfs.mount
	RequiresMountsFor: /run/user
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Mount State: mounted
	Result: success
	Where: /run/user/1000
	What: tmpfs
	File System Type: tmpfs
	Options: rw,nosuid,nodev,relatime,size=809960k,mode=700,uid=1000,gid=1000
	From /proc/self/mountinfo: yes
	From fragment: no
	DirectoryMode: 0755
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit dev-disk-by\x2dpartuuid-5c76f548\x2dae81\x2d455c\x2d9fef\x2d4ef79ce9b11d.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB 7
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2dpartuuid-5c76f548\x2dae81\x2d455c\x2d9fef\x2d4ef79ce9b11d.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda7.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda7.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart7.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart7.device
	Following Set Member: dev-disk-by\x2duuid-a1d51c69\x2dc438\x2d428b\x2d8346\x2d273abcbf5a52.device
	Following Set Member: dev-sda7.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda7
-> Unit local-fs-pre.target:
	Description: Local File Systems (Pre)
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: local-fs-pre.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/local-fs-pre.target
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	WantedBy: systemd-remount-fs.service
	Conflicts: shutdown.target
	Before: var-lib-machines.mount
	Before: run-user-1000.mount
	Before: systemd-fsck at dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.service
	Before: systemd-fsck at dev-mapper-SSHDCrypt\x2dROOT.service
	Before: boot.mount
	Before: run-user-1000-gvfs.mount
	Before: local-fs.target
	Before: systemd-fsck at dev-disk-by\x2duuid-2206\x2d0BF2.service
	Before: boot-efi.mount
	Before: media-SSHD.mount
	After: systemd-tmpfiles-setup-dev.service
	After: systemd-remount-fs.service
	References: shutdown.target
	ReferencedBy: boot.mount
	ReferencedBy: run-user-1000.mount
	ReferencedBy: boot-efi.mount
	ReferencedBy: media-SSHD.mount
	ReferencedBy: systemd-fsck at dev-mapper-SSHDCrypt\x2dROOT.service
	ReferencedBy: local-fs.target
	ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-2206\x2d0BF2.service
	ReferencedBy: var-lib-machines.mount
	ReferencedBy: systemd-remount-fs.service
	ReferencedBy: systemd-tmpfiles-setup-dev.service
	ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.service
	ReferencedBy: run-user-1000-gvfs.mount
	StopWhenUnneeded: no
	RefuseManualStart: yes
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit mountdevsubfs.service:
	Description: mountdevsubfs.service
	Instance: n/a
	Unit Load State: masked
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: mountdevsubfs.service
	Fragment Path: /dev/null
	Before: hdparm.service
	ReferencedBy: hdparm.service
-> Unit net.hadess.SensorProxy.busname:
	Description: net.hadess.SensorProxy.busname
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: net.hadess.SensorProxy.busname
	Before: iio-sensor-proxy.service
	ReferencedBy: iio-sensor-proxy.service
-> Unit lvm2-pvscan at 254:1.service:
	Description: LVM2 PV scan on device 254:1
	Instance: 254:1
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system-lvm2\x2dpvscan.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: lvm2-pvscan at 254:1.service
	Documentation: man:pvscan(8)
	Fragment Path: /lib/systemd/system/lvm2-pvscan at .service
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Requires: lvm2-lvmetad.socket
	Wants: system-lvm2\x2dpvscan.slice
	BindsTo: dev-block-254:1.device
	WantedBy: sys-devices-virtual-block-dm\x2d1.device
	Conflicts: shutdown.target
	Before: shutdown.target
	After: lvm2-lvmetad.socket
	After: systemd-journald.socket
	After: system-lvm2\x2dpvscan.slice
	References: dev-block-254:1.device
	References: systemd-journald.socket
	References: system-lvm2\x2dpvscan.slice
	References: shutdown.target
	References: lvm2-lvmetad.socket
	ReferencedBy: sys-devices-virtual-block-dm\x2d1.device
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /sbin/lvm pvscan --cache --activate ay %i
	-> ExecStop:
		Command Line: /sbin/lvm pvscan --cache %i
-> Unit getty at tty1.service:
	Description: Getty on tty1
	Instance: tty1
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system-getty.slice
	CGroup: /system.slice/system-getty.slice/getty at tty1.service
	CGroup realized: yes
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: getty at tty1.service
	Documentation: man:agetty(8)
	Documentation: man:systemd-getty-generator(8)
	Documentation: http://0pointer.de/blog/projects/serial-console.html
	Fragment Path: /lib/systemd/system/getty at .service
	ConditionPathExists: /dev/tty0 untested
	Condition Timestamp: Wed 2015-07-29 15:29:22 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:22 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system-getty.slice
	WantedBy: getty.target
	Conflicts: shutdown.target
	Before: getty.target
	Before: shutdown.target
	After: rc-local.service
	After: system-getty.slice
	After: systemd-journald.socket
	After: basic.target
	After: systemd-user-sessions.service
	After: plymouth-quit-wait.service
	References: rc-local.service
	References: system-getty.slice
	References: systemd-journald.socket
	References: getty.target
	References: basic.target
	References: systemd-user-sessions.service
	References: shutdown.target
	References: plymouth-quit-wait.service
	ReferencedBy: getty.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: idle
	Restart: always
	NotifyAccess: none
	NotifyState: unknown
	Main PID: 1272
	Main PID Known: yes
	Main PID Alien: no
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  yes
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	Environment: LANG=
	Environment: LANGUAGE=
	Environment: LC_CTYPE=
	Environment: LC_NUMERIC=
	Environment: LC_TIME=
	Environment: LC_COLLATE=
	Environment: LC_MONETARY=
	Environment: LC_MESSAGES=
	Environment: LC_PAPER=
	Environment: LC_NAME=
	Environment: LC_ADDRESS=
	Environment: LC_TELEPHONE=
	Environment: LC_MEASUREMENT=
	Environment: LC_IDENTIFICATION=
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	TTYPath: /dev/tty1
	TTYReset: yes
	TTYVHangup: yes
	TTYVTDisallocate: yes
	SyslogFacility: daemon
	SyslogLevel: info
	UtmpIdentifier: tty1
	-> ExecStart:
		Command Line: /sbin/agetty --noclear %I $TERM
-> Unit org.freedesktop.Accounts.busname:
	Description: org.freedesktop.Accounts.busname
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: org.freedesktop.Accounts.busname
	Before: accounts-daemon.service
	ReferencedBy: accounts-daemon.service
-> Unit user at 1000.service:
	Description: User Manager for UID 1000
	Instance: 1000
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:58 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:58 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: user-1000.slice
	CGroup: /user.slice/user-1000.slice/user at 1000.service
	CGroup realized: yes
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: user at 1000.service
	Fragment Path: /lib/systemd/system/user at .service
	Condition Timestamp: Wed 2015-07-29 15:29:58 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:58 IST
	Assert Result: yes
	Requires: basic.target
	Wants: user-1000.slice
	Conflicts: shutdown.target
	Before: shutdown.target
	After: basic.target
	After: user-1000.slice
	After: systemd-user-sessions.service
	After: systemd-journald.socket
	References: systemd-journald.socket
	References: systemd-user-sessions.service
	References: basic.target
	References: shutdown.target
	References: user-1000.slice
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: notify
	Restart: no
	NotifyAccess: main
	NotifyState: unknown
	Main PID: 9471
	Main PID Known: yes
	Main PID Alien: no
	KillMode: mixed
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	User: 1000
	PAMName: systemd-user
	-> ExecStart:
		Command Line: /lib/systemd/systemd --user
	Status Text: Startup finished in 14ms.
-> Unit systemd-update-done.service:
	Description: systemd-update-done.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-update-done.service
	After: systemd-hwdb-update.service
	ReferencedBy: systemd-hwdb-update.service
-> Unit dev-disk-by\x2dpartuuid-5616cb41\x2d5424\x2d4969\x2da0e3\x2d950d408f49c9.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB Windows8_OS
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2dpartuuid-5616cb41\x2d5424\x2d4969\x2da0e3\x2d950d408f49c9.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda5.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda5.device
	Following Set Member: dev-disk-by\x2dlabel-Windows8_OS.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart5.device
	Following Set Member: dev-disk-by\x2duuid-3AEC0E87EC0E3E1F.device
	Following Set Member: dev-sda5.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart5.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda5
-> Unit slices.target:
	Description: Slices
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: slices.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/slices.target
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Wants: system.slice
	Wants: -.slice
	WantedBy: basic.target
	Conflicts: shutdown.target
	Before: basic.target
	After: -.slice
	After: user.slice
	After: machine.slice
	After: system.slice
	References: system.slice
	References: shutdown.target
	References: -.slice
	ReferencedBy: machine.slice
	ReferencedBy: user.slice
	ReferencedBy: system.slice
	ReferencedBy: basic.target
	ReferencedBy: -.slice
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit org.freedesktop.PolicyKit1.busname:
	Description: org.freedesktop.PolicyKit1.busname
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: org.freedesktop.PolicyKit1.busname
	Before: polkitd.service
	ReferencedBy: polkitd.service
-> Unit dev-disk-by\x2dpartuuid-26145e88\x2dc087\x2d4701\x2da765\x2dd9bc0b1cc602.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB WINRE_DRV
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2dpartuuid-26145e88\x2dc087\x2d4701\x2da765\x2dd9bc0b1cc602.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
	Following Set Member: dev-disk-by\x2duuid-268003D18003A681.device
	Following Set Member: dev-disk-by\x2dlabel-WINRE_DRV.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart1.device
	Following Set Member: dev-sda1.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart1.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1
-> Unit system-systemd\x2dbacklight.slice:
	Description: system-systemd\x2dbacklight.slice
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/system-systemd\x2dbacklight.slice
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: system-systemd\x2dbacklight.slice
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Wants: system.slice
	WantedBy: systemd-backlight at backlight:intel_backlight.service
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: systemd-backlight at backlight:intel_backlight.service
	After: system.slice
	References: shutdown.target
	References: system.slice
	ReferencedBy: systemd-backlight at backlight:intel_backlight.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Slice State: active
	CPUAccounting=no
	BlockIOAccounting=no
	MemoryAccounting=no
	CPUShares=18446744073709551615
	StartupCPUShares=18446744073709551615
	CPUQuotaPerSecSec=infinity
	BlockIOWeight=18446744073709551615
	StartupBlockIOWeight=18446744073709551615
	MemoryLimit=18446744073709551615
	DevicePolicy=auto
	Delegate=no
-> Unit avahi-daemon.socket:
	Description: Avahi mDNS/DNS-SD Stack Activation Socket
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: avahi-daemon.socket
	Fragment Path: /lib/systemd/system/avahi-daemon.socket
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: sysinit.target
	Requires: -.mount
	Wants: -.slice
	RequiredBy: avahi-daemon.service
	WantedBy: sockets.target
	Conflicts: shutdown.target
	Before: avahi-daemon.service
	Before: shutdown.target
	Before: sockets.target
	After: sysinit.target
	After: -.mount
	After: -.slice
	Triggers: avahi-daemon.service
	References: -.slice
	References: shutdown.target
	References: sockets.target
	References: sysinit.target
	References: -.mount
	References: avahi-daemon.service
	ReferencedBy: avahi-daemon.service
	ReferencedBy: sockets.target
	RequiresMountsFor: /var/run/avahi-daemon/socket
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Socket State: running
	Result: success
	BindIPv6Only: default
	Backlog: 128
	SocketMode: 0666
	DirectoryMode: 0755
	KeepAlive: no
	NoDelay: no
	FreeBind: no
	Transparent: no
	Broadcast: no
	PassCredentials: no
	PassSecurity: no
	TCPCongestion: n/a
	RemoveOnStop: no
	SELinuxContextFromNet: no
	ListenStream: /var/run/avahi-daemon/socket
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit dev-sda3.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB LRS_ESP
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-sda3.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart3.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
	Following Set Member: dev-disk-by\x2duuid-D20A\x2dAF97.device
	Following Set Member: dev-disk-by\x2dlabel-LRS_ESP.device
	Following Set Member: dev-disk-by\x2dpartuuid-e066dcd7\x2d9fbb\x2d4d00\x2da952\x2dee54e59db6f9.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart3.device
	Following Set Member: dev-disk-by\x2dpartlabel-Basic\x5cx20data\x5cx20partition.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda3
-> Unit sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB LRS_ESP
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart3.device
	Following Set Member: dev-sda3.device
	Following Set Member: dev-disk-by\x2duuid-D20A\x2dAF97.device
	Following Set Member: dev-disk-by\x2dlabel-LRS_ESP.device
	Following Set Member: dev-disk-by\x2dpartuuid-e066dcd7\x2d9fbb\x2d4d00\x2da952\x2dee54e59db6f9.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart3.device
	Following Set Member: dev-disk-by\x2dpartlabel-Basic\x5cx20data\x5cx20partition.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda3
-> Unit sys-devices-virtual-block-dm\x2d0.device:
	Description: /sys/devices/virtual/block/dm-0
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-virtual-block-dm\x2d0.device
	Following Set Member: dev-mapper-sdb_crypt.device
	Following Set Member: dev-disk-by\x2duuid-339197eb\x2d781c\x2d4a32\x2d9265\x2d060536dfa9e0.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dsdb_crypt.device
	Following Set Member: dev-dm\x2d0.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dCRYPT\x2dLUKS1\x2d8f7094e7d2eb453fb2b71a162de14111\x2dsdb_crypt.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-0
-> Unit dev-sda.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-sda.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda
-> Unit geoclue.service:
	Description: Location Lookup Service
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:25 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:25 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/geoclue.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: geoclue.service
	Fragment Path: /lib/systemd/system/geoclue.service
	Condition Timestamp: Wed 2015-07-29 15:29:25 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:25 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	Conflicts: shutdown.target
	Before: shutdown.target
	After: org.freedesktop.GeoClue2.busname
	After: system.slice
	After: systemd-journald.socket
	After: basic.target
	References: systemd-journald.socket
	References: org.freedesktop.GeoClue2.busname
	References: basic.target
	References: system.slice
	References: shutdown.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: dbus
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	Main PID: 8875
	Main PID Known: yes
	Main PID Alien: no
	BusName: org.freedesktop.GeoClue2
	Bus Name Good: yes
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	User: geoclue
	-> ExecStart:
		Command Line: /usr/lib/geoclue-2.0/geoclue -t 60
-> Unit lvm2-activation.service:
	Description: Activation of LVM2 logical volumes
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: lvm2-activation.service
	Documentation: man:lvm(8)
	Documentation: man:vgchange(8)
	Fragment Path: /lib/systemd/system/lvm2-activation.service
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Wants: systemd-udev-settle.service
	Wants: system.slice
	WantedBy: local-fs.target
	Before: local-fs.target
	Before: shutdown.target
	Before: lvm2-monitor.service
	After: system.slice
	After: cryptsetup.target
	After: systemd-journald.socket
	After: lvm2-activation-early.service
	References: system.slice
	References: cryptsetup.target
	References: systemd-udev-settle.service
	References: local-fs.target
	References: shutdown.target
	References: lvm2-activation-early.service
	References: systemd-journald.socket
	ReferencedBy: local-fs.target
	ReferencedBy: lvm2-monitor.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /sbin/lvm vgchange -aay --sysinit
-> Unit sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device
	Following Set Member: dev-sda.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda
-> Unit sys-devices-platform-serial8250-tty-ttyS1.device:
	Description: /sys/devices/platform/serial8250/tty/ttyS1
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-platform-serial8250-tty-ttyS1.device
	Following Set Member: dev-ttyS1.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/platform/serial8250/tty/ttyS1
-> Unit laptop-mode.timer:
	Description: Runs Laptop Mode Tools, every 150 seconds
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Fri 2015-07-31 15:35:52 IST
	Active Enter Timestamp: Fri 2015-07-31 15:35:52 IST
	Active Exit Timestamp: Fri 2015-07-31 15:35:52 IST
	Inactive Enter Timestamp: Fri 2015-07-31 15:35:52 IST
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: laptop-mode.timer
	Fragment Path: /lib/systemd/system/laptop-mode.timer
	Condition Timestamp: Fri 2015-07-31 15:35:52 IST
	Condition Result: yes
	Assert Timestamp: Fri 2015-07-31 15:35:52 IST
	Assert Result: yes
	Requires: sysinit.target
	WantedBy: multi-user.target
	Conflicts: shutdown.target
	Before: laptop-mode.service
	Before: shutdown.target
	Before: multi-user.target
	Before: timers.target
	After: sysinit.target
	Triggers: laptop-mode.service
	References: sysinit.target
	References: shutdown.target
	References: timers.target
	References: laptop-mode.service
	ReferencedBy: multi-user.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Timer State: running
	Result: success
	Unit: laptop-mode.service
	Persistent: no
	WakeSystem: no
	Accuracy: 1min
	OnActiveSec: 2min 30s
	OnUnitActiveSec: 2min 30s
-> Unit graphical.target:
	Description: Graphical Interface
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:23 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:23 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: runlevel5.target
	Name: graphical.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/graphical.target
	Condition Timestamp: Wed 2015-07-29 15:29:23 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:23 IST
	Assert Result: yes
	Requires: multi-user.target
	Wants: virtualbox.service
	Wants: dirmngr.service
	Wants: gdomap.service
	Wants: systemd-update-utmp-runlevel.service
	Wants: apport.service
	Wants: speech-dispatcher.service
	Wants: mcelog.service
	Wants: postfix.service
	Wants: iodined.service
	Wants: minissdpd.service
	Wants: accounts-daemon.service
	Wants: lightdm.service
	Wants: irqbalance.service
	Wants: gdm.service
	Conflicts: shutdown.target
	Conflicts: rescue.service
	Conflicts: rescue.target
	Before: systemd-update-utmp-runlevel.service
	After: gdm.service
	After: irqbalance.service
	After: iodined.service
	After: gdomap.service
	After: minissdpd.service
	After: accounts-daemon.service
	After: virtualbox.service
	After: rescue.target
	After: dirmngr.service
	After: multi-user.target
	After: mcelog.service
	After: speech-dispatcher.service
	After: rescue.service
	After: apport.service
	After: postfix.service
	After: lightdm.service
	References: gdomap.service
	References: multi-user.target
	References: irqbalance.service
	References: speech-dispatcher.service
	References: shutdown.target
	References: gdm.service
	References: rescue.service
	References: apport.service
	References: iodined.service
	References: rescue.target
	References: lightdm.service
	References: virtualbox.service
	References: postfix.service
	References: accounts-daemon.service
	References: minissdpd.service
	References: mcelog.service
	References: dirmngr.service
	References: systemd-update-utmp-runlevel.service
	ReferencedBy: speech-dispatcher.service
	ReferencedBy: lightdm.service
	ReferencedBy: postfix.service
	ReferencedBy: virtualbox.service
	ReferencedBy: systemd-update-utmp-runlevel.service
	ReferencedBy: mcelog.service
	ReferencedBy: iodined.service
	ReferencedBy: minissdpd.service
	ReferencedBy: apport.service
	ReferencedBy: irqbalance.service
	ReferencedBy: dirmngr.service
	ReferencedBy: gdomap.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit speech-dispatcher.service:
	Description: LSB: Speech Dispatcher
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/speech-dispatcher.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: speech-dispatcher.service
	Documentation: man:systemd-sysv-generator(8)
	Fragment Path: /run/systemd/generator.late/speech-dispatcher.service
	Source Path: /etc/init.d/speech-dispatcher
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	WantedBy: multi-user.target
	WantedBy: graphical.target
	Conflicts: shutdown.target
	Before: multi-user.target
	Before: shutdown.target
	Before: graphical.target
	After: systemd-journald-dev-log.socket
	After: system.slice
	After: festival.service
	After: basic.target
	After: systemd-journald.socket
	After: remote-fs.target
	References: systemd-journald-dev-log.socket
	References: system.slice
	References: shutdown.target
	References: festival.service
	References: basic.target
	References: systemd-journald.socket
	References: graphical.target
	References: multi-user.target
	References: remote-fs.target
	ReferencedBy: multi-user.target
	ReferencedBy: graphical.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: no
	Type: forking
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /etc/init.d/speech-dispatcher start
	-> ExecReload:
		Command Line: /etc/init.d/speech-dispatcher reload
	-> ExecStop:
		Command Line: /etc/init.d/speech-dispatcher stop
-> Unit dev-dm\x2d3.device:
	Description: /dev/dm-3
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-dm\x2d3.device
	Following: sys-devices-virtual-block-dm\x2d3.device
	Following Set Member: sys-devices-virtual-block-dm\x2d3.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAq7ic3Bd7CskLs20cyN4S1SOTEvVeUKV6r.device
	Following Set Member: dev-disk-by\x2duuid-f3c1b4f2\x2dd8e5\x2d4c9d\x2d9775\x2d638cc1c1165e.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dROOT.device
	Following Set Member: dev-disk-by\x2dlabel-ROOT.device
	Following Set Member: dev-mapper-SSHDCrypt\x2dROOT.device
	Following Set Member: dev-SSHDCrypt-ROOT.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-3
-> Unit org.freedesktop.systemd1.busname:
	Description: System and Service Manager Bus Name
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: org.freedesktop.systemd1.busname
	Documentation: man:systemd(1)
	Documentation: http://www.freedesktop.org/wiki/Software/systemd
	Fragment Path: /lib/systemd/system/org.freedesktop.systemd1.busname
	Requires: sysinit.target
	WantedBy: busnames.target
	Conflicts: shutdown.target
	Before: busnames.target
	Before: shutdown.target
	After: sysinit.target
	References: sysinit.target
	References: busnames.target
	References: shutdown.target
	ReferencedBy: busnames.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Bus Name State: dead
	Result: success
	Name: org.freedesktop.systemd1
	Activating: no
	Accept FD: yes
-> Unit consolekit.service:
	Description: consolekit.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: consolekit.service
	Before: lightdm.service
	ReferencedBy: lightdm.service
-> Unit org.freedesktop.resolve1.busname:
	Description: Network Name Resolution Service Bus Name
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: org.freedesktop.resolve1.busname
	Documentation: man:systemd-resolved.service(8)
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/resolved
	Fragment Path: /lib/systemd/system/org.freedesktop.resolve1.busname
	ConditionPathExists: /sys/fs/kdbus/0-system/ untested
	Requires: sysinit.target
	WantedBy: busnames.target
	WantedBy: systemd-resolved.service
	Conflicts: shutdown.target
	Before: busnames.target
	Before: shutdown.target
	Before: systemd-resolved.service
	After: sysinit.target
	Triggers: systemd-resolved.service
	References: sysinit.target
	References: busnames.target
	References: shutdown.target
	References: systemd-resolved.service
	ReferencedBy: busnames.target
	ReferencedBy: systemd-resolved.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Bus Name State: dead
	Result: success
	Name: org.freedesktop.resolve1
	Activating: yes
	Accept FD: yes
-> Unit sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda5.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB Windows8_OS
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda5.device
	Following Set Member: dev-disk-by\x2dpartuuid-5616cb41\x2d5424\x2d4969\x2da0e3\x2d950d408f49c9.device
	Following Set Member: dev-disk-by\x2dlabel-Windows8_OS.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart5.device
	Following Set Member: dev-disk-by\x2duuid-3AEC0E87EC0E3E1F.device
	Following Set Member: dev-sda5.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart5.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda5
-> Unit system-getty.slice:
	Description: system-getty.slice
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/system-getty.slice
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: system-getty.slice
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Wants: system.slice
	WantedBy: getty at tty7.service
	WantedBy: getty at tty1.service
	Conflicts: shutdown.target
	Before: getty at tty7.service
	Before: shutdown.target
	Before: getty at tty1.service
	After: system.slice
	References: shutdown.target
	References: system.slice
	ReferencedBy: getty at tty7.service
	ReferencedBy: getty at tty1.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Slice State: active
	CPUAccounting=no
	BlockIOAccounting=no
	MemoryAccounting=no
	CPUShares=18446744073709551615
	StartupCPUShares=18446744073709551615
	CPUQuotaPerSecSec=infinity
	BlockIOWeight=18446744073709551615
	StartupBlockIOWeight=18446744073709551615
	MemoryLimit=18446744073709551615
	DevicePolicy=auto
	Delegate=no
-> Unit systemd-udev-trigger.service:
	Description: udev Coldplug all Devices
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/systemd-udev-trigger.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: systemd-udev-trigger.service
	Documentation: man:udev(7)
	Documentation: man:systemd-udevd.service(8)
	Fragment Path: /lib/systemd/system/systemd-udev-trigger.service
	ConditionPathIsReadWrite: /sys untested
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Wants: systemd-udevd.service
	Wants: system.slice
	WantedBy: sysinit.target
	Before: sysinit.target
	Before: systemd-udev-settle.service
	After: systemd-journald.socket
	After: system.slice
	After: systemd-hwdb-update.service
	After: systemd-udevd-kernel.socket
	After: systemd-udevd-control.socket
	References: systemd-journald.socket
	References: system.slice
	References: systemd-hwdb-update.service
	References: sysinit.target
	References: systemd-udevd-kernel.socket
	References: systemd-udevd.service
	References: systemd-udevd-control.socket
	ReferencedBy: sysinit.target
	ReferencedBy: systemd-udev-settle.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /bin/udevadm trigger --type=subsystems --action=add
		Command Line: /bin/udevadm trigger --type=devices --action=add
-> Unit sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200083.4.auto-trigger2.device:
	Description: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200083.4.auto/trigger2
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200083.4.auto-trigger2.device
	Job Timeout: 1min 30s
	Wants: iio-sensor-proxy.service
	References: iio-sensor-proxy.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200083.4.auto/trigger2
-> Unit org.freedesktop.machine1.busname:
	Description: Virtual Machine and Container Registration Service Bus Name
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: org.freedesktop.machine1.busname
	Documentation: man:systemd-machined.service(8)
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/machined
	Fragment Path: /lib/systemd/system/org.freedesktop.machine1.busname
	Requires: sysinit.target
	WantedBy: busnames.target
	Conflicts: shutdown.target
	Before: busnames.target
	Before: shutdown.target
	Before: systemd-machined.service
	After: sysinit.target
	Triggers: systemd-machined.service
	References: sysinit.target
	References: busnames.target
	References: shutdown.target
	References: systemd-machined.service
	ReferencedBy: busnames.target
	ReferencedBy: systemd-machined.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Bus Name State: dead
	Result: success
	Name: org.freedesktop.machine1
	Activating: yes
	Accept FD: yes
-> Unit systemd-ask-password-console.path:
	Description: Dispatch Password Requests to Console Directory Watch
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-ask-password-console.path
	Documentation: man:systemd-ask-password-console.service(8)
	Fragment Path: /lib/systemd/system/systemd-ask-password-console.path
	ConditionPathExists: !/run/plymouth/pid untested
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Requires: -.mount
	WantedBy: sysinit.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: systemd-ask-password-console.service
	Before: paths.target
	After: plymouth-start.service
	After: -.mount
	Triggers: systemd-ask-password-console.service
	References: paths.target
	References: systemd-ask-password-console.service
	References: shutdown.target
	References: -.mount
	References: plymouth-start.service
	ReferencedBy: sysinit.target
	RequiresMountsFor: /run/systemd/ask-password
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Path State: waiting
	Result: success
	Unit: systemd-ask-password-console.service
	MakeDirectory: yes
	DirectoryMode: 0755
	DirectoryNotEmpty: /run/systemd/ask-password
-> Unit dev-sda6.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB BOOT
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-sda6.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda6.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart6.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart6.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda6.device
	Following Set Member: dev-disk-by\x2dlabel-BOOT.device
	Following Set Member: dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.device
	Following Set Member: dev-disk-by\x2dpartuuid-0c9648fc\x2db83c\x2d410c\x2d9966\x2d36b4bcf41a62.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda6
-> Unit dev-mapper-SSHDCrypt\x2dSWAP.device:
	Description: /dev/mapper/SSHDCrypt-SWAP
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-mapper-SSHDCrypt\x2dSWAP.device
	Following: sys-devices-virtual-block-dm\x2d2.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.device
	Following Set Member: sys-devices-virtual-block-dm\x2d2.device
	Following Set Member: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.device
	Following Set Member: dev-SSHDCrypt-SWAP.device
	Following Set Member: dev-dm\x2d2.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.device
	Job Timeout: 1min 30s
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Wants: dev-mapper-SSHDCrypt\x2dSWAP.swap
	BoundBy: dev-mapper-SSHDCrypt\x2dSWAP.swap
	Before: dev-mapper-SSHDCrypt\x2dSWAP.swap
	ReferencedBy: dev-mapper-SSHDCrypt\x2dSWAP.swap
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-2
-> Unit emergency.service:
	Description: Emergency Shell
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: emergency.service
	Documentation: man:sulogin(8)
	Fragment Path: /lib/systemd/system/emergency.service
	Requires: -.mount
	Wants: system.slice
	RequiredBy: emergency.target
	Conflicts: shutdown.target
	Conflicts: rescue.service
	Conflicts: syslog.socket
	ConflictedBy: sysinit.target
	Before: sysinit.target
	Before: shutdown.target
	Before: emergency.target
	After: -.mount
	After: system.slice
	References: rescue.service
	References: system.slice
	References: -.mount
	References: shutdown.target
	References: syslog.socket
	ReferencedBy: sysinit.target
	ReferencedBy: emergency.target
	RequiresMountsFor: /root
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: idle
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  yes
	UMask: 0022
	WorkingDirectory: /root
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	Environment: HOME=/root
	LimitNOFILE: 4096
	StandardInput: tty-force
	StandardOutput: inherit
	StandardError: inherit
	-> ExecStartPre:
		Command Line: /bin/plymouth --wait quit
		Command Line: /bin/echo -e 'Welcome to emergency mode! After logging in, type "journalctl -xb" to view\nsystem logs, "systemctl reboot" to reboot, "systemctl default" or ^D to\ntry again to boot into default mode.'
	-> ExecStart:
		Command Line: /bin/sh -c '/sbin/sulogin; /bin/systemctl --job-mode=fail --no-block default'
-> Unit systemd-sysctl.service:
	Description: Apply Kernel Variables
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/systemd-sysctl.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: systemd-sysctl.service
	Documentation: man:systemd-sysctl.service(8)
	Documentation: man:sysctl.d(5)
	Fragment Path: /lib/systemd/system/systemd-sysctl.service
	ConditionPathIsReadWrite: /proc/sys/ untested
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Wants: system.slice
	WantedBy: sysinit.target
	Conflicts: shutdown.target
	Before: sysinit.target
	Before: shutdown.target
	After: systemd-modules-load.service
	After: systemd-journald.socket
	After: system.slice
	References: sysinit.target
	References: systemd-journald.socket
	References: shutdown.target
	References: systemd-modules-load.service
	References: system.slice
	ReferencedBy: sysinit.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-sysctl
-> Unit uuidd.service:
	Description: Daemon for generating UUIDs
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: uuidd.service
	Fragment Path: /lib/systemd/system/uuidd.service
	Requires: uuidd.socket
	Requires: basic.target
	Wants: system.slice
	Conflicts: shutdown.target
	Before: shutdown.target
	After: system.slice
	After: uuidd.socket
	After: systemd-journald.socket
	After: basic.target
	TriggeredBy: uuidd.socket
	References: systemd-journald.socket
	References: shutdown.target
	References: uuidd.socket
	References: basic.target
	References: system.slice
	ReferencedBy: uuidd.socket
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: simple
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	User: uuidd
	Group: uuidd
	-> ExecStart:
		Command Line: /usr/sbin/uuidd --socket-activation
-> Unit udev-finish.service:
	Description: Copy rules generated while the root was ro
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/udev-finish.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: udev-finish.service
	Fragment Path: /lib/systemd/system/udev-finish.service
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Wants: system.slice
	WantedBy: sysinit.target
	After: system.slice
	After: systemd-udevd.service
	After: systemd-udev-settle.service
	After: systemd-journald.socket
	References: system.slice
	References: systemd-udevd.service
	References: systemd-udev-settle.service
	References: systemd-journald.socket
	ReferencedBy: sysinit.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/udev/udev-finish
-> Unit org.freedesktop.login1.busname:
	Description: Login Service Bus Name
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: org.freedesktop.login1.busname
	Documentation: man:systemd-logind.service(8)
	Documentation: man:logind.conf(5)
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/logind
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/multiseat
	Fragment Path: /lib/systemd/system/org.freedesktop.login1.busname
	Requires: sysinit.target
	WantedBy: busnames.target
	Conflicts: shutdown.target
	Before: systemd-logind.service
	Before: busnames.target
	Before: shutdown.target
	After: sysinit.target
	Triggers: systemd-logind.service
	References: systemd-logind.service
	References: sysinit.target
	References: busnames.target
	References: shutdown.target
	ReferencedBy: systemd-logind.service
	ReferencedBy: busnames.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Bus Name State: dead
	Result: success
	Name: org.freedesktop.login1
	Activating: yes
	Accept FD: yes
-> Unit systemd-udevd-kernel.socket:
	Description: udev Kernel Socket
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-udevd-kernel.socket
	Documentation: man:systemd-udevd.service(8)
	Documentation: man:udev(7)
	Fragment Path: /lib/systemd/system/systemd-udevd-kernel.socket
	ConditionPathIsReadWrite: /sys untested
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Wants: -.slice
	WantedBy: systemd-udevd.service
	WantedBy: sockets.target
	Before: systemd-udevd.service
	Before: sockets.target
	Before: systemd-udev-trigger.service
	After: -.slice
	Triggers: systemd-udevd.service
	References: systemd-udevd.service
	References: sockets.target
	References: -.slice
	ReferencedBy: systemd-udevd.service
	ReferencedBy: sockets.target
	ReferencedBy: systemd-udev-trigger.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Socket State: running
	Result: success
	BindIPv6Only: default
	Backlog: 128
	SocketMode: 0666
	DirectoryMode: 0755
	KeepAlive: no
	NoDelay: no
	FreeBind: no
	Transparent: no
	Broadcast: no
	PassCredentials: yes
	PassSecurity: no
	TCPCongestion: n/a
	RemoveOnStop: no
	SELinuxContextFromNet: no
	ReceiveBuffer: 134217728
	ListenNetlink: kobject-uevent 1
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit dev-disk-by\x2duuid-8f7094e7\x2dd2eb\x2d453f\x2db2b7\x2d1a162de14111.device:
	Description: KINGSTON_SM2280S3120G
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2duuid-8f7094e7\x2dd2eb\x2d453f\x2db2b7\x2d1a162de14111.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device
	Following Set Member: dev-disk-by\x2did-ata\x2dKINGSTON_SM2280S3120G_50026B7251189BF2.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device
	Following Set Member: dev-sdb.device
	Job Timeout: 1min 30s
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Wants: systemd-cryptsetup at sdb_crypt.service
	BoundBy: systemd-cryptsetup at sdb_crypt.service
	Before: systemd-cryptsetup at sdb_crypt.service
	References: systemd-cryptsetup at sdb_crypt.service
	ReferencedBy: systemd-cryptsetup at sdb_crypt.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb
-> Unit sys-devices-virtual-block-dm\x2d1.device:
	Description: LVM PV kohKZh-NmaK-NWe0-1v3E-wmUk-K9bT-NOCn0f on /dev/dm-1
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-virtual-block-dm\x2d1.device
	Following Set Member: dev-block-254:1.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dCRYPT\x2dLUKS1\x2da1d51c69c438428b8346273abcbf5a52\x2dsda7_crypt.device
	Following Set Member: dev-disk-by\x2did-lvm\x2dpv\x2duuid\x2dkohKZh\x2dNmaK\x2dNWe0\x2d1v3E\x2dwmUk\x2dK9bT\x2dNOCn0f.device
	Following Set Member: dev-mapper-sda7_crypt.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dsda7_crypt.device
	Following Set Member: dev-dm\x2d1.device
	Job Timeout: 1min 30s
	Wants: lvm2-pvscan at 254:1.service
	References: lvm2-pvscan at 254:1.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-1
-> Unit wpa_supplicant.service:
	Description: WPA supplicant
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:23 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:23 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/wpa_supplicant.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: wpa_supplicant.service
	Fragment Path: /lib/systemd/system/wpa_supplicant.service
	Condition Timestamp: Wed 2015-07-29 15:29:23 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:23 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	Conflicts: shutdown.target
	Before: network.target
	Before: shutdown.target
	After: system.slice
	After: fi.epitest.hostap.WPASupplicant.busname
	After: systemd-journald.socket
	After: basic.target
	References: systemd-journald.socket
	References: fi.epitest.hostap.WPASupplicant.busname
	References: basic.target
	References: system.slice
	References: shutdown.target
	References: network.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: dbus
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	Main PID: 4402
	Main PID Known: yes
	Main PID Alien: no
	BusName: fi.epitest.hostap.WPASupplicant
	Bus Name Good: yes
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
-> Unit sys-devices-platform-serial8250-tty-ttyS3.device:
	Description: /sys/devices/platform/serial8250/tty/ttyS3
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-platform-serial8250-tty-ttyS3.device
	Following Set Member: dev-ttyS3.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/platform/serial8250/tty/ttyS3
-> Unit postfix.service:
	Description: LSB: Postfix Mail Transport Agent
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Thu 2015-07-30 12:32:38 IST
	Active Enter Timestamp: Thu 2015-07-30 12:32:38 IST
	Active Exit Timestamp: Thu 2015-07-30 12:32:37 IST
	Inactive Enter Timestamp: Thu 2015-07-30 12:32:37 IST
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/postfix.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: postfix.service
	Documentation: man:systemd-sysv-generator(8)
	Fragment Path: /run/systemd/generator.late/postfix.service
	Source Path: /etc/init.d/postfix
	DropIn Path: /run/systemd/generator/postfix.service.d/50-postfix-$mail-transport-agent.conf
	Condition Timestamp: Thu 2015-07-30 12:32:38 IST
	Condition Result: yes
	Assert Timestamp: Thu 2015-07-30 12:32:38 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	Wants: mail-transport-agent.target
	Wants: network-online.target
	RequiredBy: mail-transport-agent.target
	WantedBy: multi-user.target
	WantedBy: graphical.target
	Conflicts: shutdown.target
	Before: graphical.target
	Before: multi-user.target
	Before: shutdown.target
	Before: mail-transport-agent.target
	After: remote-fs.target
	After: clamav-daemon.service
	After: dovecot.service
	After: network-online.target
	After: basic.target
	After: postgresql.service
	After: time-sync.target
	After: saslauthd.service
	After: local-fs.target
	After: systemd-journald.socket
	After: nss-lookup.target
	After: mysql.service
	After: postgrey.service
	After: systemd-journald-dev-log.socket
	After: spamassassin.service
	After: system.slice
	References: nss-lookup.target
	References: saslauthd.service
	References: mysql.service
	References: time-sync.target
	References: postgresql.service
	References: basic.target
	References: postgrey.service
	References: system.slice
	References: remote-fs.target
	References: spamassassin.service
	References: systemd-journald-dev-log.socket
	References: shutdown.target
	References: graphical.target
	References: dovecot.service
	References: network-online.target
	References: local-fs.target
	References: mail-transport-agent.target
	References: multi-user.target
	References: systemd-journald.socket
	References: clamav-daemon.service
	ReferencedBy: multi-user.target
	ReferencedBy: mail-transport-agent.target
	ReferencedBy: graphical.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: no
	Type: forking
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /etc/init.d/postfix start
	-> ExecReload:
		Command Line: /etc/init.d/postfix reload
	-> ExecStop:
		Command Line: /etc/init.d/postfix stop
-> Unit accounts-daemon.service:
	Description: Accounts Service
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/accounts-daemon.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: accounts-daemon.service
	Fragment Path: /lib/systemd/system/accounts-daemon.service
	Condition Timestamp: Wed 2015-07-29 15:29:22 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:22 IST
	Assert Result: yes
	Requires: basic.target
	Wants: nss-user-lookup.target
	Wants: system.slice
	WantedBy: graphical.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: graphical.target
	After: nss-user-lookup.target
	After: systemd-journald.socket
	After: org.freedesktop.Accounts.busname
	After: system.slice
	After: basic.target
	References: nss-user-lookup.target
	References: systemd-journald.socket
	References: org.freedesktop.Accounts.busname
	References: shutdown.target
	References: system.slice
	References: basic.target
	ReferencedBy: graphical.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: dbus
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	Main PID: 1175
	Main PID Known: yes
	Main PID Alien: no
	BusName: org.freedesktop.Accounts
	Bus Name Good: yes
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /usr/lib/accountsservice/accounts-daemon
-> Unit sys-devices-virtual-block-dm\x2d3.device:
	Description: /sys/devices/virtual/block/dm-3
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-virtual-block-dm\x2d3.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAq7ic3Bd7CskLs20cyN4S1SOTEvVeUKV6r.device
	Following Set Member: dev-dm\x2d3.device
	Following Set Member: dev-disk-by\x2duuid-f3c1b4f2\x2dd8e5\x2d4c9d\x2d9775\x2d638cc1c1165e.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dROOT.device
	Following Set Member: dev-disk-by\x2dlabel-ROOT.device
	Following Set Member: dev-mapper-SSHDCrypt\x2dROOT.device
	Following Set Member: dev-SSHDCrypt-ROOT.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-3
-> Unit winbind.service:
	Description: winbind.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: winbind.service
	Before: dovecot.service
	ReferencedBy: dovecot.service
-> Unit getty.target:
	Description: Login Prompts
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: getty.target
	Documentation: man:systemd.special(7)
	Documentation: man:systemd-getty-generator(8)
	Documentation: http://0pointer.de/blog/projects/serial-console.html
	Fragment Path: /lib/systemd/system/getty.target
	Condition Timestamp: Wed 2015-07-29 15:29:22 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:22 IST
	Assert Result: yes
	Wants: getty-static.service
	Wants: getty at tty1.service
	WantedBy: multi-user.target
	Conflicts: shutdown.target
	Before: multi-user.target
	After: getty at tty7.service
	After: getty-static.service
	After: getty at tty1.service
	References: getty-static.service
	References: shutdown.target
	References: getty at tty1.service
	ReferencedBy: getty at tty7.service
	ReferencedBy: multi-user.target
	ReferencedBy: getty at tty1.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit slapd.service:
	Description: slapd.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: slapd.service
	Before: dovecot.service
	ReferencedBy: dovecot.service
-> Unit polkitd.service:
	Description: Authenticate and Authorize Users to Run Privileged Tasks
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/polkitd.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: polkitd.service
	Fragment Path: /lib/systemd/system/polkitd.service
	Condition Timestamp: Wed 2015-07-29 15:29:22 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:22 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	Conflicts: shutdown.target
	Before: shutdown.target
	After: org.freedesktop.PolicyKit1.busname
	After: system.slice
	After: systemd-journald.socket
	After: basic.target
	References: systemd-journald.socket
	References: org.freedesktop.PolicyKit1.busname
	References: basic.target
	References: system.slice
	References: shutdown.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: dbus
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	Main PID: 1271
	Main PID Known: yes
	Main PID Alien: no
	BusName: org.freedesktop.PolicyKit1
	Bus Name Good: yes
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /usr/lib/policykit-1/polkitd --no-debug
-> Unit cryptsetup-pre.target:
	Description: Encrypted Volumes (Pre)
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: cryptsetup-pre.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/cryptsetup-pre.target
	Conflicts: shutdown.target
	Before: systemd-cryptsetup at sdb_crypt.service
	Before: systemd-cryptsetup at sda7_crypt.service
	References: shutdown.target
	ReferencedBy: systemd-cryptsetup at sdb_crypt.service
	ReferencedBy: systemd-cryptsetup at sda7_crypt.service
	StopWhenUnneeded: no
	RefuseManualStart: yes
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: dead
-> Unit dev-iio:device2.device:
	Description: /dev/iio:device2
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-iio:device2.device
	Following: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200083.4.auto-iio:device2.device
	Following Set Member: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200083.4.auto-iio:device2.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200083.4.auto/iio:device2
-> Unit sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200041.7.auto-iio:device5.device:
	Description: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200041.7.auto/iio:device5
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200041.7.auto-iio:device5.device
	Following Set Member: dev-iio:device5.device
	Job Timeout: 1min 30s
	Wants: iio-sensor-proxy.service
	References: iio-sensor-proxy.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200041.7.auto/iio:device5
-> Unit sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200041.7.auto-trigger5.device:
	Description: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200041.7.auto/trigger5
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200041.7.auto-trigger5.device
	Job Timeout: 1min 30s
	Wants: iio-sensor-proxy.service
	References: iio-sensor-proxy.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200041.7.auto/trigger5
-> Unit laptop-mode.service:
	Description: Laptop Mode Tools
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/laptop-mode.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: laptop-mode.service
	Fragment Path: /etc/systemd/system/laptop-mode.service
	Condition Timestamp: Wed 2015-07-29 15:29:22 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:22 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	WantedBy: multi-user.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: multi-user.target
	After: laptop-mode.timer
	After: basic.target
	After: system.slice
	TriggeredBy: laptop-mode.timer
	References: shutdown.target
	References: basic.target
	References: system.slice
	ReferencedBy: multi-user.target
	ReferencedBy: laptop-mode.timer
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: tty
	StandardError: tty
	-> ExecStart:
		Command Line: init auto
	-> ExecReload:
		Command Line: auto
			PID: 15121
			Start Timestamp: Fri 2015-07-31 21:58:59 IST
			Exit Timestamp: Fri 2015-07-31 21:58:59 IST
			Exit Code: exited
			Exit Status: 0
	-> ExecStop:
		Command Line: init stop
	-> ExecStopPost:
		Command Line: -f /var/run/laptop-mode-tools/enabled
-> Unit saslauthd.service:
	Description: saslauthd.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: saslauthd.service
	Before: postfix.service
	ReferencedBy: postfix.service
-> Unit dev-disk-by\x2dpartuuid-0c9648fc\x2db83c\x2d410c\x2d9966\x2d36b4bcf41a62.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB BOOT
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2dpartuuid-0c9648fc\x2db83c\x2d410c\x2d9966\x2d36b4bcf41a62.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda6.device
	Following Set Member: dev-sda6.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart6.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart6.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda6.device
	Following Set Member: dev-disk-by\x2dlabel-BOOT.device
	Following Set Member: dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda6
-> Unit org.freedesktop.RealtimeKit1.busname:
	Description: org.freedesktop.RealtimeKit1.busname
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: org.freedesktop.RealtimeKit1.busname
	Before: rtkit-daemon.service
	ReferencedBy: rtkit-daemon.service
-> Unit systemd-initctl.socket:
	Description: /dev/initctl Compatibility Named Pipe
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-initctl.socket
	Documentation: man:systemd-initctl.service(8)
	Fragment Path: /lib/systemd/system/systemd-initctl.socket
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Requires: -.mount
	Wants: -.slice
	WantedBy: sockets.target
	Before: sockets.target
	Before: systemd-initctl.service
	After: -.mount
	After: -.slice
	Triggers: systemd-initctl.service
	References: -.slice
	References: -.mount
	References: sockets.target
	References: systemd-initctl.service
	ReferencedBy: sockets.target
	RequiresMountsFor: /run/systemd/initctl/fifo
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Socket State: listening
	Result: success
	BindIPv6Only: default
	Backlog: 128
	SocketMode: 0600
	DirectoryMode: 0755
	KeepAlive: no
	NoDelay: no
	FreeBind: no
	Transparent: no
	Broadcast: no
	PassCredentials: no
	PassSecurity: no
	TCPCongestion: n/a
	RemoveOnStop: no
	SELinuxContextFromNet: no
	ListenFIFO: /run/systemd/initctl/fifo
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit systemd-resolved.service:
	Description: Network Name Resolution
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-resolved.service
	Documentation: man:systemd-resolved.service(8)
	Fragment Path: /lib/systemd/system/systemd-resolved.service
	Requires: basic.target
	Wants: org.freedesktop.resolve1.busname
	Wants: system.slice
	Conflicts: shutdown.target
	Before: shutdown.target
	After: systemd-networkd.service
	After: systemd-journald.socket
	After: basic.target
	After: network.target
	After: system.slice
	After: org.freedesktop.resolve1.busname
	TriggeredBy: org.freedesktop.resolve1.busname
	References: systemd-networkd.service
	References: shutdown.target
	References: basic.target
	References: systemd-journald.socket
	References: network.target
	References: system.slice
	References: org.freedesktop.resolve1.busname
	ReferencedBy: org.freedesktop.resolve1.busname
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: notify
	Restart: always
	NotifyAccess: main
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: yes
	ProtectSystem: full
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	CapabilityBoundingSet: cap_chown cap_dac_override cap_fowner cap_setgid cap_setuid cap_setpcap
	-> ExecStart:
		Command Line: /lib/systemd/systemd-resolved
-> Unit systemd-fsck at dev-disk-by\x2duuid-2206\x2d0BF2.service:
	Description: File System Check on /dev/disk/by-uuid/2206-0BF2
	Instance: dev-disk-by\x2duuid-2206\x2d0BF2
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system-systemd\x2dfsck.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-fsck at dev-disk-by\x2duuid-2206\x2d0BF2.service
	Documentation: man:systemd-fsck at .service(8)
	Fragment Path: /lib/systemd/system/systemd-fsck at .service
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Wants: system-systemd\x2dfsck.slice
	Wants: systemd-fsckd.socket
	BindsTo: dev-disk-by\x2duuid-2206\x2d0BF2.device
	RequiredByOverridable: boot-efi.mount
	Before: boot-efi.mount
	Before: shutdown.target
	After: systemd-journald.socket
	After: systemd-fsck-root.service
	After: systemd-fsckd.socket
	After: system-systemd\x2dfsck.slice
	After: local-fs-pre.target
	After: dev-disk-by\x2duuid-2206\x2d0BF2.device
	References: systemd-journald.socket
	References: systemd-fsck-root.service
	References: systemd-fsckd.socket
	References: shutdown.target
	References: system-systemd\x2dfsck.slice
	References: local-fs-pre.target
	References: dev-disk-by\x2duuid-2206\x2d0BF2.device
	ReferencedBy: boot-efi.mount
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-fsck %f
-> Unit sys-kernel-config.mount:
	Description: Configuration File System
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-kernel-config.mount
	Documentation: https://www.kernel.org/doc/Documentation/filesystems/configfs/configfs.txt
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
	Fragment Path: /lib/systemd/system/sys-kernel-config.mount
	ConditionCapability: CAP_SYS_RAWIO untested
	ConditionPathExists: /sys/kernel/config untested
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: no
	Requires: -.mount
	Wants: system.slice
	WantedBy: sysinit.target
	Before: sysinit.target
	After: system.slice
	After: systemd-modules-load.service
	After: -.mount
	After: systemd-journald.socket
	References: -.mount
	References: sysinit.target
	References: systemd-modules-load.service
	References: system.slice
	References: systemd-journald.socket
	ReferencedBy: sysinit.target
	RequiresMountsFor: /sys/kernel
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Mount State: dead
	Result: success
	Where: /sys/kernel/config
	What: configfs
	File System Type: configfs
	Options: n/a
	From /proc/self/mountinfo: no
	From fragment: yes
	DirectoryMode: 0755
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit systemd-remount-fs.service:
	Description: Remount Root and Kernel File Systems
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/systemd-remount-fs.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: systemd-remount-fs.service
	Documentation: man:systemd-remount-fs.service(8)
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
	Fragment Path: /lib/systemd/system/systemd-remount-fs.service
	ConditionPathExists: /etc/fstab untested
	Condition Timestamp: Wed 2015-07-29 15:29:20 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:20 IST
	Assert Result: yes
	Wants: local-fs-pre.target
	Wants: system.slice
	WantedBy: local-fs.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: systemd-backlight at backlight:intel_backlight.service
	Before: systemd-timesyncd.service
	Before: systemd-update-utmp.service
	Before: local-fs-pre.target
	Before: systemd-rfkill at rfkill1.service
	Before: local-fs.target
	Before: systemd-hwdb-update.service
	Before: debian-fixup.service
	Before: systemd-rfkill at rfkill0.service
	Before: systemd-journal-flush.service
	Before: systemd-rfkill at rfkill2.service
	Before: systemd-random-seed.service
	Before: systemd-rfkill at rfkill10.service
	After: systemd-fsck-root.service
	After: keyboard-setup.service
	After: systemd-journald.socket
	After: system.slice
	References: shutdown.target
	References: systemd-journald.socket
	References: local-fs-pre.target
	References: systemd-fsck-root.service
	References: local-fs.target
	References: system.slice
	ReferencedBy: systemd-rfkill at rfkill1.service
	ReferencedBy: debian-fixup.service
	ReferencedBy: systemd-random-seed.service
	ReferencedBy: systemd-hwdb-update.service
	ReferencedBy: systemd-rfkill at rfkill0.service
	ReferencedBy: systemd-update-utmp.service
	ReferencedBy: systemd-rfkill at rfkill2.service
	ReferencedBy: systemd-journal-flush.service
	ReferencedBy: systemd-rfkill at rfkill10.service
	ReferencedBy: keyboard-setup.service
	ReferencedBy: local-fs.target
	ReferencedBy: systemd-timesyncd.service
	ReferencedBy: systemd-backlight at backlight:intel_backlight.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-remount-fs
-> Unit dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart2.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB SYSTEM_DRV
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart2.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
	Following Set Member: dev-disk-by\x2duuid-2206\x2d0BF2.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
	Following Set Member: dev-sda2.device
	Following Set Member: dev-disk-by\x2dlabel-SYSTEM_DRV.device
	Following Set Member: dev-disk-by\x2dpartuuid-cf1d0c57\x2d42fa\x2d4fd7\x2dbfa0\x2ddb8cf69fcd61.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart2.device
	Following Set Member: dev-disk-by\x2dpartlabel-EFI\x5cx20system\x5cx20partition.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda2
-> Unit org.freedesktop.UDisks2.busname:
	Description: org.freedesktop.UDisks2.busname
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: org.freedesktop.UDisks2.busname
	Before: udisks2.service
	ReferencedBy: udisks2.service
-> Unit sys-fs-fuse-connections.mount:
	Description: FUSE Control File System
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:30:01 IST
	Active Enter Timestamp: Wed 2015-07-29 15:30:01 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/sys-fs-fuse-connections.mount
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: sys-fs-fuse-connections.mount
	Documentation: https://www.kernel.org/doc/Documentation/filesystems/fuse.txt
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
	Fragment Path: /lib/systemd/system/sys-fs-fuse-connections.mount
	ConditionPathExists: /sys/fs/fuse/connections untested
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: no
	Requires: -.mount
	Wants: system.slice
	WantedBy: sysinit.target
	WantedBy: sys-module-fuse.device
	Before: sysinit.target
	After: system.slice
	After: systemd-modules-load.service
	After: -.mount
	After: systemd-journald.socket
	References: -.mount
	References: systemd-journald.socket
	References: system.slice
	References: systemd-modules-load.service
	References: sysinit.target
	ReferencedBy: sysinit.target
	ReferencedBy: sys-module-fuse.device
	RequiresMountsFor: /sys/fs/fuse
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Mount State: mounted
	Result: success
	Where: /sys/fs/fuse/connections
	What: fusectl
	File System Type: fusectl
	Options: rw,relatime
	From /proc/self/mountinfo: yes
	From fragment: yes
	DirectoryMode: 0755
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit clamav-daemon.service:
	Description: clamav-daemon.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: clamav-daemon.service
	Before: postfix.service
	ReferencedBy: postfix.service
-> Unit iio-sensor-proxy.service:
	Description: IIO Sensor Proxy service
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:24 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/iio-sensor-proxy.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: iio-sensor-proxy.service
	Fragment Path: /lib/systemd/system/iio-sensor-proxy.service
	Condition Timestamp: Wed 2015-07-29 15:29:22 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:22 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	WantedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200083.4.auto-trigger2.device
	WantedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200076.3.auto-iio:device1.device
	WantedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200073.2.auto-iio:device0.device
	WantedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200073.2.auto-trigger0.device
	WantedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200041.7.auto-trigger5.device
	WantedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200076.3.auto-trigger1.device
	WantedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200086.5.auto-iio:device3.device
	WantedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200041.7.auto-iio:device5.device
	WantedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200083.4.auto-iio:device2.device
	WantedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d20008a.6.auto-iio:device4.device
	WantedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200086.5.auto-trigger3.device
	WantedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d20008a.6.auto-trigger4.device
	Conflicts: shutdown.target
	Before: shutdown.target
	After: net.hadess.SensorProxy.busname
	After: system.slice
	After: systemd-journald.socket
	After: basic.target
	References: net.hadess.SensorProxy.busname
	References: shutdown.target
	References: systemd-journald.socket
	References: basic.target
	References: system.slice
	ReferencedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200083.4.auto-iio:device2.device
	ReferencedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200086.5.auto-trigger3.device
	ReferencedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200083.4.auto-trigger2.device
	ReferencedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200073.2.auto-iio:device0.device
	ReferencedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200086.5.auto-iio:device3.device
	ReferencedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d20008a.6.auto-iio:device4.device
	ReferencedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200041.7.auto-trigger5.device
	ReferencedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d20008a.6.auto-trigger4.device
	ReferencedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200076.3.auto-trigger1.device
	ReferencedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200073.2.auto-trigger0.device
	ReferencedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200041.7.auto-iio:device5.device
	ReferencedBy: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200076.3.auto-iio:device1.device
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: dbus
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	Main PID: 1178
	Main PID Known: yes
	Main PID Alien: no
	BusName: net.hadess.SensorProxy
	Bus Name Good: yes
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /usr/sbin/iio-sensor-proxy
-> Unit dev-dm\x2d0.device:
	Description: /dev/dm-0
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-dm\x2d0.device
	Following: sys-devices-virtual-block-dm\x2d0.device
	Following Set Member: dev-mapper-sdb_crypt.device
	Following Set Member: dev-disk-by\x2duuid-339197eb\x2d781c\x2d4a32\x2d9265\x2d060536dfa9e0.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dsdb_crypt.device
	Following Set Member: sys-devices-virtual-block-dm\x2d0.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dCRYPT\x2dLUKS1\x2d8f7094e7d2eb453fb2b71a162de14111\x2dsdb_crypt.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-0
-> Unit apport.service:
	Description: LSB: automatic crash report generation tool
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/apport.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: apport.service
	Documentation: man:systemd-sysv-generator(8)
	Fragment Path: /run/systemd/generator.late/apport.service
	Source Path: /etc/init.d/apport
	Condition Timestamp: Wed 2015-07-29 15:29:22 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:22 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	Wants: network-online.target
	WantedBy: multi-user.target
	WantedBy: graphical.target
	Conflicts: shutdown.target
	Before: multi-user.target
	Before: shutdown.target
	Before: graphical.target
	After: basic.target
	After: remote-fs.target
	After: network-online.target
	After: system.slice
	After: systemd-journald.socket
	References: graphical.target
	References: basic.target
	References: shutdown.target
	References: remote-fs.target
	References: network-online.target
	References: multi-user.target
	References: system.slice
	References: systemd-journald.socket
	ReferencedBy: multi-user.target
	ReferencedBy: graphical.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: exited
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: no
	Type: forking
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /etc/init.d/apport start
	-> ExecStop:
		Command Line: /etc/init.d/apport stop
-> Unit syslog.socket:
	Description: Syslog Socket
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: syslog.socket
	Documentation: man:systemd.special(7)
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/syslog
	Fragment Path: /lib/systemd/system/syslog.socket
	Requires: -.mount
	Wants: systemd-setup-dgram-qlen.service
	Wants: -.slice
	Conflicts: shutdown.target
	ConflictedBy: emergency.service
	Before: syslog.service
	Before: shutdown.target
	Before: systemd-journald.service
	Before: sockets.target
	After: systemd-setup-dgram-qlen.service
	After: -.mount
	After: -.slice
	Triggers: syslog.service
	References: sockets.target
	References: systemd-setup-dgram-qlen.service
	References: -.slice
	References: shutdown.target
	References: syslog.service
	References: -.mount
	ReferencedBy: systemd-setup-dgram-qlen.service
	ReferencedBy: emergency.service
	ReferencedBy: systemd-journald.service
	RequiresMountsFor: /run/systemd/journal/syslog
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Socket State: dead
	Result: success
	BindIPv6Only: default
	Backlog: 128
	SocketMode: 0666
	DirectoryMode: 0755
	KeepAlive: no
	NoDelay: no
	FreeBind: no
	Transparent: no
	Broadcast: no
	PassCredentials: yes
	PassSecurity: yes
	TCPCongestion: n/a
	RemoveOnStop: no
	SELinuxContextFromNet: no
	ReceiveBuffer: 8388608
	ListenDatagram: /run/systemd/journal/syslog
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit dev-disk-by\x2did-dm\x2dname\x2dsdb_crypt.device:
	Description: /dev/disk/by-id/dm-name-sdb_crypt
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-dm\x2dname\x2dsdb_crypt.device
	Following: sys-devices-virtual-block-dm\x2d0.device
	Following Set Member: dev-mapper-sdb_crypt.device
	Following Set Member: dev-disk-by\x2duuid-339197eb\x2d781c\x2d4a32\x2d9265\x2d060536dfa9e0.device
	Following Set Member: dev-dm\x2d0.device
	Following Set Member: sys-devices-virtual-block-dm\x2d0.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dCRYPT\x2dLUKS1\x2d8f7094e7d2eb453fb2b71a162de14111\x2dsdb_crypt.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-0
-> Unit sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200073.2.auto-iio:device0.device:
	Description: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200073.2.auto/iio:device0
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:14.0-usb1-1\x2d8-1\x2d8:1.0-0003:048D:8350.0002-HID\x2dSENSOR\x2d200073.2.auto-iio:device0.device
	Following Set Member: dev-iio:device0.device
	Job Timeout: 1min 30s
	Wants: iio-sensor-proxy.service
	References: iio-sensor-proxy.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:8350.0002/HID-SENSOR-200073.2.auto/iio:device0
-> Unit systemd-machine-id-commit.service:
	Description: Commit a transient machine-id on disk
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-machine-id-commit.service
	Documentation: man:systemd-machine-id-commit.service(8)
	Fragment Path: /lib/systemd/system/systemd-machine-id-commit.service
	ConditionPathIsMountPoint: /etc/machine-id untested
	ConditionPathIsReadWrite: /etc untested
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: no
	Wants: system.slice
	WantedBy: sysinit.target
	Conflicts: shutdown.target
	Before: sysinit.target
	Before: shutdown.target
	After: local-fs.target
	After: systemd-journald.socket
	After: system.slice
	References: sysinit.target
	References: shutdown.target
	References: local-fs.target
	References: system.slice
	References: systemd-journald.socket
	ReferencedBy: sysinit.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: yes
	Type: oneshot
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /lib/systemd/systemd-machine-id-commit
-> Unit dev-disk-by\x2dlabel-ROOT.device:
	Description: /dev/disk/by-label/ROOT
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2dlabel-ROOT.device
	Following: sys-devices-virtual-block-dm\x2d3.device
	Following Set Member: sys-devices-virtual-block-dm\x2d3.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAq7ic3Bd7CskLs20cyN4S1SOTEvVeUKV6r.device
	Following Set Member: dev-dm\x2d3.device
	Following Set Member: dev-disk-by\x2duuid-f3c1b4f2\x2dd8e5\x2d4c9d\x2d9775\x2d638cc1c1165e.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dROOT.device
	Following Set Member: dev-mapper-SSHDCrypt\x2dROOT.device
	Following Set Member: dev-SSHDCrypt-ROOT.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-3
-> Unit systemd-tmpfiles-clean.timer:
	Description: Daily Cleanup of Temporary Directories
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-tmpfiles-clean.timer
	Documentation: man:tmpfiles.d(5)
	Documentation: man:systemd-tmpfiles(8)
	Fragment Path: /lib/systemd/system/systemd-tmpfiles-clean.timer
	Condition Timestamp: Wed 2015-07-29 15:29:22 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:22 IST
	Assert Result: yes
	Requires: sysinit.target
	WantedBy: timers.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: timers.target
	Before: systemd-tmpfiles-clean.service
	After: sysinit.target
	Triggers: systemd-tmpfiles-clean.service
	References: sysinit.target
	References: shutdown.target
	References: timers.target
	References: systemd-tmpfiles-clean.service
	ReferencedBy: timers.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Timer State: waiting
	Result: success
	Unit: systemd-tmpfiles-clean.service
	Persistent: no
	WakeSystem: no
	Accuracy: 1min
	OnUnitActiveSec: 1d
	OnBootSec: 15min
-> Unit dev-disk-by\x2duuid-3AEC0E87EC0E3E1F.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB Windows8_OS
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2duuid-3AEC0E87EC0E3E1F.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda5.device
	Following Set Member: dev-disk-by\x2dpartuuid-5616cb41\x2d5424\x2d4969\x2da0e3\x2d950d408f49c9.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda5.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart5.device
	Following Set Member: dev-disk-by\x2dlabel-Windows8_OS.device
	Following Set Member: dev-sda5.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart5.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda5
-> Unit sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device:
	Description: KINGSTON_SM2280S3120G
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device
	Following Set Member: dev-disk-by\x2duuid-8f7094e7\x2dd2eb\x2d453f\x2db2b7\x2d1a162de14111.device
	Following Set Member: dev-disk-by\x2did-ata\x2dKINGSTON_SM2280S3120G_50026B7251189BF2.device
	Following Set Member: dev-sdb.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb
-> Unit systemd-fsckd.socket:
	Description: fsck to fsckd communication Socket
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:19 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-fsckd.socket
	Documentation: man:systemd-fsckd.service(8)
	Documentation: man:systemd-fsck at .service(8)
	Documentation: man:systemd-fsck-root.service(8)
	Fragment Path: /lib/systemd/system/systemd-fsckd.socket
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Requires: -.mount
	Wants: -.slice
	RequiredBy: systemd-fsckd.service
	WantedBy: systemd-fsck at dev-disk-by\x2duuid-2206\x2d0BF2.service
	WantedBy: systemd-fsck-root.service
	WantedBy: systemd-fsck at dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.service
	WantedBy: systemd-fsck at dev-mapper-SSHDCrypt\x2dROOT.service
	Before: systemd-fsck at dev-disk-by\x2duuid-2206\x2d0BF2.service
	Before: systemd-fsck-root.service
	Before: systemd-fsck at dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.service
	Before: systemd-fsckd.service
	Before: systemd-fsck at dev-mapper-SSHDCrypt\x2dROOT.service
	After: -.mount
	After: -.slice
	Triggers: systemd-fsckd.service
	References: -.slice
	References: -.mount
	References: systemd-fsckd.service
	ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-2206\x2d0BF2.service
	ReferencedBy: systemd-fsck-root.service
	ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-07502716\x2da1f8\x2d4cec\x2da605\x2d447e151b8021.service
	ReferencedBy: systemd-fsckd.service
	ReferencedBy: systemd-fsck at dev-mapper-SSHDCrypt\x2dROOT.service
	RequiresMountsFor: /run/systemd/fsck.progress
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Socket State: listening
	Result: success
	BindIPv6Only: default
	Backlog: 128
	SocketMode: 0600
	DirectoryMode: 0755
	KeepAlive: no
	NoDelay: no
	FreeBind: no
	Transparent: no
	Broadcast: no
	PassCredentials: no
	PassSecurity: no
	TCPCongestion: n/a
	RemoveOnStop: no
	SELinuxContextFromNet: no
	ListenStream: /run/systemd/fsck.progress
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit rescue.service:
	Description: Rescue Shell
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: rescue.service
	Documentation: man:sulogin(8)
	Fragment Path: /lib/systemd/system/rescue.service
	Requires: -.mount
	Wants: system.slice
	RequiredBy: rescue.target
	Conflicts: shutdown.target
	ConflictedBy: emergency.service
	ConflictedBy: multi-user.target
	ConflictedBy: graphical.target
	Before: rescue.target
	Before: shutdown.target
	Before: multi-user.target
	Before: graphical.target
	After: sysinit.target
	After: plymouth-start.service
	After: -.mount
	After: system.slice
	References: -.mount
	References: sysinit.target
	References: plymouth-start.service
	References: system.slice
	References: shutdown.target
	ReferencedBy: rescue.target
	ReferencedBy: emergency.service
	ReferencedBy: multi-user.target
	ReferencedBy: graphical.target
	RequiresMountsFor: /root
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: idle
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  yes
	UMask: 0022
	WorkingDirectory: /root
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	Environment: HOME=/root
	LimitNOFILE: 4096
	StandardInput: tty-force
	StandardOutput: inherit
	StandardError: inherit
	-> ExecStartPre:
		Command Line: /bin/plymouth quit
		Command Line: /bin/echo -e 'Welcome to emergency mode! After logging in, type "journalctl -xb" to view\nsystem logs, "systemctl reboot" to reboot, "systemctl default" or ^D to\nboot into default mode.'
	-> ExecStart:
		Command Line: /bin/sh -c '/sbin/sulogin; /bin/systemctl --job-mode=fail --no-block default'
-> Unit dev-dm\x2d1.device:
	Description: LVM PV kohKZh-NmaK-NWe0-1v3E-wmUk-K9bT-NOCn0f on /dev/dm-1
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-dm\x2d1.device
	Following: sys-devices-virtual-block-dm\x2d1.device
	Following Set Member: sys-devices-virtual-block-dm\x2d1.device
	Following Set Member: dev-block-254:1.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dCRYPT\x2dLUKS1\x2da1d51c69c438428b8346273abcbf5a52\x2dsda7_crypt.device
	Following Set Member: dev-disk-by\x2did-lvm\x2dpv\x2duuid\x2dkohKZh\x2dNmaK\x2dNWe0\x2d1v3E\x2dwmUk\x2dK9bT\x2dNOCn0f.device
	Following Set Member: dev-mapper-sda7_crypt.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dsda7_crypt.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-1
-> Unit dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dROOT.device:
	Description: /dev/disk/by-id/dm-name-SSHDCrypt-ROOT
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dROOT.device
	Following: sys-devices-virtual-block-dm\x2d3.device
	Following Set Member: sys-devices-virtual-block-dm\x2d3.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAq7ic3Bd7CskLs20cyN4S1SOTEvVeUKV6r.device
	Following Set Member: dev-dm\x2d3.device
	Following Set Member: dev-disk-by\x2duuid-f3c1b4f2\x2dd8e5\x2d4c9d\x2d9775\x2d638cc1c1165e.device
	Following Set Member: dev-disk-by\x2dlabel-ROOT.device
	Following Set Member: dev-mapper-SSHDCrypt\x2dROOT.device
	Following Set Member: dev-SSHDCrypt-ROOT.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-3
-> Unit syslog.target:
	Description: syslog.target
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: syslog.target
	Before: lxc.service
	Before: ModemManager.service
	ReferencedBy: lxc.service
	ReferencedBy: ModemManager.service
-> Unit dev-ttyS3.device:
	Description: /dev/ttyS3
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-ttyS3.device
	Following: sys-devices-platform-serial8250-tty-ttyS3.device
	Following Set Member: sys-devices-platform-serial8250-tty-ttyS3.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/platform/serial8250/tty/ttyS3
-> Unit thermald.service:
	Description: Thermal Daemon Service
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/thermald.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: thermald.service
	Fragment Path: /lib/systemd/system/thermald.service
	Condition Timestamp: Wed 2015-07-29 15:29:22 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:22 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	WantedBy: multi-user.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: multi-user.target
	After: basic.target
	After: system.slice
	After: systemd-journald.socket
	After: org.freedesktop.thermald.busname
	References: systemd-journald.socket
	References: org.freedesktop.thermald.busname
	References: basic.target
	References: system.slice
	References: shutdown.target
	ReferencedBy: multi-user.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: dbus
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	Main PID: 1179
	Main PID Known: yes
	Main PID Alien: no
	BusName: org.freedesktop.thermald
	Bus Name Good: yes
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /usr/sbin/thermald --no-daemon --dbus-enable
-> Unit systemd-localed.service:
	Description: Locale Service
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: Wed 2015-07-29 15:30:01 IST
	Active Enter Timestamp: Wed 2015-07-29 15:30:01 IST
	Active Exit Timestamp: Wed 2015-07-29 15:30:38 IST
	Inactive Enter Timestamp: Wed 2015-07-29 15:30:38 IST
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-localed.service
	Documentation: man:systemd-localed.service(8)
	Documentation: man:locale.conf(5)
	Documentation: man:vconsole.conf(5)
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/localed
	Fragment Path: /lib/systemd/system/systemd-localed.service
	Condition Timestamp: Wed 2015-07-29 15:30:01 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:30:01 IST
	Assert Result: yes
	Requires: -.mount
	Requires: basic.target
	Wants: system.slice
	Conflicts: shutdown.target
	Before: shutdown.target
	After: org.freedesktop.locale1.busname
	After: basic.target
	After: -.mount
	After: systemd-journald.socket
	After: system.slice
	TriggeredBy: org.freedesktop.locale1.busname
	References: org.freedesktop.locale1.busname
	References: basic.target
	References: shutdown.target
	References: -.mount
	References: systemd-journald.socket
	References: system.slice
	ReferencedBy: org.freedesktop.locale1.busname
	RequiresMountsFor: /tmp /var/tmp
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: dead
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: dbus
	Restart: no
	NotifyAccess: main
	NotifyState: unknown
	BusName: org.freedesktop.locale1
	Bus Name Good: no
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: yes
	PrivateNetwork: yes
	PrivateDevices: yes
	ProtectHome: yes
	ProtectSystem: yes
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	CapabilityBoundingSet:
	-> ExecStart:
		Command Line: /lib/systemd/systemd-localed
-> Unit dev-mapper-SSHDCrypt\x2dROOT.device:
	Description: /dev/mapper/SSHDCrypt-ROOT
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-mapper-SSHDCrypt\x2dROOT.device
	Following: sys-devices-virtual-block-dm\x2d3.device
	Following Set Member: sys-devices-virtual-block-dm\x2d3.device
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAq7ic3Bd7CskLs20cyN4S1SOTEvVeUKV6r.device
	Following Set Member: dev-disk-by\x2duuid-f3c1b4f2\x2dd8e5\x2d4c9d\x2d9775\x2d638cc1c1165e.device
	Following Set Member: dev-dm\x2d3.device
	Following Set Member: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dROOT.device
	Following Set Member: dev-disk-by\x2dlabel-ROOT.device
	Following Set Member: dev-SSHDCrypt-ROOT.device
	Job Timeout: 1min 30s
	Condition Timestamp: Wed 2015-07-29 15:29:19 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:19 IST
	Assert Result: yes
	Wants: media-SSHD.mount
	BoundBy: media-SSHD.mount
	BoundBy: systemd-fsck at dev-mapper-SSHDCrypt\x2dROOT.service
	Before: media-SSHD.mount
	Before: systemd-fsck at dev-mapper-SSHDCrypt\x2dROOT.service
	ReferencedBy: media-SSHD.mount
	ReferencedBy: systemd-fsck at dev-mapper-SSHDCrypt\x2dROOT.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/virtual/block/dm-3
-> Unit local-fs.target:
	Description: Local File Systems
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: local-fs.target
	Documentation: man:systemd.special(7)
	Fragment Path: /lib/systemd/system/local-fs.target
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: media-SSHD.mount
	Requires: boot-efi.mount
	Requires: boot.mount
	Requires: -.mount
	Wants: lvm2-activation.service
	Wants: var-lib-machines.mount
	Wants: systemd-remount-fs.service
	Wants: lvm2-activation-early.service
	Wants: systemd-fsck-root.service
	WantedBy: sysinit.target
	Conflicts: shutdown.target
	Before: postfix.service
	Before: systemd-tmpfiles-setup.service
	Before: dirmngr.service
	Before: dovecot.service
	Before: sysinit.target
	Before: systemd-tmpfiles-clean.service
	Before: networking.service
	Before: systemd-machine-id-commit.service
	Before: minissdpd.service
	Before: mcelog.service
	Before: lightdm.service
	Before: remote-fs.target
	After: dm-event.service
	After: lvm2-activation.service
	After: lvm2-monitor.service
	After: systemd-fsck-root.service
	After: systemd-remount-fs.service
	After: lvm2-activation-early.service
	After: boot.mount
	After: run-user-1000.mount
	After: boot-efi.mount
	After: media-SSHD.mount
	After: local-fs-pre.target
	After: -.mount
	After: run-user-1000-gvfs.mount
	OnFailure: emergency.target
	References: -.mount
	References: shutdown.target
	References: media-SSHD.mount
	References: systemd-fsck-root.service
	References: systemd-remount-fs.service
	References: emergency.target
	References: boot-efi.mount
	References: lvm2-activation-early.service
	References: var-lib-machines.mount
	References: lvm2-activation.service
	References: boot.mount
	References: local-fs-pre.target
	ReferencedBy: sysinit.target
	ReferencedBy: lightdm.service
	ReferencedBy: systemd-fsck-root.service
	ReferencedBy: networking.service
	ReferencedBy: systemd-machine-id-commit.service
	ReferencedBy: postfix.service
	ReferencedBy: -.mount
	ReferencedBy: lvm2-activation-early.service
	ReferencedBy: dovecot.service
	ReferencedBy: boot.mount
	ReferencedBy: run-user-1000.mount
	ReferencedBy: media-SSHD.mount
	ReferencedBy: dm-event.service
	ReferencedBy: systemd-tmpfiles-clean.service
	ReferencedBy: minissdpd.service
	ReferencedBy: systemd-tmpfiles-setup.service
	ReferencedBy: run-user-1000-gvfs.mount
	ReferencedBy: mcelog.service
	ReferencedBy: systemd-remount-fs.service
	ReferencedBy: lvm2-monitor.service
	ReferencedBy: remote-fs.target
	ReferencedBy: dirmngr.service
	ReferencedBy: boot-efi.mount
	ReferencedBy: lvm2-activation.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: no
	OnFailureJobMode: replace-irreversibly
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Target State: active
-> Unit org.freedesktop.locale1.busname:
	Description: Locale Service Bus Name
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: org.freedesktop.locale1.busname
	Documentation: man:systemd-localed.service(8)
	Documentation: man:locale.conf(5)
	Documentation: man:vconsole.conf(5)
	Documentation: http://www.freedesktop.org/wiki/Software/systemd/localed
	Fragment Path: /lib/systemd/system/org.freedesktop.locale1.busname
	Requires: sysinit.target
	WantedBy: busnames.target
	Conflicts: shutdown.target
	Before: systemd-localed.service
	Before: busnames.target
	Before: shutdown.target
	After: sysinit.target
	Triggers: systemd-localed.service
	References: sysinit.target
	References: systemd-localed.service
	References: busnames.target
	References: shutdown.target
	ReferencedBy: busnames.target
	ReferencedBy: systemd-localed.service
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Bus Name State: dead
	Result: success
	Name: org.freedesktop.locale1
	Activating: yes
	Accept FD: yes
-> Unit dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.swap:
	Description: /dev/disk/by-id/dm-name-SSHDCrypt-SWAP
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.swap
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: dev-disk-by\x2did-dm\x2dname\x2dSSHDCrypt\x2dSWAP.swap
	Following: dev-mapper-SSHDCrypt\x2dSWAP.swap
	Following Set Member: dev-SSHDCrypt-SWAP.swap
	Following Set Member: dev-disk-by\x2duuid-b5647308\x2d33d3\x2d4b33\x2dbbd4\x2d67c47533d596.swap
	Following Set Member: dev-mapper-SSHDCrypt\x2dSWAP.swap
	Following Set Member: dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dbs54X7BRLOlm8NEeIDHPg3HL27SGIdAqSH9ZZaSSLfEk29HYoQesnU2vTDHkvkFy.swap
	Following Set Member: dev-dm\x2d2.swap
	Requires: -.mount
	Wants: system.slice
	Conflicts: umount.target
	Before: umount.target
	After: -.mount
	After: systemd-journald.socket
	After: system.slice
	References: umount.target
	References: -.mount
	References: systemd-journald.socket
	References: system.slice
	RequiresMountsFor: /dev/disk/by-id/dm-name-SSHDCrypt-SWAP
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: no
	Swap State: active
	Result: success
	What: /dev/disk/by-id/dm-name-SSHDCrypt-SWAP
	From /proc/swaps: yes
	From fragment: no
	Device Node: /dev/dm-2
	Priority: -1
	Options: 
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	KillMode: control-group
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
-> Unit NetworkManager.service:
	Description: Network Manager
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/NetworkManager.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: NetworkManager.service
	Fragment Path: /lib/systemd/system/NetworkManager.service
	Condition Timestamp: Wed 2015-07-29 15:29:22 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:22 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	WantedBy: multi-user.target
	Conflicts: shutdown.target
	Before: shutdown.target
	Before: multi-user.target
	After: basic.target
	After: system.slice
	After: systemd-journald.socket
	After: org.freedesktop.NetworkManager.busname
	References: system.slice
	References: systemd-journald.socket
	References: basic.target
	References: org.freedesktop.NetworkManager.busname
	References: shutdown.target
	ReferencedBy: multi-user.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: no
	GuessMainPID: yes
	Type: dbus
	Restart: on-failure
	NotifyAccess: none
	NotifyState: unknown
	Main PID: 1198
	Main PID Known: yes
	Main PID Alien: no
	BusName: org.freedesktop.NetworkManager
	Bus Name Good: yes
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: yes
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /usr/sbin/NetworkManager --no-daemon
-> Unit irqbalance.service:
	Description: LSB: daemon to balance interrupts for SMP systems
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:21 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:22 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: system.slice
	CGroup: /system.slice/irqbalance.service
	CGroup realized: yes
	CGroup mask: 0x10
	CGroup members mask: 0x0
	Name: irqbalance.service
	Documentation: man:systemd-sysv-generator(8)
	Fragment Path: /run/systemd/generator.late/irqbalance.service
	Source Path: /etc/init.d/irqbalance
	Condition Timestamp: Wed 2015-07-29 15:29:21 IST
	Condition Result: yes
	Assert Timestamp: Wed 2015-07-29 15:29:21 IST
	Assert Result: yes
	Requires: basic.target
	Wants: system.slice
	WantedBy: multi-user.target
	WantedBy: graphical.target
	Conflicts: shutdown.target
	Before: multi-user.target
	Before: shutdown.target
	Before: graphical.target
	After: systemd-journald.socket
	After: systemd-journald-dev-log.socket
	After: basic.target
	After: system.slice
	After: remote-fs.target
	References: multi-user.target
	References: system.slice
	References: remote-fs.target
	References: systemd-journald.socket
	References: systemd-journald-dev-log.socket
	References: graphical.target
	References: shutdown.target
	References: basic.target
	ReferencedBy: multi-user.target
	ReferencedBy: graphical.target
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: no
	IgnoreOnSnapshot: no
	Service State: running
	Result: success
	Reload Result: success
	PermissionsStartOnly: no
	RootDirectoryStartOnly: no
	RemainAfterExit: yes
	GuessMainPID: no
	Type: forking
	Restart: no
	NotifyAccess: none
	NotifyState: unknown
	KillMode: process
	KillSignal: SIGTERM
	SendSIGKILL: yes
	SendSIGHUP:  no
	UMask: 0022
	WorkingDirectory: /
	RootDirectory: /
	NonBlocking: no
	PrivateTmp: no
	PrivateNetwork: no
	PrivateDevices: no
	ProtectHome: no
	ProtectSystem: no
	IgnoreSIGPIPE: no
	LimitNOFILE: 4096
	StandardInput: null
	StandardOutput: journal
	StandardError: inherit
	SyslogFacility: daemon
	SyslogLevel: info
	-> ExecStart:
		Command Line: /etc/init.d/irqbalance start
	-> ExecStop:
		Command Line: /etc/init.d/irqbalance stop
-> Unit systemd-sysusers.service:
	Description: systemd-sysusers.service
	Instance: n/a
	Unit Load State: not-found
	Unit Active State: inactive
	Inactive Exit Timestamp: n/a
	Active Enter Timestamp: n/a
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: no
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: systemd-sysusers.service
	Before: systemd-networkd.service
	Before: systemd-tmpfiles-setup-dev.service
	Before: systemd-timesyncd.service
	Before: systemd-udevd.service
	Before: systemd-tmpfiles-setup.service
	ReferencedBy: systemd-networkd.service
	ReferencedBy: systemd-tmpfiles-setup-dev.service
	ReferencedBy: systemd-timesyncd.service
	ReferencedBy: systemd-udevd.service
	ReferencedBy: systemd-tmpfiles-setup.service
-> Unit sys-devices-platform-serial8250-tty-ttyS0.device:
	Description: /sys/devices/platform/serial8250/tty/ttyS0
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: sys-devices-platform-serial8250-tty-ttyS0.device
	Following Set Member: dev-ttyS0.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/platform/serial8250/tty/ttyS0
-> Unit dev-disk-by\x2dlabel-Windows8_OS.device:
	Description: WDC_WD5000M22K-24Z1LT0-SSHD-16GB Windows8_OS
	Instance: n/a
	Unit Load State: loaded
	Unit Active State: active
	Inactive Exit Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Enter Timestamp: Wed 2015-07-29 15:29:20 IST
	Active Exit Timestamp: n/a
	Inactive Enter Timestamp: n/a
	GC Check Good: yes
	Need Daemon Reload: no
	Transient: no
	Slice: n/a
	CGroup: n/a
	CGroup realized: no
	CGroup mask: 0x0
	CGroup members mask: 0x0
	Name: dev-disk-by\x2dlabel-Windows8_OS.device
	Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda5.device
	Following Set Member: dev-disk-by\x2dpartuuid-5616cb41\x2d5424\x2d4969\x2da0e3\x2d950d408f49c9.device
	Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda5.device
	Following Set Member: dev-disk-by\x2did-ata\x2dWDC_WD5000M22K\x2d24Z1LT0\x2dSSHD\x2d16GB_WD\x2dWX81A64LFF13\x2dpart5.device
	Following Set Member: dev-disk-by\x2duuid-3AEC0E87EC0E3E1F.device
	Following Set Member: dev-sda5.device
	Following Set Member: dev-disk-by\x2did-wwn\x2d0x6998ae984ee05001\x2dpart5.device
	Job Timeout: 1min 30s
	StopWhenUnneeded: no
	RefuseManualStart: no
	RefuseManualStop: no
	DefaultDependencies: yes
	OnFailureJobMode: replace
	IgnoreOnIsolate: yes
	IgnoreOnSnapshot: yes
	Device State: plugged
	Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda5
-------------- next part --------------
==> /var/lib/systemd/deb-systemd-helper-enabled/nftables.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/nftables.service

==> /var/lib/systemd/deb-systemd-helper-enabled/lxc.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/lxc.service

==> /var/lib/systemd/deb-systemd-helper-enabled/dbus-org.freedesktop.NetworkManager.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/sockets.target.wants/uuidd.socket <==

==> /var/lib/systemd/deb-systemd-helper-enabled/sockets.target.wants/leafnode.socket <==

==> /var/lib/systemd/deb-systemd-helper-enabled/sockets.target.wants/avahi-daemon.socket <==

==> /var/lib/systemd/deb-systemd-helper-enabled/sockets.target.wants/dm-event.socket <==

==> /var/lib/systemd/deb-systemd-helper-enabled/sockets.target.wants/dictd.socket <==

==> /var/lib/systemd/deb-systemd-helper-enabled/dictd.socket.dsh-also <==
/etc/systemd/system/sockets.target.wants/dictd.socket

==> /var/lib/systemd/deb-systemd-helper-enabled/syslog.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/lvm2-lvmetad.socket.dsh-also <==
/etc/systemd/system/sysinit.target.wants/lvm2-lvmetad.socket

==> /var/lib/systemd/deb-systemd-helper-enabled/NetworkManager.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/NetworkManager.service
/etc/systemd/system/dbus-org.freedesktop.nm-dispatcher.service

==> /var/lib/systemd/deb-systemd-helper-enabled/pppd-dns.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/pppd-dns.service

==> /var/lib/systemd/deb-systemd-helper-enabled/laptop-mode.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/laptop-mode.service

==> /var/lib/systemd/deb-systemd-helper-enabled/atd.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/atd.service

==> /var/lib/systemd/deb-systemd-helper-enabled/avahi-daemon.socket.dsh-also <==
/etc/systemd/system/sockets.target.wants/avahi-daemon.socket

==> /var/lib/systemd/deb-systemd-helper-enabled/resolvconf.service.dsh-also <==
/etc/systemd/system/sysinit.target.wants/resolvconf.service

==> /var/lib/systemd/deb-systemd-helper-enabled/bluetooth.service.dsh-also <==
/etc/systemd/system/bluetooth.target.wants/bluetooth.service
/etc/systemd/system/dbus-org.bluez.service

==> /var/lib/systemd/deb-systemd-helper-enabled/lvm2-activation.service.dsh-also <==
/etc/systemd/system/local-fs.target.wants/lvm2-activation.service

==> /var/lib/systemd/deb-systemd-helper-enabled/rsyslog.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/rsyslog.service
/etc/systemd/system/syslog.service

==> /var/lib/systemd/deb-systemd-helper-enabled/NetworkManager-dispatcher.service.dsh-also <==
/etc/systemd/system/dbus-org.freedesktop.nm-dispatcher.service

==> /var/lib/systemd/deb-systemd-helper-enabled/lvm2-monitor.service.dsh-also <==
/etc/systemd/system/sysinit.target.wants/lvm2-monitor.service

==> /var/lib/systemd/deb-systemd-helper-enabled/sysinit.target.wants/lvm2-lvmetad.socket <==

==> /var/lib/systemd/deb-systemd-helper-enabled/sysinit.target.wants/lvm2-monitor.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/sysinit.target.wants/resolvconf.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/dm-event.socket.dsh-also <==
/etc/systemd/system/sockets.target.wants/dm-event.socket

==> /var/lib/systemd/deb-systemd-helper-enabled/anacron-resume.service.dsh-also <==
/etc/systemd/system/suspend.target.wants/anacron-resume.service
/etc/systemd/system/hibernate.target.wants/anacron-resume.service
/etc/systemd/system/hybrid-sleep.target.wants/anacron-resume.service

==> /var/lib/systemd/deb-systemd-helper-enabled/saned.socket.dsh-also <==
/etc/systemd/system/sockets.target.wants/saned.socket

==> /var/lib/systemd/deb-systemd-helper-enabled/tor.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/tor.service

==> /var/lib/systemd/deb-systemd-helper-enabled/accounts-daemon.service.dsh-also <==
/etc/systemd/system/graphical.target.wants/accounts-daemon.service

==> /var/lib/systemd/deb-systemd-helper-enabled/dbus-org.bluez.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/smartd.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/smartd.service

==> /var/lib/systemd/deb-systemd-helper-enabled/dbus-org.freedesktop.nm-dispatcher.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/graphical.target.wants/accounts-daemon.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/local-fs.target.wants/lvm2-activation.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/local-fs.target.wants/lvm2-activation-early.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/dbus-org.freedesktop.Avahi.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/lvm2-activation-early.service.dsh-also <==
/etc/systemd/system/local-fs.target.wants/lvm2-activation-early.service

==> /var/lib/systemd/deb-systemd-helper-enabled/dbus-org.freedesktop.ModemManager1.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/anacron.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/anacron.service

==> /var/lib/systemd/deb-systemd-helper-enabled/suspend.target.wants/anacron-resume.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/uuidd.service.dsh-also <==
/etc/systemd/system/sockets.target.wants/uuidd.socket

==> /var/lib/systemd/deb-systemd-helper-enabled/hybrid-sleep.target.wants/anacron-resume.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/ModemManager.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/ModemManager.service
/etc/systemd/system/dbus-org.freedesktop.ModemManager1.service

==> /var/lib/systemd/deb-systemd-helper-enabled/hibernate.target.wants/anacron-resume.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/cron.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/cron.service

==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/avahi-daemon.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/laptop-mode.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/pppd-dns.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/tor.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/dnsmasq.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/lxc.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/atd.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/anacron.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/inetd.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/cron.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/ModemManager.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/smartd.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/NetworkManager.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/rsyslog.service <==

==> /var/lib/systemd/deb-systemd-helper-enabled/dnsmasq.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/dnsmasq.service

==> /var/lib/systemd/deb-systemd-helper-enabled/avahi-daemon.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/avahi-daemon.service
/etc/systemd/system/sockets.target.wants/avahi-daemon.socket
/etc/systemd/system/dbus-org.freedesktop.Avahi.service

==> /var/lib/systemd/deb-systemd-helper-enabled/NetworkManager-wait-online.service.dsh-also <==
/etc/systemd/system/network-online.target.wants/NetworkManager-wait-online.service

==> /var/lib/systemd/deb-systemd-helper-enabled/dm-event.service.dsh-also <==
/etc/systemd/system/sysinit.target.wants/dm-event.service

==> /var/lib/systemd/deb-systemd-helper-enabled/uuidd.socket.dsh-also <==
/etc/systemd/system/sockets.target.wants/uuidd.socket

==> /var/lib/systemd/deb-systemd-helper-enabled/inetd.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/inetd.service

==> /var/lib/systemd/deb-systemd-helper-enabled/leafnode.socket.dsh-also <==
/etc/systemd/system/sockets.target.wants/leafnode.socket

==> /var/lib/systemd/deb-systemd-helper-enabled/bluetooth.target.wants/bluetooth.service <==
-------------- next part --------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
#/dev/mapper/SSHDCrypt-ROOT /               ext4    delalloc,errors=remount-ro	0       1
/dev/mapper/sdb_crypt	/               ext4    lazytime,delalloc,errors=remount-ro	0       1
# /boot was on /dev/sda6 during installation
UUID=07502716-a1f8-4cec-a605-447e151b8021 /boot           ext4    delalloc,defaults        0       2
# /boot/efi was on /dev/sda2 during installation
UUID=2206-0BF2  /boot/efi       vfat    umask=0077      0       1
/dev/mapper/SSHDCrypt-SWAP none            swap    sw              0       0
/dev/mapper/SSHDCrypt-ROOT	/media/SSHD	ext4	delalloc,errors=remount-ro	0	1


More information about the Pkg-systemd-maintainers mailing list