Created
August 9, 2019 23:13
-
-
Save Wicaeed/14142653e9b18fe18b9663778d6b032c to your computer and use it in GitHub Desktop.
dmesg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ● ephemeral-data.mount - Mount ephemeral data partition | |
| Loaded: loaded (/etc/systemd/system/ephemeral-data.mount; enabled; vendor preset: disabled) | |
| Active: failed (Result: exit-code) since Fri 2019-08-09 15:44:29 PDT; 4s ago | |
| Where: /ephemeral/data | |
| What: /mnt/resources | |
| Process: 32857 ExecUnmount=/bin/umount /ephemeral/data (code=exited, status=32) | |
| Process: 32697 ExecMount=/bin/mount /mnt/resources /ephemeral/data -t ${MOUNT_FSTYPE} -o ${MOUNT_OPTIONS} (code=exited, status=0/SUCCESS) | |
| Aug 09 15:41:17 localhost.localdomain systemd[1]: Mounting Mount ephemeral data partition... | |
| Aug 09 15:41:17 localhost.localdomain systemd[1]: Mounted Mount ephemeral data partition. | |
| Aug 09 15:44:29 localhost.localdomain systemd[1]: Unmounting Mount ephemeral data partition... | |
| Aug 09 15:44:29 localhost.localdomain umount[32857]: umount: /ephemeral/data: mountpoint not found | |
| Aug 09 15:44:29 localhost.localdomain systemd[1]: ephemeral-data.mount mount process exited, code=exited status=32 | |
| Aug 09 15:44:29 localhost.localdomain systemd[1]: Unmounted Mount ephemeral data partition. | |
| Aug 09 15:44:29 localhost.localdomain systemd[1]: Unit ephemeral-data.mount entered failed state. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description=Mount ephemeral data partition | |
| Requires=ephemeral-disk.service ephemeral-units.service | |
| Before=ephemeral-units.service | |
| After=ephemeral-disk.service | |
| [Install] | |
| WantedBy=local-fs.target | |
| RequiredBy=ephemeral-units.service | |
| [Mount] | |
| EnvironmentFile=/etc/default/ephemeral-disk | |
| What=/mnt/resources | |
| Type=${MOUNT_FSTYPE} | |
| Options=${MOUNT_OPTIONS} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment