diff --git a/README.md b/README.md index 248132b94..1e9159f53 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ This is the latest, officially released version of Cnchi, AKA: **Cnchi Stable**. |Development Stage|Branch|Version| Code Status| ----------------- | -------------- | -------------- | -------- | |*Cnchi Legacy*|*0.12.x*|*v0.12.46*|*Frozen*| -|**Cnchi Stable**|**0.14.x**|**v0.14.192**|**Bug Fixes Only**| +|**Cnchi Stable**|**0.14.x**|**v0.14.193**|**Bug Fixes Only**| |Cnchi Next|master|v0.15.219| Active Development| diff --git a/cnchi/info.py b/cnchi/info.py index 7b630606c..fea6290aa 100755 --- a/cnchi/info.py +++ b/cnchi/info.py @@ -29,7 +29,7 @@ """ Set some Cnchi global constants """ -CNCHI_VERSION = "0.14.192" +CNCHI_VERSION = "0.14.193" CNCHI_WEBSITE = "http://www.antergos.com" CNCHI_RELEASE_STAGE = "production" diff --git a/cnchi/installation/install.py b/cnchi/installation/install.py index 70bb9bc2e..aaab18230 100644 --- a/cnchi/installation/install.py +++ b/cnchi/installation/install.py @@ -687,23 +687,23 @@ def auto_fstab(self): # Add mount options parameters if not is_ssd: if "btrfs" in myfmt: - opts = "defaults,rw,relatime,space_cache,autodefrag,inode_cache" + opts = "defaults,relatime,space_cache,autodefrag,inode_cache" elif "f2fs" in myfmt: - opts = "defaults,rw,noatime" + opts = "defaults,noatime" elif "ext3" in myfmt or "ext4" in myfmt: - opts = "defaults,rw,relatime,data=ordered" + opts = "defaults,relatime,data=ordered" else: - opts = "defaults,rw,relatime" + opts = "defaults,relatime" else: # As of linux kernel version 3.7, the following # filesystems support TRIM: ext4, btrfs, JFS, and XFS. if myfmt in ["ext4", "jfs", "xfs"]: - opts = "defaults,rw,noatime,discard" + opts = "defaults,noatime,discard" elif myfmt == "btrfs": - opts = ("defaults,rw,noatime,compress=lzo,ssd,discard," + opts = ("defaults,noatime,compress=lzo,ssd,discard," "space_cache,autodefrag,inode_cache") else: - opts = "defaults,rw,noatime" + opts = "defaults,noatime" if mount_point == "/" and myfmt not in ["btrfs", "f2fs"]: chk = '1' diff --git a/update.info b/update.info index 17cde1dae..a42eb702a 100644 --- a/update.info +++ b/update.info @@ -1,2 +1,2 @@ -{"version":"0.14.192","files":[ +{"version":"0.14.193","files":[ ]}