b5b37d1c22
New package submission. See boo#1116056 for more details. Please add me as maintainer. OBS-URL: https://build.opensuse.org/request/show/650228 OBS-URL: https://build.opensuse.org/package/show/filesystems/systemd-zram-service?expand=0&rev=1
17 lines
300 B
Bash
17 lines
300 B
Bash
#!/bin/bash
|
|
|
|
# get the number of CPUs
|
|
num_cpus=$(grep -c processor /proc/cpuinfo)
|
|
|
|
# set decremented number of CPUs
|
|
decr_num_cpus=$((num_cpus - 1))
|
|
|
|
# Switching off swap
|
|
for i in $(seq 0 $decr_num_cpus); do
|
|
if [ "$(grep /dev/zram$i /proc/swaps)" != "" ]; then
|
|
swapoff /dev/zram$i
|
|
fi
|
|
done
|
|
|
|
rmmod zram
|