diff options
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/live-bottom/13swap | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/live-bottom/13swap b/scripts/live-bottom/13swap index 8fc718c..448c90a 100755 --- a/scripts/live-bottom/13swap +++ b/scripts/live-bottom/13swap @@ -55,9 +55,10 @@ done for device in ${devices} do -cat >> ${FSTAB} << EOF -${device} swap swap defaults 0 0 -EOF +if ! grep -qs "^${device} swap" "${FSTAB}" +then + echo "${device} swap swap defaults 0 0" >> "${FSTAB}" +fi done |
