Last active
October 2, 2017 11:42
-
-
Save kozhin/1bf083dc9bc910acfcf5eab8af03f147 to your computer and use it in GitHub Desktop.
CoreOS swap configuration for systemd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/systemd/system/swap.service | |
[Unit] | |
Description=Turn on swap | |
[Service] | |
Type=oneshot | |
Environment="SWAP_PATH=/var/vm" "SWAP_FILE=swapfile1" | |
ExecStartPre=-/usr/bin/rm -rf ${SWAP_PATH} | |
ExecStartPre=/usr/bin/mkdir -p ${SWAP_PATH} | |
ExecStartPre=/usr/bin/touch ${SWAP_PATH}/${SWAP_FILE} | |
ExecStartPre=/bin/bash -c "fallocate -l 2048m ${SWAP_PATH}/${SWAP_FILE}" | |
ExecStartPre=/usr/bin/chmod 600 ${SWAP_PATH}/${SWAP_FILE} | |
ExecStartPre=/usr/sbin/mkswap ${SWAP_PATH}/${SWAP_FILE} | |
ExecStartPre=/usr/sbin/sysctl vm.swappiness=10 | |
ExecStart=/sbin/swapon ${SWAP_PATH}/${SWAP_FILE} | |
ExecStop=/sbin/swapoff ${SWAP_PATH}/${SWAP_FILE} | |
ExecStopPost=-/usr/bin/rm -rf ${SWAP_PATH} | |
RemainAfterExit=true | |
[Install] | |
WantedBy=multi-user.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment